Comment on page
tensor.max_in_tensor
fn max_in_tensor(self: @Tensor<T>) -> T;
Returns the maximum value in the tensor.
self
(@Tensor<T>
) - The input tensor.
The maximum
T
value in the tensor.Examples
use array::{ArrayTrait, SpanTrait};
use orion::operators::tensor::{TensorTrait, Tensor, U32Tensor};
fn max_in_tensor_example() -> u32 {
let tensor = TensorTrait::new(
shape: array![2, 2, 2].span(), data: array![0, 1, 2, 3, 4, 5, 6, 7].span(),
);
// We can call `max_in_tensor` function as follows.
return tensor.max_in_tensor();
}
>>> 7
Last modified 27d ago