fix broken cuda and rocm images #548
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
name: CLI CUDA Torch-ORT Single-GPU Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/test_cli_cuda_torch_ort_single_gpu.yaml | |
- "optimum_benchmark/**" | |
- "docker/**" | |
- "tests/**" | |
- "setup.py" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- .github/workflows/test_cli_cuda_torch_ort_single_gpu.yaml | |
- "optimum_benchmark/**" | |
- "docker/**" | |
- "tests/**" | |
- "setup.py" | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
env: | |
IMAGE: ghcr.io/huggingface/optimum-benchmark:latest-cuda-ort | |
jobs: | |
run_cli_cuda_torch_ort_single_gpu_tests: | |
runs-on: [single-gpu, nvidia-gpu, a10, ci] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run tests | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: ${{ env.IMAGE }} | |
options: | | |
--rm | |
--gpus all | |
--shm-size 64G | |
--env MKL_THREADING_LAYER=GNU | |
--volume ${{ github.workspace }}:/workspace | |
--workdir /workspace | |
run: | | |
pip install -e .[testing,torch-ort,peft] | |
pytest -x -s -k "cli and cuda and torch_ort and not (dp or ddp or device_map) and not (peft)" |