openvino.runtime.opset14.bitwise_or#
- openvino.runtime.opset14.bitwise_or(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 OR operation on input nodes element-wise. - For boolean input tensors, operator is equivalent to logical_or. - 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 OR operation on input nodes corresponding elements.