Skip to content

Commit

Permalink
add bool type for tril, add uint8 type for concat (PaddlePaddle#3582)
Browse files Browse the repository at this point in the history
* add bool type for tril, add uint8 type for concat

* fix
  • Loading branch information
vslyu authored Jun 9, 2021
1 parent 30ceac2 commit 32db7b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/api/paddle/concat_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concat
该OP对输入沿 ``axis`` 轴进行联结,返回一个新的Tensor。

参数:
- **x** (list|tuple) - 待联结的Tensor list或者Tensor tuple ,支持的数据类型为:bool, float16, float32、float64、int32、int64, ``x`` 中所有Tensor的数据类型应该一致。
- **x** (list|tuple) - 待联结的Tensor list或者Tensor tuple ,支持的数据类型为:boolfloat16float32、float64、int32、int64、uint8, ``x`` 中所有Tensor的数据类型应该一致。
- **axis** (int|Tensor,可选) - 指定对输入 ``x`` 进行运算的轴,可以是整数或者形状为[1]的Tensor,数据类型为int32或者int64。 ``axis`` 的有效范围是[-R, R),R是输入 ``x`` 中Tensor的维度, ``axis`` 为负值时与 :math:`axis + R` 等价。默认值为0。
- **name** (str,可选) – 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为None。

Expand Down
2 changes: 1 addition & 1 deletion docs/api/paddle/tril_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tril

参数
:::::::::
- **input** (Tensor) : 输入Tensor input,数据类型支持 `float32`, `float64`, `int32`, `int64` 。
- **input** (Tensor) : 输入Tensor input,数据类型支持 `bool`, `float32`, `float64`, `int32`, `int64` 。
- **diagonal** (int,可选) : 指定的对角线,默认值为0。如果diagonal = 0,表示主对角线; 如果diagonal是正数,表示主对角线之上的对角线; 如果diagonal是负数,表示主对角线之下的对角线。
- **name** (str,可选)- 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为None。

Expand Down

0 comments on commit 32db7b1

Please sign in to comment.