[AMD] CI - add partitions for stage-b-test-small-1-gpu-amd (#17345)
This commit is contained in:
@@ -211,7 +211,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
runner: [linux-mi325-gpu-1]
|
runner: [linux-mi325-gpu-1]
|
||||||
part: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
|
part: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
|
||||||
runs-on: ${{matrix.runner}}
|
runs-on: ${{matrix.runner}}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
@@ -233,7 +233,7 @@ jobs:
|
|||||||
- name: Run test
|
- name: Run test
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh -w "/sglang-checkout/test" python3 run_suite.py --hw amd --suite stage-b-test-small-1-gpu-amd --auto-partition-id ${{ matrix.part }} --auto-partition-size 12 --timeout-per-file 1800
|
bash scripts/ci/amd_ci_exec.sh -w "/sglang-checkout/test" python3 run_suite.py --hw amd --suite stage-b-test-small-1-gpu-amd --auto-partition-id ${{ matrix.part }} --auto-partition-size 13 --timeout-per-file 1800
|
||||||
|
|
||||||
stage-b-test-small-1-gpu-amd-mi35x:
|
stage-b-test-small-1-gpu-amd-mi35x:
|
||||||
needs: [check-changes, stage-a-test-1-amd]
|
needs: [check-changes, stage-a-test-1-amd]
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ class TestDeepseekV32DP(CustomTestCase):
|
|||||||
"8",
|
"8",
|
||||||
"--enable-dp-attention",
|
"--enable-dp-attention",
|
||||||
"--model-loader-extra-config",
|
"--model-loader-extra-config",
|
||||||
'{"enable_multithread_load": true, "num_threads": 64}',
|
'{"enable_multithread_load": true}',
|
||||||
]
|
]
|
||||||
if is_in_amd_ci():
|
if is_in_amd_ci():
|
||||||
other_args += [
|
other_args += [
|
||||||
@@ -101,7 +101,7 @@ class TestDeepseekV32TP(CustomTestCase):
|
|||||||
"--tp",
|
"--tp",
|
||||||
"8",
|
"8",
|
||||||
"--model-loader-extra-config",
|
"--model-loader-extra-config",
|
||||||
'{"enable_multithread_load": true, "num_threads": 64}',
|
'{"enable_multithread_load": true}',
|
||||||
]
|
]
|
||||||
if is_in_amd_ci():
|
if is_in_amd_ci():
|
||||||
other_args += [
|
other_args += [
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ class TestDeepseekV32DPMTP(CustomTestCase):
|
|||||||
"--mem-frac",
|
"--mem-frac",
|
||||||
"0.7",
|
"0.7",
|
||||||
"--model-loader-extra-config",
|
"--model-loader-extra-config",
|
||||||
'{"enable_multithread_load": true, "num_threads": 64}',
|
'{"enable_multithread_load": true}',
|
||||||
]
|
]
|
||||||
if is_in_amd_ci():
|
if is_in_amd_ci():
|
||||||
other_args += [
|
other_args += [
|
||||||
@@ -137,7 +137,7 @@ class TestDeepseekV32TPMTP(CustomTestCase):
|
|||||||
"--mem-frac",
|
"--mem-frac",
|
||||||
"0.7",
|
"0.7",
|
||||||
"--model-loader-extra-config",
|
"--model-loader-extra-config",
|
||||||
'{"enable_multithread_load": true, "num_threads": 64}',
|
'{"enable_multithread_load": true}',
|
||||||
]
|
]
|
||||||
if is_in_amd_ci():
|
if is_in_amd_ci():
|
||||||
other_args += [
|
other_args += [
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ from sglang.test.test_utils import (
|
|||||||
|
|
||||||
# Sliding window attention with Triton backend (Gemma-3 model)
|
# Sliding window attention with Triton backend (Gemma-3 model)
|
||||||
register_cuda_ci(est_time=100, suite="stage-b-test-large-1-gpu")
|
register_cuda_ci(est_time=100, suite="stage-b-test-large-1-gpu")
|
||||||
register_amd_ci(est_time=100, suite="stage-b-test-small-1-gpu-amd")
|
register_amd_ci(est_time=200, suite="stage-b-test-small-1-gpu-amd")
|
||||||
|
|
||||||
|
|
||||||
class TestSlidingWindowAttentionTriton(CustomTestCase):
|
class TestSlidingWindowAttentionTriton(CustomTestCase):
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ from sglang.test.test_utils import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
register_cuda_ci(est_time=184, suite="stage-b-test-small-1-gpu")
|
register_cuda_ci(est_time=184, suite="stage-b-test-small-1-gpu")
|
||||||
register_amd_ci(est_time=149, suite="stage-b-test-small-1-gpu-amd")
|
register_amd_ci(est_time=200, suite="stage-b-test-small-1-gpu-amd")
|
||||||
|
|
||||||
|
|
||||||
class TestOpenAIServer(CustomTestCase):
|
class TestOpenAIServer(CustomTestCase):
|
||||||
|
|||||||
Reference in New Issue
Block a user