Method And
And(TensorInt, TensorInt)
Performs an element-wise And
logical operation: f(a, b) = a & b.
This supports numpy-style broadcasting of input tensors.
Declaration
public TensorInt And(TensorInt A, TensorInt B)
Parameters
Type | Name | Description |
---|---|---|
TensorInt | A | The first input tensor. |
TensorInt | B | The second input tensor. |
Returns
Type | Description |
---|---|
TensorInt | The computed output tensor. |