openvino.runtime.opset7.greater_equal¶
- openvino.runtime.opset7.greater_equal(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 checks if left node is greater or equal to the right node 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 specifies rules used for auto-broadcasting of input tensors.
name – The optional new name for output node.
- Returns
The node performing element-wise check whether left_node is greater than or equal right_node.