mindspore.ops.Ceil
- class mindspore.ops.Ceil[源代码]
向上取整函数。
更多参考详见
mindspore.ops.ceil()
。- 支持平台:
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.]