mindspore.ops.floor
- mindspore.ops.floor(x)[source]
Rounds a tensor down to the closest integer element-wise.
\[out_i = \lfloor x_i \rfloor\]- Parameters
x (Tensor) – The input tensor, its rank must be in [0, 7] inclusive and data type must be float16, float32 or float64.
- Returns
Tensor, has the same shape as x.
- Raises
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> x = Tensor(np.array([1.1, 2.5, -1.5]), mindspore.float32) >>> output = ops.floor(x) >>> print(output) [ 1. 2. -2.]