Skip to content

Commit 4fb4aa3

Browse files
twaclawpytorchmergebot
authored andcommitted
Updated docstrings referring to torch.expand to point to torch.Tensor.expand (pytorch#140045)
`torch.expand` was moved to `torch.Tensor.expand` but some docstrings still refer to `torch.expand` Pull Request resolved: pytorch#140045 Approved by: https://github.com/mikaylagawarecki
1 parent d3c8f1a commit 4fb4aa3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

torch/_torch_docs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13832,7 +13832,7 @@ def merge_dicts(*dicts):
1383213832
add_docstr(
1383313833
torch.expand_copy,
1383413834
r"""
13835-
Performs the same operation as :func:`torch.expand`, but all output tensors
13835+
Performs the same operation as :func:`torch.Tensor.expand`, but all output tensors
1383613836
are freshly created instead of aliasing the input.
1383713837
""",
1383813838
)

torch/autograd/gradcheck.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1998,7 +1998,7 @@ def gradcheck(
19981998
.. warning::
19991999
If any checked tensor in :attr:`input` has overlapping memory, i.e.,
20002000
different indices pointing to the same memory address (e.g., from
2001-
:func:`torch.expand`), this check will likely fail because the numerical
2001+
:func:`torch.Tensor.expand`), this check will likely fail because the numerical
20022002
gradients computed by point perturbation at such indices will change
20032003
values at all other indices that share the same memory address.
20042004
@@ -2152,7 +2152,7 @@ def gradgradcheck(
21522152
.. warning::
21532153
If any checked tensor in :attr:`input` and :attr:`grad_outputs` has
21542154
overlapping memory, i.e., different indices pointing to the same memory
2155-
address (e.g., from :func:`torch.expand`), this check will likely fail
2155+
address (e.g., from :func:`torch.Tensor.expand`), this check will likely fail
21562156
because the numerical gradients computed by point perturbation at such
21572157
indices will change values at all other indices that share the same
21582158
memory address.

0 commit comments

Comments
 (0)