[CI][AMD] Run the profiling suite without CUDA graphs on ROCm (#34452)

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: quitenode <quitenode@users.noreply.github.com>
This commit is contained in:
Michael
2026-08-20 09:41:28 +08:00
committed by GitHub
co-authored by Cursor Agent quitenode
parent c7478228dd
commit dc175b3ad2
@@ -19,7 +19,7 @@ import unittest
import requests
from sglang.srt.environ import envs
from sglang.srt.utils import kill_process_tree
from sglang.srt.utils import is_hip, kill_process_tree
from sglang.test.ci.ci_register import register_amd_ci, register_cuda_ci
from sglang.test.test_utils import (
DEFAULT_SMALL_MODEL_NAME_FOR_TEST,
@@ -51,10 +51,17 @@ class TestStartProfile(CustomTestCase):
envs.SGLANG_TORCH_PROFILER_DIR.set(OUTPUT_DIR)
cls.model = DEFAULT_SMALL_MODEL_NAME_FOR_TEST
cls.base_url = DEFAULT_URL_FOR_TEST
# ROCm's HIP runtime can deadlock inside hipGraphLaunch while a
# torch-profiler (rocprofiler-sdk) session is attached, wedging the
# scheduler in at::cuda::CUDAGraph::replay until the watchdog kills the
# server. These tests cover the /start_profile request surface rather
# than graph replay, so run them eagerly on HIP.
other_args = ["--disable-cuda-graph"] if is_hip() else []
cls.process = popen_launch_server(
cls.model,
cls.base_url,
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
other_args=other_args,
)
@classmethod