-
Notifications
You must be signed in to change notification settings - Fork 663
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add mi300
runner for toy_llama tests
#19961
base: main
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -21,6 +21,8 @@ jobs: | |||||||||||||||||||||
test_sharktank_models: | ||||||||||||||||||||||
name: "test_sharktank_models :: ${{ matrix.name }}" | ||||||||||||||||||||||
runs-on: ${{ matrix.runs-on }} | ||||||||||||||||||||||
# Dynamically assign container for `linux-mi300-gpu-1` | ||||||||||||||||||||||
container: ${{ fromJSON(toJSON(matrix.container || {})) }} | ||||||||||||||||||||||
strategy: | ||||||||||||||||||||||
fail-fast: false | ||||||||||||||||||||||
matrix: | ||||||||||||||||||||||
|
@@ -30,11 +32,19 @@ jobs: | |||||||||||||||||||||
gpu: none | ||||||||||||||||||||||
runs-on: ubuntu-24.04 | ||||||||||||||||||||||
|
||||||||||||||||||||||
- name: hip_task | ||||||||||||||||||||||
- name: hip_task_w7900 | ||||||||||||||||||||||
target: target_hip | ||||||||||||||||||||||
gpu: gfx1100 | ||||||||||||||||||||||
runs-on: nodai-amdgpu-w7900-x86-64 | ||||||||||||||||||||||
|
||||||||||||||||||||||
- name: hip_task_mi300 | ||||||||||||||||||||||
target: target_hip | ||||||||||||||||||||||
gpu: gfx942 | ||||||||||||||||||||||
runs-on: linux-mi300-gpu-1 | ||||||||||||||||||||||
Comment on lines
+42
to
+45
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like these runners need GPU drivers, either preinstalled or via Docker? https://github.com/iree-org/iree/actions/runs/13270996475/job/37050767466?pr=19961#step:8:330
See what this other workflow does: iree/.github/workflows/pkgci_test_amd_mi300.yml Lines 20 to 25 in e5a5881
cc @yamiyysu There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added the line to register container for mi300 runner There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Still missing some deps, like these: iree/.github/workflows/pkgci_test_amd_mi300.yml Lines 38 to 41 in e5a5881
Trying to install those will run into #19955 though. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, latest run hit that error |
||||||||||||||||||||||
container: | ||||||||||||||||||||||
image: rocm/dev-ubuntu-22.04:6.3 | ||||||||||||||||||||||
options: --user root --device=/dev/kfd --device=/dev/dri --ipc=host --group-add video --cap-add=SYS_PTRACE --security-opt seccomp=unconfined | ||||||||||||||||||||||
|
||||||||||||||||||||||
env: | ||||||||||||||||||||||
VENV_DIR: ${{ github.workspace }}/venv | ||||||||||||||||||||||
steps: | ||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a syntax error here: https://github.com/iree-org/iree/actions/runs/13272021471
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pushed what should be a fix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So far so good 🤞