Compare commits

...

7 Commits

Author SHA1 Message Date
aadfc05846 [run-slow] gemma2 2024-08-30 08:29:26 +02:00
d9b0ab812c [run-slow] gemma2 on daily-ci 2024-08-30 08:28:04 +02:00
e5430a6e61 [run-slow] gemma2 2024-08-29 21:51:30 +02:00
48e54556d7 [run-slow] gemma2 2024-08-29 21:15:02 +02:00
7c8975845c [run-slow] gemma2 2024-08-29 21:13:38 +02:00
f4c39ea17f [run_slow] gemma2 2024-08-29 21:12:31 +02:00
7d31833ab6 [run_slow] gemma2 2024-08-29 21:10:17 +02:00

View File

@ -2,9 +2,6 @@ name: PR slow CI
on:
pull_request:
paths:
- "src/transformers/models/*/modeling_*.py"
- "tests/**/test_*.py"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@ -65,8 +62,8 @@ jobs:
fail-fast: false
matrix:
folders: ${{ fromJson(needs.find_models_to_run.outputs.models) }}
machine_type: [single-gpu, multi-gpu]
runs-on: ['${{ matrix.machine_type }}', nvidia-gpu, t4, ci]
machine_type: [single-gpu]
runs-on: ['${{ matrix.machine_type }}', nvidia-gpu, t4, daily-ci]
container:
image: huggingface/transformers-all-latest-gpu
options: --gpus all --shm-size "16gb" --ipc host -v /mnt/cache/.cache/huggingface:/mnt/cache/
@ -113,7 +110,7 @@ jobs:
run: |
export CUDA_VISIBLE_DEVICES="$(python3 utils/set_cuda_devices_for_ci.py --test_folder ${{ matrix.folders }})"
echo $CUDA_VISIBLE_DEVICES
python3 -m pytest -v -rsfE --make-reports=${{ matrix.machine_type }}_run_models_gpu_${{ matrix.folders }}_test_reports tests/${{ matrix.folders }}
python3 -m pytest -v -rsfE --make-reports=${{ matrix.machine_type }}_run_models_gpu_${{ matrix.folders }}_test_reports tests/${{ matrix.folders }} -k "not Gemma2IntegrationTest"
- name: Failure short reports
if: ${{ failure() }}