Skip to content
Merged
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
11 changes: 6 additions & 5 deletions .github/workflows/sglang_downstream.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
label: MI325

env:
SGL_BRANCH: v0.5.6
SGL_BRANCH: v0.5.8
GPU_ARCH: gfx942
GPU_ARCH_CI: mi300 # used in sglang ci scripts
SGL_IMAGE: rocm/sgl-dev:v0.5.6-rocm700-mi30x-20251208
SGL_IMAGE: rocm/sgl-dev:v0.5.8-rocm700-mi30x-20260127
GITHUB_REPO_URL: ${{ github.event.pull_request.head.repo.clone_url || 'https://github.com/ROCm/aiter.git' }}
GITHUB_COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.event.head_commit.id }}

Expand Down Expand Up @@ -122,12 +122,13 @@ jobs:
- name: Evaluate Accuracy
timeout-minutes: 120
run: |
set -ex
cd sglang
sed -i 's/ci_sglang/sglang_aiter_test/g' scripts/ci/amd_ci_exec.sh
bash scripts/ci/amd_ci_exec.sh printenv | grep GPU_ARCH || true
bash scripts/ci/amd_ci_exec.sh -e SGLANG_USE_AITER=0 python3 test_eval_accuracy_large.py
bash scripts/ci/amd_ci_exec.sh python3 test_eval_fp8_accuracy.py
bash scripts/ci/amd_ci_exec.sh python3 models/test_qwen_models.py
bash scripts/ci/amd_ci_exec.sh -e SGLANG_USE_AITER=0 python3 ../registered/eval/test_eval_accuracy_large.py
bash scripts/ci/amd_ci_exec.sh python3 ../registered/quant/test_eval_fp8_accuracy.py
bash scripts/ci/amd_ci_exec.sh python3 ../registered/models/test_qwen_models.py

# TODO: Clean up because some dependencies are installed under root user which can't be removed by runner, these dependencies should be installed as a non-root user
- name: Clean Up
Expand Down
Loading