tensor.equal
#tensor.equal
Check if two tensors are equal element-wise. 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 equatedother
(@Tensor<T>
) - The second tensor to be equated
Panics
Panics if the shapes are not equal or broadcastable
Returns
A new Tensor<usize>
of booleans (1 if equal, 0 otherwise) 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