floor_divide¶
- paddle. floor_divide ( x, y, name=None ) [source]
- 
         Floor divide two tensors element-wise. The equation is: \[out = x // y\]Note paddle.floor_dividesupports broadcasting. If you want know more about broadcasting, please refer to user_guide_broadcasting .- Parameters
- 
           - x (Tensor) – the input tensor, it’s data type should be int32, int64. 
- y (Tensor) – the input tensor, it’s data type should be int32, int64. 
- name (str, optional) – Name for the operation (optional, default is None). For more information, please refer to Name. 
 
- Returns
- 
           N-D Tensor. A location into which the result is stored. It’s dimension equals with $x$. 
 Examples import paddle x = paddle.to_tensor([2, 3, 8, 7]) y = paddle.to_tensor([1, 5, 3, 3]) z = paddle.floor_divide(x, y) print(z) # [2, 0, 2, 2] 
