Skip to content
5 changes: 3 additions & 2 deletions docs/api/paddle/asinh_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
asinh
-------------------------------

.. py:function:: paddle.asinh(x, name=None)
.. py:function:: paddle.asinh(x, name=None, *, out=None)

Arcsinh 函数。

Expand All @@ -12,8 +12,9 @@ Arcsinh 函数。

参数
:::::::::
- **x** (Tensor) - 输入的 Tensor,数据类型为:float32float64、complex64、complex128。
- **x** (Tensor) - 输入的 Tensor,数据类型为: float32, float64, float16, bfloat16,
Copy link

Copilot AI Dec 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The parameter description for x is incomplete. The line ends with a comma and the list of data types is not finished. This should include the complete list of supported data types.

Suggested change
- **x** (Tensor) - 输入的 Tensor,数据类型为: float32, float64, float16, bfloat16,
- **x** (Tensor) - 输入的 Tensor,数据类型为:float32float64float16bfloat16、complex64、complex128。

Copilot uses AI. Check for mistakes.
- **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。
- **out** (Tensor,可选)- 输出的结果。该参数为仅关键字参数,默认值为 None。

返回
:::::::::
Expand Down
3 changes: 2 additions & 1 deletion docs/api/paddle/atan2_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
atan2
-------------------------------

.. py:function:: paddle.atan2(x, y, name=None)
.. py:function:: paddle.atan2(x, y, name=None, *, out=None)



Expand All @@ -26,6 +26,7 @@ atan2
- **x** (Tensor) - 输入的 Tensor,数据类型为:int32、int64、float16、float32、float64。
- **y** (Tensor) - 输入的 Tensor,数据类型为:int32、int64、float16、float32、float64。
- **name** (str,可选) - 操作的名称(可选,默认值为 None)。更多信息请参见 :ref:`api_guide_Name`。
- **out** (Tensor,可选)- 输出的结果。该参数为仅关键字参数,默认值为 None。

返回
:::::::::
Expand Down
3 changes: 2 additions & 1 deletion docs/api/paddle/atan_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
atan
-------------------------------

.. py:function:: paddle.atan(x, name=None)
.. py:function:: paddle.atan(x, name=None, *, out=None)



Expand All @@ -18,6 +18,7 @@ arctangent 函数。

- **x** (Tensor) - 输入的 Tensor,数据类型为:float32、float64、float16、complex64、complex128。
- **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。
- **out** (Tensor,可选)- 输出的结果。该参数为仅关键字参数,默认值为 None。

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