Skip to content

[Docathon][Add Inplace CN Doc No.2、23-27] #7111

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

Closed
wants to merge 10 commits into from
6 changes: 6 additions & 0 deletions docs/api/paddle/Overview_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ tensor 数学操作原位(inplace)版本

" :ref:`paddle.remainder_ <cn_api_paddle_remainder_>` ", "Inplace 版本的 remainder API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.abs_ <cn_api_paddle_abs_>` ", "Inplace 版本的 abs API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.baddbmm_ <cn_api_paddle_baddbmm_>` ", "Inplace 版本的 baddbmm API,对输入 input 采用 Inplace 策略"
" :ref:`paddle.bernoulli_ <cn_api_paddle_bernoulli_>` ", "Inplace 版本的 bernoulli API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.tanh_ <cn_api_paddle_tanh_>` ", "Inplace 版本的 tanh API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.erf_ <cn_api_paddle_erf_>` ", "Inplace 版本的 erf API,对输入 x 采用 Inplace 策略"
Expand Down Expand Up @@ -232,6 +233,11 @@ tensor 数学操作原位(inplace)版本
" :ref:`paddle.index_fill_ <cn_api_paddle_index_fill_>` ", "Inplace 版本的 index_fill API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.bitwise_left_shift_ <cn_api_paddle_bitwise_left_shift_>` ", "Inplace 版本的 bitwise_left_shift API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.bitwise_right_shift_ <cn_api_paddle_bitwise_right_shift_>` ", "Inplace 版本的 bitwise_right_shift API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.ldexp_ <cn_api_paddle_ldexp_>` ", "Inplace 版本的 ldexp API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.less_ <cn_api_paddle_less_>` ", "Inplace 版本的 less API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.less_equal_ <cn_api_paddle_less_equal_>` ", "Inplace 版本的 less_equal API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.less_than_ <cn_api_paddle_less_than_>` ", "Inplace 版本的 less_than API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.lgamma_ <cn_api_paddle_lgamma_>` ", "Inplace 版本的 lgamma API,对输入 x 采用 Inplace 策略"
" :ref:`paddle.log_normal_ <cn_api_paddle_log_normal_>` ", "Inplace 版本的 log_normal API,对输入 x 采用 Inplace 策略"


Expand Down
11 changes: 11 additions & 0 deletions docs/api/paddle/baddbmm__cn.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.. _cn_api_paddle_baddbmm_:

baddbmm\_
-------------------------------

.. py:function:: paddle.baddbmm_(input, x, y, beta=1.0, alpha=1.0, name=None)

Inplace 版本的 :ref:`cn_api_paddle_baddbmm` API,对输入 `input` 采用 Inplace 策略。
更多关于 inplace 操作的介绍请参考 `3.1.3 原位(Inplace)操作和非原位操作的区别`_ 了解详情。

.. _3.1.3 原位(Inplace)操作和非原位操作的区别: https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/guides/beginner/tensor_cn.html#id3
11 changes: 11 additions & 0 deletions docs/api/paddle/ldexp__cn.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.. _cn_api_paddle_ldexp_:

ldexp\_
-------------------------------

.. py:function:: paddle.ldexp_(x, y, name=None)

Inplace 版本的 :ref:`cn_api_paddle_ldexp` API,对输入 `x` 采用 Inplace 策略。
更多关于 inplace 操作的介绍请参考 `3.1.3 原位(Inplace)操作和非原位操作的区别`_ 了解详情。

.. _3.1.3 原位(Inplace)操作和非原位操作的区别: https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/guides/beginner/tensor_cn.html#id3
11 changes: 11 additions & 0 deletions docs/api/paddle/less__cn.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.. _cn_api_paddle_less_:

less\_
-------------------------------

.. py:function:: paddle.less_(x, y, name=None)

Inplace 版本的 :ref:`cn_api_paddle_less` API,对输入 `x` 采用 Inplace 策略。
更多关于 inplace 操作的介绍请参考 `3.1.3 原位(Inplace)操作和非原位操作的区别`_ 了解详情。

.. _3.1.3 原位(Inplace)操作和非原位操作的区别: https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/guides/beginner/tensor_cn.html#id3
11 changes: 11 additions & 0 deletions docs/api/paddle/less_equal__cn.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.. _cn_api_paddle_less_equal_:

less\_equal\_
-------------------------------

.. py:function:: paddle.less_equal_(x, y, name=None)

Inplace 版本的 :ref:`cn_api_paddle_less_equal` API,对输入 `x` 采用 Inplace 策略。
更多关于 inplace 操作的介绍请参考 `3.1.3 原位(Inplace)操作和非原位操作的区别`_ 了解详情。

.. _3.1.3 原位(Inplace)操作和非原位操作的区别: https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/guides/beginner/tensor_cn.html#id3
11 changes: 11 additions & 0 deletions docs/api/paddle/less_than__cn.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.. _cn_api_paddle_less_than_:

less\_than\_
-------------------------------

.. py:function:: paddle.less_than_(x, y, name=None)

Inplace 版本的 :ref:`cn_api_paddle_less_than` API,对输入 `x` 采用 Inplace 策略。
更多关于 inplace 操作的介绍请参考 `3.1.3 原位(Inplace)操作和非原位操作的区别`_ 了解详情。

.. _3.1.3 原位(Inplace)操作和非原位操作的区别: https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/guides/beginner/tensor_cn.html#id3
11 changes: 11 additions & 0 deletions docs/api/paddle/lgamma__cn.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.. _cn_api_paddle_lgamma_:

lgamma\_
--------------------------------

.. py:function:: paddle.lgamma_(x, name=None)

Inplace 版本的 :ref:`cn_api_paddle_lgamma` API,对输入 `x` 采用 Inplace 策略。
更多关于 inplace 操作的介绍请参考 `3.1.3 原位(Inplace)操作和非原位操作的区别`_ 了解详情。

.. _3.1.3 原位(Inplace)操作和非原位操作的区别: https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/guides/beginner/tensor_cn.html#id3