mindspore.ops.GreaterEqual

class mindspore.ops.GreaterEqual[源代码]

输入两个数据,逐元素比较第一个数据是否大于等于第二个数据。

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

支持平台:

Ascend GPU CPU

样例:

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