diff options
author | vishwakftw <cs15btech11043@iith.ac.in> | 2018-10-12 03:56:33 -0700 |
---|---|---|
committer | Facebook Github Bot <facebook-github-bot@users.noreply.github.com> | 2018-10-12 03:58:12 -0700 |
commit | 48bc57fa8d0c3a5b13184980b06cfd57fbd0dd8a (patch) | |
tree | e32b1020169d588f620e2618200287b1ed7390da /docs | |
parent | 0cf3c1ce66c31e735f0ddce58ad2e3ac3e77a6a9 (diff) | |
download | pytorch-48bc57fa8d0c3a5b13184980b06cfd57fbd0dd8a.tar.gz pytorch-48bc57fa8d0c3a5b13184980b06cfd57fbd0dd8a.tar.bz2 pytorch-48bc57fa8d0c3a5b13184980b06cfd57fbd0dd8a.zip |
Introduce chain_matmul (#12380)
Summary:
- This was one of the few functions left out from the list of functions in
NumPy's `linalg` module
- `multi_mm` is particularly useful for DL research, for quick analysis of
deep linear networks
- Added tests and doc string
Pull Request resolved: https://github.com/pytorch/pytorch/pull/12380
Differential Revision: D10357136
Pulled By: SsnL
fbshipit-source-id: 52b44fa18d6409bdeb76cbbb164fe4e88224458e
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/torch.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/source/torch.rst b/docs/source/torch.rst index 1d55fa8b93..ddf0b156aa 100644 --- a/docs/source/torch.rst +++ b/docs/source/torch.rst @@ -287,6 +287,7 @@ BLAS and LAPACK Operations .. autofunction:: btrifact_with_info .. autofunction:: btrisolve .. autofunction:: btriunpack +.. autofunction:: chain_matmul .. autofunction:: dot .. autofunction:: eig .. autofunction:: gels |