Claude Code Prompt: Read the docs and workflows in therock using subagents and tell me how to make developer builds from a PR and get packages w/ pytorch.
Add labels to your PR:
gfx120X,gfx94X, etc. - build for specific GPU familytest:rocthrust,test:hipblaslt- run specific testsskip-ci- skip builds
Actions → CI workflow → Run workflow → specify linux_amdgpu_families
Use build_tools/install_rocm_from_artifacts.py:
python build_tools/install_rocm_from_artifacts.py \
--run-id [RUN_ID_FROM_ACTIONS_URL] \
--amdgpu-family gfx110X-all \
--blas --rccl --testsOr use nightly tarballs directly:
python build_tools/install_rocm_from_artifacts.py \
--release 7.11.0a20251124 \
--amdgpu-family gfx110X-allTwo-step process:
- Copy ROCm packages to dev bucket via
copy_release.ymlworkflow - Trigger PyTorch build via
build_portable_linux_pytorch_wheels.yml:- Set
release_type: dev(important - not nightly/prerelease) - Specify
rocm_versionmatching what you copied - Wheels land at
https://rocm.devreleases.amd.com/v2/{GPU_FAMILY}/
- Set
docs/development/installing_artifacts.mddocs/development/ci_behavior_manipulation.mddocs/development/github_actions_debugging.md