mindspore.ops.trunc
- mindspore.ops.trunc(input_x)[源代码]
返回一个新的Tensor,该Tensor具有输入元素的截断整数值。
- 参数:
input_x (Tensor) - 任意维度的Tensor。
- 返回:
Tensor,shape和数据类型与 input_x 相同。
- 异常:
TypeError - input_x 不是Tensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> input_x = Tensor(np.array([3.4742, 0.5466, -0.8008, -3.9079]),mindspore.float32) >>> output = ops.trunc(input_x) >>> print(output) [ 3. 0. 0. -3.]