mindspore.ops.FloorDiv
- class mindspore.ops.FloorDiv[source]
Divides the first input tensor by the second input tensor element-wise and round down to the closest integer.
Refer to
mindspore.ops.floor_div()
for more detail.- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> x = Tensor(np.array([2, 4, -1]), mindspore.int32) >>> y = Tensor(np.array([3, 3, 3]), mindspore.int32) >>> floor_div = ops.FloorDiv() >>> output = floor_div(x, y) >>> print(output) [ 0 1 -1]