mindspore.ops.GreaterEqual
- class mindspore.ops.GreaterEqual[source]
Computes the boolean value of \(x >= y\) element-wise.
Refer to
mindspore.ops.ge()
for more details.- Inputs:
x (Union[Tensor, Number, bool]) - The first input is a number or a bool or a tensor whose data type is number or bool.
y (Union[Tensor, Number, bool]) - The second input is a number or a bool when the first input is a tensor or a tensor whose data type is number or bool.
- Outputs:
Tensor, the shape is the same as the one after broadcasting, and the data type is bool.
- 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]