openvino.runtime.opset13.bitwise_and¶
- openvino.runtime.opset13.bitwise_and(left_node: Union[openvino._pyopenvino.Node, int, float, numpy.ndarray], right_node: Union[openvino._pyopenvino.Node, int, float, numpy.ndarray], auto_broadcast: str = 'NUMPY', name: Optional[str] = None) openvino._pyopenvino.Node ¶
Return node which performs bitwise AND operation on input nodes element-wise.
For boolean input tensors, operator is equivalent to logical_and.
- Parameters
left_node – Tensor of integer or boolean datatype providing data.
right_node – Tensor of integer or boolean datatype providing data.
auto_broadcast – The type of broadcasting specifies rules used for auto-broadcasting of input tensors. Defaults to “NUMPY”.
name – The optional new name for output node.
- Returns
The node performing bitwise AND operation on input nodes corresponding elements.