[AMD] register 3 tests to stage-b-test-1-gpu-large-amd (batch-6) (#28736)

This commit is contained in:
Michael
2026-06-19 15:45:16 -07:00
committed by GitHub
parent 13aab2fc06
commit 420004827c
3 changed files with 9 additions and 3 deletions
@@ -17,11 +17,12 @@ from sglang.srt.layers.attention.flashattention_backend import (
normal_decode_set_metadata,
)
from sglang.srt.mem_cache.swa_memory_pool import SWAKVPool
from sglang.test.ci.ci_register import register_cuda_ci
from sglang.test.ci.ci_register import register_amd_ci, register_cuda_ci
from sglang.test.test_utils import CustomTestCase
# Register this test for CUDA CI in base-b (fast attention/kernel tests)
register_cuda_ci(est_time=11, stage="base-b", runner_config="1-gpu-large")
register_amd_ci(est_time=17, suite="stage-b-test-1-gpu-large-amd")
def reference_normal_decode_set_metadata(
+5 -1
View File
@@ -23,7 +23,7 @@ import requests
import torch
from sglang.srt.utils import kill_process_tree
from sglang.test.ci.ci_register import register_cuda_ci
from sglang.test.ci.ci_register import register_amd_ci, register_cuda_ci
from sglang.test.runners import SRTRunner
from sglang.test.test_utils import (
DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
@@ -39,6 +39,10 @@ register_cuda_ci(
stage="base-b",
runner_config="1-gpu-large",
)
register_amd_ci(
est_time=730,
suite="stage-b-test-1-gpu-large-amd",
)
PROMPTS = [
"SGL is a",
@@ -8,10 +8,11 @@ from sglang.srt.layers.attention.trtllm_mha_backend import TRTLLMHAAttnBackend
from sglang.srt.mem_cache.base_swa_memory_pool import BaseSWAKVPool
from sglang.srt.mem_cache.swa_memory_pool import SWAKVPool
from sglang.srt.speculative.spec_info import SpeculativeAlgorithm
from sglang.test.ci.ci_register import register_cuda_ci
from sglang.test.ci.ci_register import register_amd_ci, register_cuda_ci
from sglang.test.test_utils import CustomTestCase
register_cuda_ci(est_time=5, stage="base-b", runner_config="1-gpu-large")
register_amd_ci(est_time=8, suite="stage-b-test-1-gpu-large-amd")
_RESOLVERS = (
("trtllm_mha", TRTLLMHAAttnBackend._resolve_swa_kv_pool, SWAKVPool),