ngraph.opset1.ops.greater

ngraph.opset1.ops.greater(left_node: Union[_pyngraph.Node, int, float, numpy.ndarray], right_node: Union[_pyngraph.Node, int, float, numpy.ndarray], auto_broadcast: str = 'NUMPY', name: Optional[str] = None)_pyngraph.Node

Return node which checks if left input node is greater than 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 right_node.