openvino.runtime.opset13.bitwise_and#
- openvino.runtime.opset13.bitwise_and(left_node: Node | int | float | ndarray, right_node: Node | int | float | ndarray, auto_broadcast: str = 'NUMPY', name: str | None = None) 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.