File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ jobs:
120120 set -e
121121 python requirements/collect_env_details.py
122122 python -c "import torch ; mgpu = torch.cuda.device_count() ; assert mgpu == 2, f'GPU: {mgpu}'"
123- python -c "import bitsandbytes"
123+ python requirements/pytorch/check-avail-extras.py
124124 displayName: "Env details"
125125
126126 - bash : python -m pytest lightning_fabric
Original file line number Diff line number Diff line change @@ -135,7 +135,6 @@ jobs:
135135 python requirements/collect_env_details.py
136136 python -c "import torch ; mgpu = torch.cuda.device_count() ; assert mgpu == 2, f'GPU: {mgpu}'"
137137 python requirements/pytorch/check-avail-extras.py
138- python -c "import bitsandbytes"
139138 displayName: "Env details"
140139
141140 - bash : python -m pytest pytorch_lightning
Original file line number Diff line number Diff line change 44 import matplotlib # noqa: F401
55 import omegaconf # noqa: F401
66 import rich # noqa: F401
7+
8+ import torch # noqa: F401
9+ if torch .cuda .is_available ():
10+ import bitsandbytes # noqa: F401
You can’t perform that action at this time.
0 commit comments