@@ -180,6 +180,62 @@ jobs:
180180 pip install slack_sdk tabulate
181181 python utils/log_reports.py >> $GITHUB_STEP_SUMMARY
182182
183+ run_big_gpu_torch_tests :
184+ name : Torch tests on big GPU
185+ strategy :
186+ fail-fast : false
187+ max-parallel : 2
188+ runs-on :
189+ group : aws-g6e-xlarge-plus
190+ container :
191+ image : diffusers/diffusers-pytorch-cuda
192+ options : --shm-size "16gb" --ipc host --gpus 0
193+ steps :
194+ - name : Checkout diffusers
195+ uses : actions/checkout@v3
196+ with :
197+ fetch-depth : 2
198+ - name : NVIDIA-SMI
199+ run : nvidia-smi
200+ - name : Install dependencies
201+ run : |
202+ python -m venv /opt/venv && export PATH="/opt/venv/bin:$PATH"
203+ python -m uv pip install -e [quality,test]
204+ python -m uv pip install peft@git+https://github.com/huggingface/peft.git
205+ pip uninstall accelerate -y && python -m uv pip install -U accelerate@git+https://github.com/huggingface/accelerate.git
206+ python -m uv pip install pytest-reportlog
207+ - name : Environment
208+ run : |
209+ python utils/print_env.py
210+ - name : Selected Torch CUDA Test on big GPU
211+ env :
212+ HF_TOKEN : ${{ secrets.DIFFUSERS_HF_HUB_READ_TOKEN }}
213+ # https://pytorch.org/docs/stable/notes/randomness.html#avoiding-nondeterministic-algorithms
214+ CUBLAS_WORKSPACE_CONFIG : :16:8
215+ BIG_GPU_MEMORY : 40
216+ run : |
217+ python -m pytest -n 1 --max-worker-restart=0 --dist=loadfile \
218+ -m "big_gpu_with_torch_cuda" \
219+ --make-reports=tests_big_gpu_torch_cuda \
220+ --report-log=tests_big_gpu_torch_cuda.log \
221+ tests/
222+ - name : Failure short reports
223+ if : ${{ failure() }}
224+ run : |
225+ cat reports/tests_big_gpu_torch_cuda_stats.txt
226+ cat reports/tests_big_gpu_torch_cuda_failures_short.txt
227+ - name : Test suite reports artifacts
228+ if : ${{ always() }}
229+ uses : actions/upload-artifact@v4
230+ with :
231+ name : torch_cuda_big_gpu_test_reports
232+ path : reports
233+ - name : Generate Report and Notify Channel
234+ if : always()
235+ run : |
236+ pip install slack_sdk tabulate
237+ python utils/log_reports.py >> $GITHUB_STEP_SUMMARY
238+
183239 run_flax_tpu_tests :
184240 name : Nightly Flax TPU Tests
185241 runs-on : docker-tpu
0 commit comments