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

[Docs]fix some Hyperlink issues;test=document_fix #46347

Merged
merged 4 commits into from
Sep 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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