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

fix paddle.dist,paddle.roll,paddle.nonzero #5365

Merged
merged 14 commits into from
Nov 1, 2022
9 changes: 6 additions & 3 deletions docs/api/paddle/dist_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ x (4-D Tensor): 8 x 1 x 6 x 1

y (4-D Tensor): 1 x 7 x 1 x 5


(2) 确定输出 `z` 每一维度的大小:从两个输入的维度中选取最大值。

z (4-D Tensor): 8 x 7 x 6 x 5
Expand Down Expand Up @@ -49,9 +50,11 @@ z (4-D Tensor): 8 x 7 x 6 x 5
参数
::::::::::::

- **x** (Tensor): 1-D 到 6-D Tensor,数据类型为 float32 或 float64。
- **y** (Tensor): 1-D 到 6-D Tensor,数据类型为 float32 或 float64。
- **p** (float,optional):用于设置需要计算的范数,数据类型为 float32 或 float64。默认值为 2。
- **x** (Tensor) - 1-D 到 6-D Tensor,数据类型为 float32 或 float64。
- **y** (Tensor) - 1-D 到 6-D Tensor,数据类型为 float32 或 float64。
- **p** (float,可选) - 用于设置需要计算的范数,数据类型为 float32 或 float64。默认值为 2。
Copy link
Collaborator

Choose a reason for hiding this comment

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

中文文档ok,英文文档删一下 This OP




返回
::::::::::::
Expand Down
8 changes: 4 additions & 4 deletions docs/api/paddle/matmul_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ matmul

参数
:::::::::
- **x** (Tensor)输入变量,类型为 Tensor,数据类型为 float32, float64。
- **y** (Tensor)输入变量,类型为 Tensor,数据类型为 float32, float64。
- **transpose_x** (bool,可选)相乘前是否转置 x,默认值为 False。
- **transpose_y** (bool,可选)相乘前是否转置 y,默认值为 False。
- **x** (Tensor) - 输入变量,类型为 Tensor,数据类型为 float32, float64。
- **y** (Tensor) - 输入变量,类型为 Tensor,数据类型为 float32, float64。
- **transpose_x** (bool,可选) - 相乘前是否转置 x,默认值为 False。
- **transpose_y** (bool,可选) - 相乘前是否转置 y,默认值为 False。
- **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。

返回
Expand Down
6 changes: 4 additions & 2 deletions docs/api/paddle/meshgrid_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ meshgrid



Copy link
Collaborator

Choose a reason for hiding this comment

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

image

这里报错了,需要改英文文档

对每个张量做扩充操作。输入是张量或者包含张量的列表,包含 k 个一维张量,输出 k 个 k 维张量
对每个 Tensor 做扩充操作。输入是 Tensor 或者包含 Tensor 的列表,包含 k 个一维 Tensor,输出 k 个 k 维 Tensor

参数
::::::::::::

- \* **args** (Tensor|Tensor 数组)- 输入变量为 k 个一维张量,形状分别为(N1,), (N2,), ..., (Nk, )。支持数据类型为 float32float64int32int64。
- \* **args** (Tensor|Tensor 数组)- 输入变量为 k 个一维 Tensor,形状分别为(N1,), (N2,), ..., (Nk, )。支持数据类型为 float32float64int32int64。
- ** **kargs** (可选)- 目前只接受 name 参数(str),具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。



返回
::::::::::::

Expand Down
8 changes: 6 additions & 2 deletions docs/api/paddle/nonzero_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ nonzero
参数
:::::::::

- **x** (Tensor)– 输入张量。
- **as_tuple** (bool, optinal) - 返回格式。是否以 ``1-D Tensor`` 构成的元组格式返回。
- **x** (Tensor)– 输入的 Tensor。
- **as_tuple** (bool,可选) - 返回格式。是否以 ``1-D Tensor`` 构成的元组格式返回。



返回
:::::::::
- **Tensor or tuple(1-D Tensor)**,数据类型为 **INT64** 。



代码示例
:::::::::

Expand Down
4 changes: 3 additions & 1 deletion docs/api/paddle/roll_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ roll

- **x** (Tensor)– 输入的 Tensor。
- **shifts** (int|list|tuple) - 滚动位移。如果 ``shifts`` 是一个元组或者列表,则 ``axis`` 必须是相同大小的元组或者列表,输入张量将依次沿着每个维度滚动相应的数值。
- **axis** (int|list|tuple, optinal) – 滚动轴。默认值为 None。
- **axis** (int|list|tuple,可选) – 滚动轴。默认值为 None。
- **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。



返回
:::::::::

Expand Down