Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/nightly-test-amd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: github.repository == 'sgl-project/sglang' || github.event_name == 'pull_request'
strategy:
matrix:
runner: [linux-mi300-gpu-2, linux-mi325-gpu-2-nightly]
runner: [linux.rocm.gpu.gfx942.2, linux.rocm.gpu.gfx942.2-nightly]
runs-on: ${{matrix.runner}}
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/amd_ci_start_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fi


# Default base tags (can be overridden by command line arguments)
DEFAULT_MI30X_BASE_TAG="${SGLANG_VERSION}-rocm630-mi30x"
DEFAULT_MI30X_BASE_TAG="${SGLANG_VERSION}-rocm700-mi30x"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

While this correctly updates the default base tag for MI300X to use rocm700, the hardcoded fallback image for mi30x in the find_latest_image function (lines 106 and 110) is still using rocm630. To ensure CI consistency and prevent it from using an outdated image if the primary one is not found, please update the fallback images to also use rocm700.

For example, line 106 should be updated to:

echo "rocm/sgl-dev:v0.5.0rc0-rocm700-mi30x-20250812"

Copy link

@michael-amd michael-amd Sep 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will need wait till a stable rocm700-mi30x, so we can update fallback image. Please hold on the PR for now.

DEFAULT_MI35X_BASE_TAG="${SGLANG_VERSION}-rocm700-mi35x"

# Parse command line arguments
Expand Down
Loading