Skip to content

Commit

Permalink
[Docs]fix some Hyperlink issues;test=document_fix (#46347)
Browse files Browse the repository at this point in the history
* [Docs]test Hyperlink

* fix Broadcasting issue;test=document_fix

* for broadcasting link; test=document_fix

* Update python/paddle/tensor/manipulation.py
  • Loading branch information
Ligoml authored Sep 22, 2022
1 parent 4621f82 commit 8bed319
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions python/paddle/tensor/manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1130,10 +1130,12 @@ def concat(x, axis=0, name=None):

def broadcast_tensors(input, name=None):
"""
This OP broadcast a list of tensors following broadcast semantics
Broadcast a list of tensors following broadcast semantics
.. note::
If you want know more about broadcasting, please refer to :ref:`user_guide_broadcasting`.
If you want know more about broadcasting, please refer to `Introduction to Tensor`_ .
.. _Introduction to Tensor: ../../guides/beginner/tensor_en.html#chapter5-broadcasting-of-tensor
Args:
input (list|tuple): ``input`` is a Tensor list or Tensor tuple which is with data type bool,
Expand Down Expand Up @@ -4490,7 +4492,7 @@ def index_add(x, index, axis, value, name=None):
def index_add_(x, index, axis, value, name=None):
"""
Inplace version of ``index_add`` API, the output Tensor will be inplaced with input ``x``.
Please refer to :ref:`api_paddle_tensor_index_add`.
Please refer to :ref:`api_paddle_index_add`.
Examples:
.. code-block:: python
Expand Down

0 comments on commit 8bed319

Please sign in to comment.