Skip to content

Commit 6f1b0a9

Browse files
committed
修改了bitwise_not_和bitwise_or_中文文档
1 parent 66933df commit 6f1b0a9

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

docs/api/paddle/Overview_cn.rst

+2
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,8 @@ tensor 数学操作原位(inplace)版本
187187

188188
" :ref:`paddle.remainder_ <cn_api_paddle_remainder_>` ", "Inplace 版本的 remainder API,对输入 x 采用 Inplace 策略"
189189
" :ref:`paddle.abs_ <cn_api_paddle_abs_>` ", "Inplace 版本的 abs API,对输入 x 采用 Inplace 策略"
190+
" :ref:`paddle.bitwise_not_ <cn_api_paddle_bitwise_not_>` ", "Inplace 版本的 bitwise_not API,对输入 x 采用 Inplace 策略"
191+
" :ref:`paddle.bitwise_or_ <cn_api_paddle_bitwise_or_>` ", "Inplace 版本的 bitwise_or API,对输入 x 采用 Inplace 策略"
190192
" :ref:`paddle.bernoulli_ <cn_api_paddle_bernoulli_>` ", "Inplace 版本的 bernoulli API,对输入 x 采用 Inplace 策略"
191193
" :ref:`paddle.tanh_ <cn_api_paddle_tanh_>` ", "Inplace 版本的 tanh API,对输入 x 采用 Inplace 策略"
192194
" :ref:`paddle.erf_ <cn_api_paddle_erf_>` ", "Inplace 版本的 erf API,对输入 x 采用 Inplace 策略"

docs/api/paddle/bitwise_not__cn.rst

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.. _cn_api_paddle_bitwise_not_:
2+
3+
bitwise_not\_
4+
-------------------------------
5+
6+
.. py:function:: paddle.bitwise_not_(x: Tensor, out: Tensor | None = None, name: str | None = None)
7+
Inplace 版本的 :ref:`cn_api_paddle_bitwise_not` API,对输入 `x` 采用 Inplace 策略。
8+
9+
更多关于 inplace 操作的介绍请参考 `3.1.3 原位(Inplace)操作和非原位操作的区别`_ 了解详情。
10+
11+
.. _3.1.3 原位(Inplace)操作和非原位操作的区别: https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/guides/beginner/tensor_cn.html#id3

docs/api/paddle/bitwise_or__cn.rst

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.. _cn_api_paddle_bitwise_or_:
2+
3+
bitwise_or\_
4+
-------------------------------
5+
6+
.. py:function:: paddle.bitwise_or_(x: Tensor, y: Tensor, name: str | None = None) -> Tensor
7+
Inplace 版本的 :ref:`cn_api_paddle_bitwise_or` API,对输入 `x` 采用 Inplace 策略。
8+
9+
更多关于 inplace 操作的介绍请参考 `3.1.3 原位(Inplace)操作和非原位操作的区别`_ 了解详情。
10+
11+
.. _3.1.3 原位(Inplace)操作和非原位操作的区别: https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/guides/beginner/tensor_cn.html#id3

0 commit comments

Comments
 (0)