mindspore.ops.less_equal
- mindspore.ops.less_equal(input, other)[源代码]
逐元素计算 \(input <= other\) 的bool值。
\[\begin{split}out_{i} =\begin{cases} & \text{True, if } input_{i}<=other_{i} \\ & \text{False, if } input_{i}>other_{i} \end{cases}\end{split}\]说明
输入 input 和 other 遵循 隐式类型转换规则 ,使数据类型保持一致。
输入必须是两个Tensor,或一个Tensor和一个Scalar。
当输入是一个Tensor和一个Scalar时,Scalar只能是一个常数。
- 参数:
- 返回:
Tensor,shape与广播后的shape相同,数据类型为bool。
- 异常:
TypeError - input 和 other 都不是Tensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> x = Tensor(np.array([1, 2, 3]), mindspore.int32) >>> other = Tensor(np.array([1, 1, 4]), mindspore.int32) >>> output = ops.less_equal(x, other) >>> print(output) [ True False True]