diff options
author | Teng Li <tengli@fb.com> | 2018-12-04 19:20:08 -0800 |
---|---|---|
committer | Facebook Github Bot <facebook-github-bot@users.noreply.github.com> | 2018-12-04 19:22:24 -0800 |
commit | 2d3cf98b49541b0ba4d9db3b2f86cbbf3c5c71a4 (patch) | |
tree | a292119cd6b74580a77869592c3dbc82144d5ec4 /docs | |
parent | 33ea7eafefb6a74d4d87b4e02f8d182640051ffc (diff) | |
download | pytorch-2d3cf98b49541b0ba4d9db3b2f86cbbf3c5c71a4.tar.gz pytorch-2d3cf98b49541b0ba4d9db3b2f86cbbf3c5c71a4.tar.bz2 pytorch-2d3cf98b49541b0ba4d9db3b2f86cbbf3c5c71a4.zip |
Making dist.get_default_group private for PT1 release (#14767)
Summary:
When I wrote the frontend API, it is designed on not letting users use the default_group directly on any functions. It should really be private.
All collectives are supposed to either use group.WORLD, or anything that comes out of new_group. That was the initial design.
We need to make a TODO on removing group.WORLD one day. It exists for backward compatibility reasons and adds lots of complexity.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/14767
Reviewed By: pietern
Differential Revision: D13330655
Pulled By: teng-li
fbshipit-source-id: ace107e1c3a9b3910a300b22815a9e8096fafb1c
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/distributed.rst | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/source/distributed.rst b/docs/source/distributed.rst index 838a1a21f0..d8c39e1ccd 100644 --- a/docs/source/distributed.rst +++ b/docs/source/distributed.rst @@ -162,8 +162,6 @@ joined. .. autofunction:: is_initialized -.. autofunction:: get_default_group - .. autofunction:: is_mpi_available .. autofunction:: is_nccl_available |