mindspore.Tensor.le
- mindspore.Tensor.le(other)
逐元素计算 :math: self <= other 的bool值。
\[\begin{split}out_{i} =\begin{cases} & \text{True, if } self_{i}<=other_{i} \\ & \text{False, if } self_{i}>other_{i} \end{cases}\end{split}\]说明
输入 self 和 other 遵循隐式类型转换规则,使数据类型保持一致。
输入 other 是Tensor或Scalar, 当 other 是一个Scalar时,Scalar只能是一个常数。
- 参数:
other (Union[Tensor, number.Number, bool]) - 输入 other 应该是一个number.Number或bool值,或数据类型为number或bool_的Tensor。
- 返回:
Tensor,shape与广播后的shape相同,数据类型为bool。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor >>> x = Tensor(np.array([1, 2, 3]), mindspore.int32) >>> y = Tensor(np.array([1, 1, 4]), mindspore.int32) >>> output = x.le(y) >>> print(output) [ True False True]