openvino.runtime.opset2.logical_or#
- openvino.runtime.opset2.logical_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 logical OR operation on input nodes element-wise.
- Parameters:
left_node – The first input node providing data.
right_node – The second input node providing data.
auto_broadcast – The type of broadcasting that specifies mapping of input tensor axes to output shape axes. Range of values: numpy, explicit.
name – The optional new name for output node.
- Returns:
The node performing logical or operation on input nodes corresponding elements.