-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into bugfix/manual_sharded
- Loading branch information
Showing
18 changed files
with
204 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,56 @@ | ||
.. _accelerators: | ||
|
||
############ | ||
Accelerators | ||
############ | ||
Accelerators connect a Lightning Trainer to arbitrary accelerators (CPUs, GPUs, TPUs, etc). Accelerators | ||
also manage distributed accelerators (like DP, DDP, HPC cluster). | ||
|
||
Accelerators can also be configured to run on arbitrary clusters using Plugins or to link up to arbitrary | ||
also manage distributed communication through :ref:`Plugins` (like DP, DDP, HPC cluster) and | ||
can also be configured to run on arbitrary clusters or to link up to arbitrary | ||
computational strategies like 16-bit precision via AMP and Apex. | ||
|
||
**For help setting up custom plugin/accelerator please reach out to us at [email protected]** | ||
An Accelerator is meant to deal with one type of hardware. | ||
Currently there are accelerators for: | ||
|
||
- CPU | ||
- GPU | ||
- TPU | ||
|
||
Each Accelerator gets two plugins upon initialization: | ||
One to handle differences from the training routine and one to handle different precisions. | ||
|
||
.. testcode:: | ||
|
||
from pytorch_lightning import Trainer | ||
from pytorch_lightning.accelerators import GPUAccelerator | ||
from pytorch_lightning.plugins import NativeMixedPrecisionPlugin, DDPPlugin | ||
|
||
accelerator = GPUAccelerator( | ||
precision_plugin=NativeMixedPrecisionPlugin(), | ||
training_type_plugin=DDPPlugin(), | ||
) | ||
trainer = Trainer(accelerator=accelerator) | ||
|
||
|
||
We expose Accelerators and Plugins mainly for expert users who want to extend Lightning to work with new | ||
hardware and distributed training or clusters. | ||
|
||
|
||
.. warning:: The Accelerator API is in beta and subject to change. | ||
For help setting up custom plugins/accelerators, please reach out to us at **[email protected]** | ||
|
||
---------- | ||
|
||
|
||
Accelerator API | ||
--------------- | ||
|
||
.. currentmodule:: pytorch_lightning.accelerators | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:template: classtemplate.rst | ||
|
||
Accelerator | ||
CPUAccelerator | ||
GPUAccelerator | ||
TPUAccelerator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.. _plugins: | ||
|
||
####### | ||
Plugins | ||
####### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import time | ||
|
||
_this_year = time.strftime("%Y") | ||
__version__ = '1.3.0rc0' | ||
__version__ = '1.3.0rc1' | ||
__author__ = 'William Falcon et al.' | ||
__author_email__ = '[email protected]' | ||
__license__ = 'Apache-2.0' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.