diff --git a/.gitignore b/.gitignore index dc909922ff..1ab84c850d 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,8 @@ docs/source-pytorch/notebooks docs/source-pytorch/_static/images/course_UvA-DL docs/source-pytorch/_static/images/lightning_examples +docs/source-fabric/api + # C extensions *.so # Byte-compiled / optimized / DLL files diff --git a/tests/tests_pytorch/models/test_amp.py b/tests/tests_pytorch/models/test_amp.py index ecd1340165..d47c075fa3 100644 --- a/tests/tests_pytorch/models/test_amp.py +++ b/tests/tests_pytorch/models/test_amp.py @@ -55,7 +55,7 @@ class AMPTestModel(BoringModel): ("single_device", "16-mixed", 1), ("single_device", "bf16-mixed", 1), ("ddp_spawn", "16-mixed", 2), - ("ddp_spawn", "bf16-mixed", 2), + pytest.param("ddp_spawn", "bf16-mixed", 2, marks=RunIf(skip_windows=True)), ), ) def test_amp_cpus(tmpdir, strategy, precision, devices):