openvino.runtime.opset9.logical_or¶
- openvino.runtime.opset9.logical_or(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 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.