-
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.
Co-authored-by: Adrian Wälchli <[email protected]>
- Loading branch information
1 parent
9d18d27
commit c028522
Showing
2 changed files
with
9 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from pytorch_lightning.plugins.base_plugin import Plugin | ||
from pytorch_lightning.plugins.precision import * | ||
from pytorch_lightning.plugins.training_type import * |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from pytorch_lightning.plugins.precision.apex_amp import ApexMixedPrecisionPlugin | ||
from pytorch_lightning.plugins.precision.mixed import MixedPrecisionPlugin | ||
from pytorch_lightning.plugins.precision.native_amp import NativeMixedPrecisionPlugin | ||
from pytorch_lightning.plugins.precision.precision_plugin import PrecisionPlugin | ||
from pytorch_lightning.plugins.precision.sharded_native_amp import ShardedNativeMixedPrecisionPlugin | ||
from pytorch_lightning.plugins.precision.tpu_bfloat import TPUHalfPrecisionPlugin |