mindspore.ops.Greater

class mindspore.ops.Greater[源代码]

按元素比较输入参数 \(x,y\) 的值,输出结果为bool值。

更多参考详见 mindspore.ops.gt()

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([1, 2, 3]), mindspore.int32)
>>> y = Tensor(np.array([1, 1, 4]), mindspore.int32)
>>> greater = ops.Greater()
>>> output = greater(x, y)
>>> print(output)
[False  True False]