mindspore.numpy.floor_divide
- mindspore.numpy.floor_divide(x1, x2, dtype=None)[source]
Returns the largest integer smaller or equal to the division of the inputs. It is equivalent to the Python // operator and pairs with the Python % (remainder), function so that
a = a % b + b * (a // b)
up to roundoff.Note
Numpy arguments out, where, casting, order, subok, signature, and extobj are not supported.
- Parameters
x1 (Tensor) – Input array.
x2 (Tensor) – Input array.
dtype (
mindspore.dtype
, optional) – defaults to None. Overrides the dtype of the output Tensor.
- Returns
Tensor or scalar.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore.numpy as np >>> output = np.floor_divide(np.array([1., 2., 3., 4.]), np.array(2.5)) >>> print(output) [0. 0. 1. 1.]