mindspore.ops.GreaterEqual
- class mindspore.ops.GreaterEqual[source]
Computes the boolean value of \(x >= y\) element-wise.
Refer to
mindspore.ops.ge()
for more detail.- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> 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]