Add nightly test multi gpu configs (#12721)
This commit is contained in:
@@ -18,6 +18,7 @@ jobs:
|
|||||||
nightly-test-eval-text-models:
|
nightly-test-eval-text-models:
|
||||||
if: github.repository == 'sgl-project/sglang'
|
if: github.repository == 'sgl-project/sglang'
|
||||||
runs-on: 2-gpu-runner
|
runs-on: 2-gpu-runner
|
||||||
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -35,6 +36,7 @@ jobs:
|
|||||||
nightly-test-perf-text-models:
|
nightly-test-perf-text-models:
|
||||||
if: github.repository == 'sgl-project/sglang'
|
if: github.repository == 'sgl-project/sglang'
|
||||||
runs-on: 2-gpu-runner
|
runs-on: 2-gpu-runner
|
||||||
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -63,6 +65,7 @@ jobs:
|
|||||||
nightly-test-eval-vlms:
|
nightly-test-eval-vlms:
|
||||||
if: github.repository == 'sgl-project/sglang'
|
if: github.repository == 'sgl-project/sglang'
|
||||||
runs-on: 2-gpu-runner
|
runs-on: 2-gpu-runner
|
||||||
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -80,6 +83,7 @@ jobs:
|
|||||||
nightly-test-perf-vlms:
|
nightly-test-perf-vlms:
|
||||||
if: github.repository == 'sgl-project/sglang'
|
if: github.repository == 'sgl-project/sglang'
|
||||||
runs-on: 2-gpu-runner
|
runs-on: 2-gpu-runner
|
||||||
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -108,6 +112,7 @@ jobs:
|
|||||||
nightly-test-1-gpu:
|
nightly-test-1-gpu:
|
||||||
if: github.repository == 'sgl-project/sglang'
|
if: github.repository == 'sgl-project/sglang'
|
||||||
runs-on: 1-gpu-runner
|
runs-on: 1-gpu-runner
|
||||||
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -125,6 +130,7 @@ jobs:
|
|||||||
nightly-test-4-gpu:
|
nightly-test-4-gpu:
|
||||||
if: github.repository == 'sgl-project/sglang'
|
if: github.repository == 'sgl-project/sglang'
|
||||||
runs-on: 4-gpu-h100
|
runs-on: 4-gpu-h100
|
||||||
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -142,6 +148,7 @@ jobs:
|
|||||||
nightly-test-8-gpu-h200:
|
nightly-test-8-gpu-h200:
|
||||||
if: github.repository == 'sgl-project/sglang'
|
if: github.repository == 'sgl-project/sglang'
|
||||||
runs-on: 8-gpu-h200
|
runs-on: 8-gpu-h200
|
||||||
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -159,6 +166,7 @@ jobs:
|
|||||||
nightly-test-8-gpu-h20:
|
nightly-test-8-gpu-h20:
|
||||||
if: github.repository == 'sgl-project/sglang'
|
if: github.repository == 'sgl-project/sglang'
|
||||||
runs-on: 8-gpu-h20
|
runs-on: 8-gpu-h20
|
||||||
|
continue-on-error: true
|
||||||
env:
|
env:
|
||||||
SGLANG_CI_RDMA_ALL_DEVICES: "mlx5_1,mlx5_2,mlx5_3,mlx5_4"
|
SGLANG_CI_RDMA_ALL_DEVICES: "mlx5_1,mlx5_2,mlx5_3,mlx5_4"
|
||||||
steps:
|
steps:
|
||||||
@@ -178,6 +186,7 @@ jobs:
|
|||||||
nightly-test-4-gpu-b200:
|
nightly-test-4-gpu-b200:
|
||||||
if: github.repository == 'sgl-project/sglang'
|
if: github.repository == 'sgl-project/sglang'
|
||||||
runs-on: 4-gpu-b200
|
runs-on: 4-gpu-b200
|
||||||
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
@@ -218,7 +218,10 @@ suites = {
|
|||||||
"nightly-4-gpu-b200": [
|
"nightly-4-gpu-b200": [
|
||||||
TestFile("test_fp4_moe.py", 300),
|
TestFile("test_fp4_moe.py", 300),
|
||||||
],
|
],
|
||||||
|
"nightly-4-gpu": [],
|
||||||
"nightly-8-gpu": [],
|
"nightly-8-gpu": [],
|
||||||
|
"nightly-8-gpu-h200": [],
|
||||||
|
"nightly-8-gpu-h20": [],
|
||||||
"__not_in_ci__": [
|
"__not_in_ci__": [
|
||||||
TestFile("ascend/test_ascend_w8a8_quantization.py"),
|
TestFile("ascend/test_ascend_w8a8_quantization.py"),
|
||||||
TestFile("cpu/test_comm.py"),
|
TestFile("cpu/test_comm.py"),
|
||||||
|
|||||||
Reference in New Issue
Block a user