未验证 提交 60a3929a 编写于 作者: L Lin Manhui 提交者: GitHub

Update floor_divide doc (#46419)

上级 842325dd
...@@ -748,13 +748,14 @@ def divide(x, y, name=None): ...@@ -748,13 +748,14 @@ def divide(x, y, name=None):
def floor_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:: .. math::
out = x // y out = trunc(x / y)
Note: Note:
``paddle.floor_divide`` supports broadcasting. If you want know more about broadcasting, please refer to :ref:`user_guide_broadcasting` . ``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: Args:
x (Tensor): the input tensor, it's data type should be int32, int64. x (Tensor): the input tensor, it's data type should be int32, int64.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册