Skip to content

Commit

Permalink
[TKW] Modify MI250 test to run less worker to save memory
Browse files Browse the repository at this point in the history
Signed-off-by: Stanley Winata <[email protected]>
  • Loading branch information
raikonenfnu committed Nov 27, 2024
1 parent 436524a commit e7485ad
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci-tk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,20 @@ jobs:
run: |
pytest -n 4 --capture=tee-sys -vv ./tests/kernel/wave/
- name: Run e2e tests on AMD GPU
if: "contains(matrix.os, 'amdgpu') && !cancelled()"
- name: Run e2e tests on AMD GPU MI300
if: "contains(matrix.os, 'mi300') && !cancelled()"
run: |
pip install --no-compile -r pytorch-rocm-requirements.txt
export WAVE_RUN_E2E_TESTS=1
pytest -n 4 --capture=tee-sys -vv ./tests/kernel/wave/
- name: Run e2e tests on AMD GPU MI250
if: "contains(matrix.os, 'mi250') && !cancelled()"
run: |
pip install --no-compile -r pytorch-rocm-requirements.txt
export WAVE_RUN_E2E_TESTS=1
pytest -n 2 --capture=tee-sys -vv ./tests/kernel/wave/
- name: Run LIT tests
if: ${{ !cancelled() }}
run: |
Expand Down

0 comments on commit e7485ad

Please sign in to comment.