Skip to content

Commit

Permalink
docs: 新增paddle.less,Tensor.less中文文档 (PaddlePaddle#6989)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrXnneHang authored and WSBG committed Nov 27, 2024
1 parent b5b7b8f commit 8fdd58b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/api/paddle/Tensor_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1610,6 +1610,15 @@ less_than(y, name=None)

请参考 :ref:`cn_api_paddle_less_than`

less(y, name=None)
:::::::::

返回:计算后的 Tensor

返回类型:Tensor

请参考 :ref:`cn_api_paddle_less`

lgamma(name=None)
:::::::::

Expand Down
29 changes: 29 additions & 0 deletions docs/api/paddle/less_cn.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
.. _cn_api_paddle_less:

less
-------------------------------
.. py:function:: paddle.less(x, y, name=None)
逐元素地返回 :math:`x < y` 的逻辑值,相同位置前者输入小于后者输入则返回 True,否则返回 False。使用重载算子 `<` 可以有相同的计算函数效果。

.. note::
输出的结果不返回梯度。

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

- **x** (Tensor) - 输入 Tensor,支持的数据类型包括 bool、bfloat16、float16、float32、float64、uint8、int8、int16、int32、int64。
- **y** (Tensor) - 输入 Tensor,支持的数据类型包括 bool、bfloat16、float16、float32、float64、uint8、int8、int16、int32、int64。
- **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。


返回
::::::::::::
输出结果的 Tensor,输出 Tensor 的 shape 和输入一致,Tensor 数据类型为 bool。


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

COPY-FROM: paddle.less

0 comments on commit 8fdd58b

Please sign in to comment.