File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -114,17 +114,17 @@ jobs:
114114 pip install setuptools==75.6.0 jsonargparse==4.35.0
115115 displayName: "Install package & dependencies"
116116
117- - bash : |
118- python -c "import bitsandbytes"
119- displayName: "Handle bitsandbytes"
120-
121117 - bash : |
122118 set -e
123119 python requirements/collect_env_details.py
124120 python -c "import torch ; mgpu = torch.cuda.device_count() ; assert mgpu == 2, f'GPU: {mgpu}'"
125121 python requirements/pytorch/check-avail-extras.py
126122 displayName: "Env details"
127123
124+ - bash : |
125+ python -c "import bitsandbytes"
126+ displayName: "Handle bitsandbytes"
127+
128128 - bash : python -m pytest lightning_fabric
129129 workingDirectory : src
130130 # without succeeded this could run even if the job has already failed
Original file line number Diff line number Diff line change @@ -128,17 +128,17 @@ jobs:
128128 condition : and(succeeded(), eq(variables['PACKAGE_NAME'], 'lightning'))
129129 displayName : " Drop PL for LAI"
130130
131- - bash : |
132- python -c "import bitsandbytes"
133- displayName: "Handle bitsandbytes"
134-
135131 - bash : |
136132 set -e
137133 python requirements/collect_env_details.py
138134 python -c "import torch ; mgpu = torch.cuda.device_count() ; assert mgpu == 2, f'GPU: {mgpu}'"
139135 python requirements/pytorch/check-avail-extras.py
140136 displayName: "Env details"
141137
138+ - bash : |
139+ python -c "import bitsandbytes"
140+ displayName: "Handle bitsandbytes"
141+
142142 - bash : python -m pytest pytorch_lightning
143143 workingDirectory : src
144144 # without succeeded this could run even if the job has already failed
You can’t perform that action at this time.
0 commit comments