Python wrappers
Public Python APIs implemented by this engine symbol.Element-wise greater-than-or-equal comparison.
Computes out[i] = (a[i] >= b[i]) and returns the result as a Bool
tensor.
Non-differentiable: no autograd node is registered.
Math
References
NumPy numpy.greater_equal.
See Also
greater_op, less_equal_op
Parameters
a, bTensorImplPtrOperands of identical shape, dtype, and device.
Returns
TensorImplPtrBool tensor with the same shape as the inputs.
Raises
LucidErrorIf the operand shapes, dtypes, or devices differ.