greater

dragon.vm.tensorflow.math.greater(
  x,
  y,
  name=None
)[source]

Compute the element-wise greater comparison.

\[\text{out} = (\text{input1} > \text{input2}) \]

Examples:

x = tf.constant(2)
y = tf.constant(3)
z = tf.constant(3)
print(tf.math.greater(x, y))
print(tf.math.greater(y, z))
Parameters:
Returns:

dragon.Tensor The output tensor.