diff --git a/docs/api/paddle/Overview_cn.rst b/docs/api/paddle/Overview_cn.rst index f68388fb1ca..d625e4ebb2b 100755 --- a/docs/api/paddle/Overview_cn.rst +++ b/docs/api/paddle/Overview_cn.rst @@ -191,6 +191,8 @@ tensor 数学操作原位(inplace)版本 " :ref:`paddle.remainder_ ` ", "Inplace 版本的 remainder API,对输入 x 采用 Inplace 策略" " :ref:`paddle.abs_ ` ", "Inplace 版本的 abs API,对输入 x 采用 Inplace 策略" + " :ref:`paddle.bitwise_not_ ` ", "Inplace 版本的 bitwise_not API,对输入 x 采用 Inplace 策略" + " :ref:`paddle.bitwise_or_ ` ", "Inplace 版本的 bitwise_or API,对输入 x 采用 Inplace 策略" " :ref:`paddle.baddbmm_ ` ", "Inplace 版本的 baddbmm API,对输入 input 采用 Inplace 策略" " :ref:`paddle.bernoulli_ ` ", "Inplace 版本的 bernoulli API,对输入 x 采用 Inplace 策略" " :ref:`paddle.bitwise_xor_ ` ", "Inplace 版本的 bitwise_xor API,对输入 x 采用 Inplace 策略" diff --git a/docs/api/paddle/bitwise_not__cn.rst b/docs/api/paddle/bitwise_not__cn.rst new file mode 100644 index 00000000000..5bd82513cb5 --- /dev/null +++ b/docs/api/paddle/bitwise_not__cn.rst @@ -0,0 +1,11 @@ +.. _cn_api_paddle_bitwise_not_: + +bitwise_not\_ +------------------------------- + +.. py:function:: paddle.bitwise_not_(x, out = None, name = None) +Inplace 版本的 :ref:`cn_api_paddle_bitwise_not` 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 diff --git a/docs/api/paddle/bitwise_or__cn.rst b/docs/api/paddle/bitwise_or__cn.rst new file mode 100644 index 00000000000..5c882026440 --- /dev/null +++ b/docs/api/paddle/bitwise_or__cn.rst @@ -0,0 +1,11 @@ +.. _cn_api_paddle_bitwise_or_: + +bitwise_or\_ +------------------------------- + +.. py:function:: paddle.bitwise_or_(x, y, name = None) +Inplace 版本的 :ref:`cn_api_paddle_bitwise_or` 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 \ No newline at end of file