-
Notifications
You must be signed in to change notification settings - Fork 658
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
Update regression mi300 test to use new runner cluster #19738
base: main
Are you sure you want to change the base?
Changes from 1 commit
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 |
---|---|---|
|
@@ -46,7 +46,7 @@ jobs: | |
- name: amdgpu_rocm_mi300_gfx942 | ||
rocm-chip: gfx942 | ||
backend: rocm | ||
runs-on: nodai-amdgpu-mi300-x86-64 | ||
ScottTodd marked this conversation as resolved.
Show resolved
Hide resolved
|
||
runs-on: linux-mi300-gpu-1 | ||
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. Seeing test failures missing some GPU setup?
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. I don't understand this one. Will solicit Sai's help. |
||
env: | ||
PACKAGE_DOWNLOAD_DIR: ${{ github.workspace }}/.packages | ||
IREE_TEST_PATH_EXTENSION: ${{ github.workspace }}/build_tools/pkgci/external_test_suite | ||
|
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.
The current self-hosted runners have a persistent file cache located by the
IREE_TEST_FILES
environment variable, used in the source code here:iree/experimental/regression_suite/ireers_tools/artifacts.py
Lines 40 to 43 in a64d713
In the test run on this PR, I see that files are not yet cached, resulting in significant time spent downloading 4GB+ files (28 minutes total job time):
https://github.com/iree-org/iree/actions/runs/12857925207/job/35846521901?pr=19738#step:6:212
Compare that with a run on the current runners (8 minutes total job time):
https://github.com/iree-org/iree/actions/runs/12839500128/job/35807030987#step:6:212
Are these new runners in the cluster persistent? Can we use a cache on the runners? Can we prepopulate the cache prior to running real test jobs?
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.
Thanks. I was under the impression that this workflow doesn't have local cache so doing a quick test to see if this migration would just work. These runners are persistent, so I'll probably copy the local files and have a way to mount the local cache so that it's accessible from the workflow container.