Allow ROCm packages from a PEP 503 index (e.g. repo.amd.com)#53
Draft
ethanwee1 wants to merge 2 commits into
Draft
Allow ROCm packages from a PEP 503 index (e.g. repo.amd.com)#53ethanwee1 wants to merge 2 commits into
ethanwee1 wants to merge 2 commits into
Conversation
Add an optional rocm_package_index_url input and forward it to the TheRock reusable workflow, and make rocm_package_find_links_url optional. This lets the multi-arch PyTorch wheel release build install ROCm from a PEP 503 index such as the released wheels at repo.amd.com/rocm/whl-multi-arch instead of only a flat find-links page.
Route the rockrel wrapper to the TheRock PR branch so the pre-merge ROCm 7.13 released-index build can be dispatched before the reusable workflow change lands on main.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds optional
rocm_package_index_urlto the rockrel multi-arch PyTorch wheel release workflow so ROCm packages can be installed from a PEP 503 simple index (e.g.https://repo.amd.com/rocm/whl-multi-arch/) instead of only a flat--find-linkspage.Changes
multi_arch_release_linux_pytorch_wheels.yml: newrocm_package_index_urlinput; either index URL or find-links URL can be suppliedWhy
Some AMD ROCm package hosts expose wheels via PEP 503 index layout rather than a single flat HTML find-links page. This lets release dispatches target those indexes without manual URL workarounds.