From e60a122a20806e6639545a27cc1fc5b807aec83d Mon Sep 17 00:00:00 2001 From: Bobholamovic Date: Fri, 23 Sep 2022 10:46:44 +0800 Subject: [PATCH] Update floor_divide doc --- python/paddle/tensor/math.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/paddle/tensor/math.py b/python/paddle/tensor/math.py index 4807b4c7d5920..3c27522fba5f1 100644 --- a/python/paddle/tensor/math.py +++ b/python/paddle/tensor/math.py @@ -711,13 +711,14 @@ def divide(x, y, name=None): def floor_divide(x, y, name=None): """ - Floor divide two tensors element-wise. The equation is: + Floor divide two tensors element-wise and rounds the quotinents to the nearest integer toward zero. The equation is: .. math:: - out = x // y + out = trunc(x / y) Note: ``paddle.floor_divide`` supports broadcasting. If you want know more about broadcasting, please refer to :ref:`user_guide_broadcasting` . + Also note that the name ``floor_divide`` can be misleading, as the quotinents are actually rounded toward zero, not toward negative infinite. Args: x (Tensor): the input tensor, it's data type should be int32, int64.