Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【PaddlePaddle Hackathon 3 No.14】为 Paddle 新增 remainder_ API #5156

Merged
merged 18 commits into from Aug 31, 2022
10 changes: 5 additions & 5 deletions docs/api/paddle/remainder_cn.rst
Expand Up @@ -11,15 +11,15 @@ remainder
.. math::
\\out = x \% y\\

**注意**:
``paddle.remainder`` 支持广播。关于广播规则,请参考 :ref:`cn_user_guide_broadcasting`
.. note::
``paddle.remainder`` 遵守 broadcasting,如您想了解更多,请参见 :ref:`cn_user_guide_broadcasting`
zrr1999 marked this conversation as resolved.
Show resolved Hide resolved

参数
:::::::::

- **x**(Tensor)- 多维 Tensor。数据类型为 float32 、float64、int32 或 int64。
- **y**(Tensor)- 多维 Tensor。数据类型为 float32 、float64、int32 或 int64。
- **name**(str,可选) - 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为 None。
- **x**(Tensor)- 多维 Tensor。数据类型为 float32 、float64、int32 或 int64。
- **y**(Tensor)- 多维 Tensor。数据类型为 float32 、float64、int32 或 int64。
- **name**(str,可选) - 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为 None。

返回
:::::::::
Expand Down