Skip to content

Instantly share code, notes, and snippets.

@stellaraccident
Created January 29, 2026 18:16
Show Gist options
  • Select an option

  • Save stellaraccident/b438ff4c756786d9d77e7fce4229b48a to your computer and use it in GitHub Desktop.

Select an option

Save stellaraccident/b438ff4c756786d9d77e7fce4229b48a to your computer and use it in GitHub Desktop.
Installing ROCm from TheRock ASAN CI Artifacts

Installing ROCm from TheRock ASAN CI Artifacts

Source: CI ASAN Run #21463906609

Artifacts Index: https://therock-ci-artifacts.s3.amazonaws.com/21463906609-linux/index-gfx94X-dcgpu-asan.html

Basic Installation

From TheRock repo root:

python build_tools/install_rocm_from_artifacts.py \
    --run-id 21463906609 \
    --artifact-group gfx94X-dcgpu-asan \
    --output-dir ./therock-asan

With Specific Components

python build_tools/install_rocm_from_artifacts.py \
    --run-id 21463906609 \
    --artifact-group gfx94X-dcgpu-asan \
    --blas --rccl --tests \
    --output-dir ./therock-asan

For gfx950

python build_tools/install_rocm_from_artifacts.py \
    --run-id 21463906609 \
    --artifact-group gfx950-dcgpu-asan \
    --output-dir ./therock-asan-gfx950

Key Difference for ASAN Builds

Use --artifact-group gfx94X-dcgpu-asan instead of --amdgpu-family gfx94X-dcgpu.

The -asan suffix in the artifact group tells the script to pull from the ASAN variant subdirectory in S3 rather than the standard CI artifacts.


Generated with Claude Code from prompt: "Given this run, give me TheRock incantation to install ROCM from artifacts."

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment