Function min_abs_norm
pub fn min_abs_norm<B, const D: usize, K>(
x: Tensor<B, D, K>,
dim: usize,
) -> Tensor<B, D, K>
Expand description
Computes the L:NEG_INFINITY norm of a tensor along a specified dimension.
§Arguments
x
- The input tensor.
dim
- The dimension to compute the norm over.
§Returns
The L:NEG_INFINITY norm of the input tensor.