Skip to content

Commit

Permalink
1.8 linalg doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Ruberry committed Feb 3, 2021
1 parent 4b65a27 commit 40e8033
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/source/linalg.rst
Expand Up @@ -6,6 +6,10 @@ torch.linalg

Common linear algebra operations.

This module is in BETA. New functions are still being added, and some
functions may change in future PyTorch releases. See the documentation of each
function for details.

.. automodule:: torch.linalg
.. currentmodule:: torch.linalg

Expand Down
5 changes: 3 additions & 2 deletions torch/linalg/__init__.py
Expand Up @@ -523,7 +523,8 @@
always be real-valued, even if :attr:`input` is complex.
.. note:: Unlike NumPy's ``linalg.svd``, this always returns a namedtuple of
three tensors, even when :attr:`compute_uv=False`.
three tensors, even when :attr:`compute_uv=False`. This behavior may
change in a future PyTorch release.
.. note:: The singular values are returned in descending order. If :attr:`input` is a batch of matrices,
then the singular values of each matrix in the batch is returned in descending order.
Expand Down Expand Up @@ -914,7 +915,7 @@
* unlike ``numpy.linalg.qr``, this function always returns a
tuple of two tensors. When ``mode='r'``, the `Q` tensor is an
empty tensor.
empty tensor. This behavior may change in a future PyTorch release.
.. note::
Backpropagation is not supported for ``mode='r'``. Use ``mode='reduced'`` instead.
Expand Down

0 comments on commit 40e8033

Please sign in to comment.