Skip to content

Commit 73fa853

Browse files
authored
Merge pull request pytorch#367 from goldsborough/dead-faq-link
Fix FAQ link
2 parents b1f3f31 + a3d5eed commit 73fa853

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

advanced_source/cpp_extension.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ PyTorch's tensor and variable interface is generated automatically from the
203203
ATen library, so we can more or less translate our Python implementation 1:1
204204
into C++. Our primary datatype for all computations will be
205205
:class:`at::Tensor`. Its full API can be inspected `here
206-
<https://github.com/pytorch/pytorch/blob/master/aten/doc/Tensor.h>`_. Notice
206+
<https://pytorch.org/cppdocs/api/classat_1_1_tensor.html>`_. Notice
207207
also that we can include ``<iostream>`` or *any other C or C++ header* -- we have
208208
the full power of C++11 at our disposal.
209209

@@ -1033,4 +1033,4 @@ mechanism as well as a motivation for using them. You can find the code
10331033
examples displayed in this note `here
10341034
<https://github.com/pytorch/extension-cpp>`_. If you have questions, please use
10351035
`the forums <https://discuss.pytorch.org>`_. Also be sure to check our `FAQ
1036-
<https://pytorch.org/cppdocs/faq.html>`_ in case you run into any issues.
1036+
<https://pytorch.org/cppdocs/notes/faq.html>`_ in case you run into any issues.

0 commit comments

Comments
 (0)