mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Summary: Addresses: https://github.com/pytorch/pytorch/pull/62605#discussion_r681380364 Pull Request resolved: https://github.com/pytorch/pytorch/pull/62785 Test Plan: I checked the render, and the link redirects as desired. Reviewed By: mrshenli Differential Revision: D30133229 Pulled By: andwgu fbshipit-source-id: baefe0d1f1b78ece44bb42e67629bc130dbf8e9a
21 lines
725 B
ReStructuredText
21 lines
725 B
ReStructuredText
.. role:: hidden
|
|
:class: hidden-section
|
|
|
|
Generic Join Context Manager
|
|
============================
|
|
The generic join context manager facilitates distributed training on uneven
|
|
inputs. This page outlines the API of the relevant classes: :class:`Join`,
|
|
:class:`Joinable`, and :class:`JoinHook`. For a tutorial, see
|
|
`Distributed Training with Uneven Inputs Using the Join Context Manager`_.
|
|
|
|
.. autoclass:: torch.distributed.algorithms.Join
|
|
:members:
|
|
|
|
.. autoclass:: torch.distributed.algorithms.Joinable
|
|
:members:
|
|
|
|
.. autoclass:: torch.distributed.algorithms.JoinHook
|
|
:members:
|
|
|
|
.. _Distributed Training with Uneven Inputs Using the Join Context Manager: https://pytorch.org/tutorials/advanced/generic_join.html
|