From 17d8c5801d0ab9fb859c03dffe563a28f90f7c41 Mon Sep 17 00:00:00 2001 From: YC Yen-Ching Tseng Date: Tue, 9 Jun 2026 23:12:35 +0800 Subject: [PATCH] [AMD] Fix test_deepseek_r1_mxfp4_8gpu.py : disable async-assert probes on AMD CI (#27505) --- scripts/ci/amd/amd_ci_exec.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/ci/amd/amd_ci_exec.sh b/scripts/ci/amd/amd_ci_exec.sh index 2deb9c9a0..e5c37fd34 100755 --- a/scripts/ci/amd/amd_ci_exec.sh +++ b/scripts/ci/amd/amd_ci_exec.sh @@ -17,7 +17,10 @@ WORKDIR="/sglang-checkout/test/srt" declare -A ENV_MAP=( [SGLANG_IS_IN_CI_AMD]=1 [SGLANG_IS_IN_CI]=1 - [SGLANG_ENABLE_ASYNC_ASSERT]=1 + # Disabled on AMD: the async-assert probes (#27461) fire torch._assert_async in + # the MXFP4 EAGLE-MTP decode path and abort the queue with an HSA hardware + # exception. + [SGLANG_ENABLE_ASYNC_ASSERT]=0 [SGLANG_USE_AITER]=1 )