tensor.greater
#tensor.greater
Check if each element of the first tensor is greater than the corresponding element of the second tensor. The input tensors must have either:
Exactly the same shape
The same number of dimensions and the length of each dimension is either a common length or 1.
Args
self
(@Tensor<T>
) - The first tensor to be comparedother
(@Tensor<T>
) - The second tensor to be compared
Panics
Panics if the shapes are not equal or broadcastable
Returns
A new Tensor<usize>
of booleans (0 or 1) with the same shape as the broadcasted inputs.
Examples
Case 1: Compare tensors with same shape
Case 2: Compare tensors with different shapes
Last updated