mindspore.ops.Ceil

class mindspore.ops.Ceil[源代码]

向上取整函数。

更多参考详见 mindspore.ops.ceil()

输入:
  • x (Tensor) - Ceil的输入。其数据类型为float16或float32。shape: \((N, *)\) ,其中 \(*\) 表示任意数量的附加维度。

输出:

Tensor,shape与 x 相同。

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([1.1, 2.5, -1.5]), mindspore.float32)
>>> ceil_op = ops.Ceil()
>>> output = ceil_op(x)
>>> print(output)
[ 2.  3. -1.]