mindspore.ops.less_equal

mindspore.ops.less_equal(input, other)[源代码]

逐元素计算 input<=other 的bool值。

outi={True, if inputi<=otheriFalse, if inputi>otheri

说明

  • 输入 inputother 遵循隐式类型转换规则,使数据类型保持一致。

  • 当输入是一个Tensor和一个Scalar时,Scalar只能是一个常数。

参数:
  • input (Union[Tensor, Number, bool]) - 第一个输入,为数值型,或bool,或数据类型为数值型或bool的Tensor。

  • other (Union[Tensor, Number, bool]) - 第二个输入,为数值型,或bool,或数据类型为数值型或bool的Tensor。

返回:

Tensor,shape与广播后的shape相同,数据类型为bool。

异常:
  • TypeError - 如果 inputother 不是以下之一:Tensor、数值型、bool。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor, ops
>>> 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]