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