[AMD] CI - enable test case for amd ci : triton_attention_kernels , torch_compile_moe (#16559)

This commit is contained in:
YC Tseng
2026-01-12 00:06:31 -08:00
committed by GitHub
parent f44c63eef7
commit b1ee75ae7b
5 changed files with 28 additions and 16 deletions
+6 -1
View File
@@ -15,13 +15,18 @@
import multiprocessing as mp
import unittest
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.lora_utils import (
LORA_MODELS_QWEN3,
run_lora_multiple_batch_on_model_cases,
)
register_cuda_ci(est_time=97, suite="nightly-1-gpu", nightly=True)
register_amd_ci(
est_time=30,
suite="stage-b-test-small-1-gpu-amd",
disabled="see https://github.com/sgl-project/sglang/issues/13107",
)
from sglang.test.test_utils import CustomTestCase