-
Notifications
You must be signed in to change notification settings - Fork 48
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
SDXL E2E Pipeline CI #885
SDXL E2E Pipeline CI #885
Conversation
.github/workflows/test_sdxl.yml
Outdated
pip install https://download.pytorch.org/whl/nightly/rocm6.1/torchaudio-2.4.0.dev20240711%2Brocm6.1-cp311-cp311-linux_x86_64.whl | ||
pip uninstall iree-compiler iree-runtime iree-base-compiler iree-base-runtime -y | ||
|
||
- name: Build IREE |
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.
FYI you can fetch prebuilt Python wheels from GitHub artifacts where pkgci.yml has run, if you want builds newer than nightly releases. Should save you some time and disk space.
(downstream should never have to build the compiler from source unless extending with some extra source code that needs to be included in the build)
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 goal of this CI is to test hourly on TOM of everything, so it's easy to pinpoint where something broke. If there's a way to pull the latest PkgCI wheels at any point that would be great. But, it would have to be from TOM not on a PR.
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.
Yeah, https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28 query workflow runs triggered by push
events on the main
branch, then get the artifacts: https://docs.github.com/en/rest/actions/artifacts?apiVersion=2022-11-28#get-an-artifact. I don't think we have the one-liner (or... more like 10-50 liner...) to do that fetching, but it would be good to have it.
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.
Oooh that's perfect! I wrote a script for this, and it's working (https://github.com/nod-ai/SHARK-ModelDev/pull/885/files#diff-0c1eaf69a654192f737bb2da8e399fb90d8cbade47b0b98d1ea2056617b5ff5a). Thanks
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 for putting this up
No description provided.