modbackend;pubusecandle_einops_macros::einops;pubusebackend::Backend;/// Specifies the operation used to reduce an axis
#[derive(Copy, Clone, Debug)]pubenumOperation{/// Take the minimum value
Min,/// Take the maximum value
Max,/// Sum all elements
Sum,/// Get the mean value
Mean,}