Migrate performance, accuracy, and quantization tests to CI registry (#17177)
Co-authored-by: Kangyan-Zhou <zky314343421@gmail.com>
This commit is contained in:
co-authored by
Kangyan-Zhou
parent
a3d9a21882
commit
8916b9d080
@@ -713,23 +713,23 @@ jobs:
|
|||||||
- name: Benchmark single latency
|
- name: Benchmark single latency
|
||||||
timeout-minutes: 20
|
timeout-minutes: 20
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_one_batch.TestBenchOneBatch.test_bs1_small
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_one_batch_1gpu.TestBenchOneBatch1GPU.test_bs1_small
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_one_batch.TestBenchOneBatch.test_bs1_default
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_one_batch_1gpu.TestBenchOneBatch1GPU.test_bs1_default
|
||||||
|
|
||||||
- name: Benchmark online latency
|
- name: Benchmark online latency
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_serving.TestBenchServing.test_online_latency_default
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_serving_1gpu_part1.TestBenchServing1GPUPart1.test_online_latency_default
|
||||||
|
|
||||||
- name: Benchmark offline throughput
|
- name: Benchmark offline throughput
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_serving.TestBenchServing.test_offline_throughput_default
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_serving_1gpu_part1.TestBenchServing1GPUPart1.test_offline_throughput_default
|
||||||
|
|
||||||
- name: Benchmark offline throughput (Non-streaming, small batch size)
|
- name: Benchmark offline throughput (Non-streaming, small batch size)
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_serving.TestBenchServing.test_offline_throughput_non_stream_small_batch_size
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_serving_1gpu_part1.TestBenchServing1GPUPart1.test_offline_throughput_non_stream_small_batch_size
|
||||||
|
|
||||||
performance-test-1-gpu-part-2-amd:
|
performance-test-1-gpu-part-2-amd:
|
||||||
needs: [check-changes, stage-a-test-1-amd]
|
needs: [check-changes, stage-a-test-1-amd]
|
||||||
@@ -768,17 +768,17 @@ jobs:
|
|||||||
- name: Benchmark offline throughput (w/o RadixAttention)
|
- name: Benchmark offline throughput (w/o RadixAttention)
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_serving.TestBenchServing.test_offline_throughput_without_radix_cache
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_serving_1gpu_part1.TestBenchServing1GPUPart1.test_offline_throughput_without_radix_cache
|
||||||
|
|
||||||
- name: Benchmark offline throughput (w/ Triton)
|
- name: Benchmark offline throughput (w/ Triton)
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_serving.TestBenchServing.test_offline_throughput_with_triton_attention_backend
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_serving_1gpu_part1.TestBenchServing1GPUPart1.test_offline_throughput_with_triton_attention_backend
|
||||||
|
|
||||||
- name: Benchmark offline throughput (w/ FP8)
|
- name: Benchmark offline throughput (w/ FP8)
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_serving.TestBenchServing.test_offline_throughput_default_fp8
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_serving_1gpu_large.TestBenchServing1GPULarge.test_offline_throughput_default_fp8
|
||||||
|
|
||||||
performance-test-2-gpu-amd:
|
performance-test-2-gpu-amd:
|
||||||
needs: [check-changes, stage-a-test-1-amd]
|
needs: [check-changes, stage-a-test-1-amd]
|
||||||
@@ -822,32 +822,32 @@ jobs:
|
|||||||
- name: Benchmark single latency (TP=2)
|
- name: Benchmark single latency (TP=2)
|
||||||
timeout-minutes: 25
|
timeout-minutes: 25
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_one_batch.TestBenchOneBatch.test_moe_tp2_bs1
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_one_batch_2gpu.TestBenchOneBatch2GPU.test_moe_tp2_bs1
|
||||||
|
|
||||||
- name: Benchmark single latency + torch.compile (TP=2)
|
- name: Benchmark single latency + torch.compile (TP=2)
|
||||||
timeout-minutes: 25
|
timeout-minutes: 25
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_one_batch.TestBenchOneBatch.test_torch_compile_tp2_bs1
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_one_batch_2gpu.TestBenchOneBatch2GPU.test_torch_compile_tp2_bs1
|
||||||
|
|
||||||
- name: Benchmark offline throughput (TP=2)
|
- name: Benchmark offline throughput (TP=2)
|
||||||
timeout-minutes: 25
|
timeout-minutes: 25
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_serving.TestBenchServing.test_moe_offline_throughput_default
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_serving_2gpu.TestBenchServing2GPU.test_moe_offline_throughput_default
|
||||||
|
|
||||||
- name: Benchmark offline throughput (w/o RadixAttention) (TP=2)
|
- name: Benchmark offline throughput (w/o RadixAttention) (TP=2)
|
||||||
timeout-minutes: 25
|
timeout-minutes: 25
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_serving.TestBenchServing.test_moe_offline_throughput_without_radix_cache
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_serving_2gpu.TestBenchServing2GPU.test_moe_offline_throughput_without_radix_cache
|
||||||
|
|
||||||
- name: Benchmark offline PP decode throughput (PP=2)
|
- name: Benchmark offline PP decode throughput (PP=2)
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_serving.TestBenchServing.test_pp_offline_throughput_default_decode
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_serving_2gpu.TestBenchServing2GPU.test_pp_offline_throughput_default_decode
|
||||||
|
|
||||||
- name: Benchmark offline PP prefill throughput (PP=2)
|
- name: Benchmark offline PP prefill throughput (PP=2)
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh python3 -m unittest test_bench_serving.TestBenchServing.test_pp_long_context_prefill
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/perf python3 -m unittest test_bench_serving_2gpu.TestBenchServing2GPU.test_pp_long_context_prefill
|
||||||
|
|
||||||
accuracy-test-1-gpu-amd:
|
accuracy-test-1-gpu-amd:
|
||||||
needs: [check-changes, stage-a-test-1-amd]
|
needs: [check-changes, stage-a-test-1-amd]
|
||||||
@@ -886,7 +886,7 @@ jobs:
|
|||||||
- name: Evaluate Accuracy
|
- name: Evaluate Accuracy
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh -e SGLANG_USE_AITER=0 python3 test_eval_accuracy_large.py
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/eval -e SGLANG_USE_AITER=0 python3 test_eval_accuracy_large.py
|
||||||
|
|
||||||
accuracy-test-2-gpu-amd:
|
accuracy-test-2-gpu-amd:
|
||||||
needs: [check-changes, accuracy-test-1-gpu-amd]
|
needs: [check-changes, accuracy-test-1-gpu-amd]
|
||||||
@@ -926,7 +926,7 @@ jobs:
|
|||||||
- name: Evaluate accuracy (TP=2)
|
- name: Evaluate accuracy (TP=2)
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
run: |
|
run: |
|
||||||
bash scripts/ci/amd_ci_exec.sh -e SGLANG_USE_AITER_AR=0 -e SGLANG_USE_AITER=0 -e HF_HUB_ENABLE_HF_TRANSFER=0 python3 test_moe_eval_accuracy_large.py
|
bash scripts/ci/amd_ci_exec.sh -w /sglang-checkout/test/registered/eval -e SGLANG_USE_AITER_AR=0 -e SGLANG_USE_AITER=0 -e HF_HUB_ENABLE_HF_TRANSFER=0 python3 test_moe_eval_accuracy_large.py
|
||||||
|
|
||||||
pr-test-amd-finish:
|
pr-test-amd-finish:
|
||||||
needs:
|
needs:
|
||||||
|
|||||||
+269
-403
@@ -186,6 +186,7 @@ jobs:
|
|||||||
needs: [check-changes, call-gate]
|
needs: [check-changes, call-gate]
|
||||||
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
runs-on: x64-kernel-build-node
|
runs-on: x64-kernel-build-node
|
||||||
|
timeout-minutes: 60
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
@@ -233,6 +234,7 @@ jobs:
|
|||||||
needs: [check-changes, call-gate]
|
needs: [check-changes, call-gate]
|
||||||
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
runs-on: arm-kernel-build-node
|
runs-on: arm-kernel-build-node
|
||||||
|
timeout-minutes: 60
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
@@ -283,6 +285,7 @@ jobs:
|
|||||||
!inputs.target_stage &&
|
!inputs.target_stage &&
|
||||||
needs.check-changes.outputs.sgl_kernel == 'true'
|
needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
runs-on: 1-gpu-runner
|
runs-on: 1-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 1-gpu-runner
|
RUNNER_LABELS: 1-gpu-runner
|
||||||
steps:
|
steps:
|
||||||
@@ -319,6 +322,7 @@ jobs:
|
|||||||
!inputs.target_stage &&
|
!inputs.target_stage &&
|
||||||
needs.check-changes.outputs.sgl_kernel == 'true'
|
needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
runs-on: 1-gpu-runner
|
runs-on: 1-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 1-gpu-runner
|
RUNNER_LABELS: 1-gpu-runner
|
||||||
steps:
|
steps:
|
||||||
@@ -355,6 +359,7 @@ jobs:
|
|||||||
!inputs.target_stage &&
|
!inputs.target_stage &&
|
||||||
needs.check-changes.outputs.sgl_kernel == 'true'
|
needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
runs-on: 1-gpu-runner
|
runs-on: 1-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
RUNNER_LABELS: 1-gpu-runner
|
RUNNER_LABELS: 1-gpu-runner
|
||||||
@@ -404,6 +409,7 @@ jobs:
|
|||||||
!inputs.target_stage &&
|
!inputs.target_stage &&
|
||||||
needs.check-changes.outputs.sgl_kernel == 'true'
|
needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
runs-on: ${{ needs.check-changes.outputs.b200_runner }}
|
runs-on: ${{ needs.check-changes.outputs.b200_runner }}
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: ${{ needs.check-changes.outputs.b200_runner }}
|
RUNNER_LABELS: ${{ needs.check-changes.outputs.b200_runner }}
|
||||||
steps:
|
steps:
|
||||||
@@ -473,6 +479,7 @@ jobs:
|
|||||||
!inputs.target_stage &&
|
!inputs.target_stage &&
|
||||||
needs.check-changes.outputs.jit_kernel == 'true'
|
needs.check-changes.outputs.jit_kernel == 'true'
|
||||||
runs-on: 1-gpu-runner
|
runs-on: 1-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 1-gpu-runner
|
RUNNER_LABELS: 1-gpu-runner
|
||||||
steps:
|
steps:
|
||||||
@@ -506,6 +513,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 1-gpu-runner
|
runs-on: 1-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 1-gpu-runner
|
RUNNER_LABELS: 1-gpu-runner
|
||||||
steps:
|
steps:
|
||||||
@@ -552,6 +560,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
- name: Free disk space
|
- name: Free disk space
|
||||||
run: |
|
run: |
|
||||||
@@ -597,6 +606,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 1-gpu-5090
|
runs-on: 1-gpu-5090
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 1-gpu-5090
|
RUNNER_LABELS: 1-gpu-5090
|
||||||
IS_BLACKWELL: "1"
|
IS_BLACKWELL: "1"
|
||||||
@@ -650,6 +660,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 1-gpu-runner
|
runs-on: 1-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 1-gpu-runner
|
RUNNER_LABELS: 1-gpu-runner
|
||||||
strategy:
|
strategy:
|
||||||
@@ -699,6 +710,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 2-gpu-runner
|
runs-on: 2-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 2-gpu-runner
|
RUNNER_LABELS: 2-gpu-runner
|
||||||
strategy:
|
strategy:
|
||||||
@@ -734,6 +746,247 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
python3 run_suite.py --hw cuda --suite stage-b-test-large-2-gpu --auto-partition-id ${{ matrix.partition }} --auto-partition-size 2 $CONTINUE_ON_ERROR_FLAG
|
python3 run_suite.py --hw cuda --suite stage-b-test-large-2-gpu --auto-partition-id ${{ matrix.partition }} --auto-partition-size 2 $CONTINUE_ON_ERROR_FLAG
|
||||||
|
|
||||||
|
stage-b-test-small-1-gpu-performance:
|
||||||
|
needs: [check-changes, call-gate, stage-a-test-1, sgl-kernel-build-wheels]
|
||||||
|
if: |
|
||||||
|
always() &&
|
||||||
|
(
|
||||||
|
(inputs.target_stage == 'stage-b-test-small-1-gpu-performance') ||
|
||||||
|
(
|
||||||
|
!inputs.target_stage &&
|
||||||
|
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
||||||
|
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
runs-on: 1-gpu-5090
|
||||||
|
timeout-minutes: 60
|
||||||
|
env:
|
||||||
|
RUNNER_LABELS: 1-gpu-5090
|
||||||
|
IS_BLACKWELL: "1"
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
||||||
|
|
||||||
|
- name: Download artifacts
|
||||||
|
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: sgl-kernel/dist/
|
||||||
|
merge-multiple: true
|
||||||
|
pattern: wheel-python3.10-cuda12.9
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
timeout-minutes: 10
|
||||||
|
run: |
|
||||||
|
source /etc/profile.d/sglang-ci.sh
|
||||||
|
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
||||||
|
|
||||||
|
- name: Run test
|
||||||
|
timeout-minutes: 30
|
||||||
|
run: |
|
||||||
|
source /etc/profile.d/sglang-ci.sh
|
||||||
|
cd test/
|
||||||
|
CONTINUE_ON_ERROR_FLAG=""
|
||||||
|
if [[ "${{ needs.check-changes.outputs.continue_on_error }}" == "true" ]]; then
|
||||||
|
CONTINUE_ON_ERROR_FLAG="--continue-on-error"
|
||||||
|
fi
|
||||||
|
python3 run_suite.py --hw cuda --suite stage-b-test-small-1-gpu-performance $CONTINUE_ON_ERROR_FLAG
|
||||||
|
|
||||||
|
stage-b-test-large-1-gpu-performance:
|
||||||
|
needs: [check-changes, call-gate, stage-a-test-1, sgl-kernel-build-wheels]
|
||||||
|
if: |
|
||||||
|
always() &&
|
||||||
|
(
|
||||||
|
(inputs.target_stage == 'stage-b-test-large-1-gpu-performance') ||
|
||||||
|
(
|
||||||
|
!inputs.target_stage &&
|
||||||
|
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
||||||
|
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
runs-on: 1-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
|
env:
|
||||||
|
RUNNER_LABELS: 1-gpu-runner
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
partition: [0, 1]
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
||||||
|
|
||||||
|
- name: Download artifacts
|
||||||
|
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: sgl-kernel/dist/
|
||||||
|
merge-multiple: true
|
||||||
|
pattern: wheel-python3.10-cuda12.9
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
timeout-minutes: 10
|
||||||
|
run: |
|
||||||
|
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
||||||
|
|
||||||
|
- name: Run test
|
||||||
|
timeout-minutes: 40
|
||||||
|
run: |
|
||||||
|
cd test/
|
||||||
|
CONTINUE_ON_ERROR_FLAG=""
|
||||||
|
if [[ "${{ needs.check-changes.outputs.continue_on_error }}" == "true" ]]; then
|
||||||
|
CONTINUE_ON_ERROR_FLAG="--continue-on-error"
|
||||||
|
fi
|
||||||
|
python3 run_suite.py --hw cuda --suite stage-b-test-large-1-gpu-performance --auto-partition-id ${{ matrix.partition }} --auto-partition-size 2 --timeout-per-file 1800 $CONTINUE_ON_ERROR_FLAG
|
||||||
|
|
||||||
|
stage-b-test-large-2-gpu-performance:
|
||||||
|
needs: [check-changes, call-gate, stage-a-test-1, sgl-kernel-build-wheels]
|
||||||
|
if: |
|
||||||
|
always() &&
|
||||||
|
(
|
||||||
|
(inputs.target_stage == 'stage-b-test-large-2-gpu-performance') ||
|
||||||
|
(
|
||||||
|
!inputs.target_stage &&
|
||||||
|
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
||||||
|
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
runs-on: 2-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
|
env:
|
||||||
|
RUNNER_LABELS: 2-gpu-runner
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
||||||
|
|
||||||
|
- name: Download artifacts
|
||||||
|
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: sgl-kernel/dist/
|
||||||
|
merge-multiple: true
|
||||||
|
pattern: wheel-python3.10-cuda12.9
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
timeout-minutes: 10
|
||||||
|
run: |
|
||||||
|
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
||||||
|
|
||||||
|
- name: Run test
|
||||||
|
timeout-minutes: 30
|
||||||
|
run: |
|
||||||
|
cd test/
|
||||||
|
CONTINUE_ON_ERROR_FLAG=""
|
||||||
|
if [[ "${{ needs.check-changes.outputs.continue_on_error }}" == "true" ]]; then
|
||||||
|
CONTINUE_ON_ERROR_FLAG="--continue-on-error"
|
||||||
|
fi
|
||||||
|
python3 run_suite.py --hw cuda --suite stage-b-test-large-2-gpu-performance $CONTINUE_ON_ERROR_FLAG
|
||||||
|
|
||||||
|
stage-b-test-small-1-gpu-accuracy:
|
||||||
|
needs: [check-changes, call-gate, stage-a-test-1, sgl-kernel-build-wheels]
|
||||||
|
if: |
|
||||||
|
always() &&
|
||||||
|
(
|
||||||
|
(inputs.target_stage == 'stage-b-test-small-1-gpu-accuracy') ||
|
||||||
|
(
|
||||||
|
!inputs.target_stage &&
|
||||||
|
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
||||||
|
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
runs-on: 1-gpu-5090
|
||||||
|
timeout-minutes: 60
|
||||||
|
env:
|
||||||
|
RUNNER_LABELS: 1-gpu-5090
|
||||||
|
IS_BLACKWELL: "1"
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
||||||
|
|
||||||
|
- name: Download artifacts
|
||||||
|
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: sgl-kernel/dist/
|
||||||
|
merge-multiple: true
|
||||||
|
pattern: wheel-python3.10-cuda12.9
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
timeout-minutes: 10
|
||||||
|
run: |
|
||||||
|
source /etc/profile.d/sglang-ci.sh
|
||||||
|
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
||||||
|
git clone https://github.com/merrymercy/human-eval.git
|
||||||
|
cd human-eval
|
||||||
|
pip install -e .
|
||||||
|
|
||||||
|
- name: Run test
|
||||||
|
timeout-minutes: 25
|
||||||
|
run: |
|
||||||
|
source /etc/profile.d/sglang-ci.sh
|
||||||
|
cd test/
|
||||||
|
CONTINUE_ON_ERROR_FLAG=""
|
||||||
|
if [[ "${{ needs.check-changes.outputs.continue_on_error }}" == "true" ]]; then
|
||||||
|
CONTINUE_ON_ERROR_FLAG="--continue-on-error"
|
||||||
|
fi
|
||||||
|
python3 run_suite.py --hw cuda --suite stage-b-test-small-1-gpu-accuracy $CONTINUE_ON_ERROR_FLAG
|
||||||
|
|
||||||
|
stage-b-test-large-2-gpu-accuracy:
|
||||||
|
needs: [check-changes, call-gate, stage-a-test-1, sgl-kernel-build-wheels]
|
||||||
|
if: |
|
||||||
|
always() &&
|
||||||
|
(
|
||||||
|
(inputs.target_stage == 'stage-b-test-large-2-gpu-accuracy') ||
|
||||||
|
(
|
||||||
|
!inputs.target_stage &&
|
||||||
|
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
||||||
|
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
runs-on: 2-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
|
env:
|
||||||
|
RUNNER_LABELS: 2-gpu-runner
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
||||||
|
|
||||||
|
- name: Download artifacts
|
||||||
|
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: sgl-kernel/dist/
|
||||||
|
merge-multiple: true
|
||||||
|
pattern: wheel-python3.10-cuda12.9
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
timeout-minutes: 10
|
||||||
|
run: |
|
||||||
|
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
||||||
|
git clone https://github.com/merrymercy/human-eval.git
|
||||||
|
cd human-eval
|
||||||
|
pip install -e .
|
||||||
|
|
||||||
|
- name: Run test
|
||||||
|
timeout-minutes: 25
|
||||||
|
run: |
|
||||||
|
cd test/
|
||||||
|
CONTINUE_ON_ERROR_FLAG=""
|
||||||
|
if [[ "${{ needs.check-changes.outputs.continue_on_error }}" == "true" ]]; then
|
||||||
|
CONTINUE_ON_ERROR_FLAG="--continue-on-error"
|
||||||
|
fi
|
||||||
|
python3 run_suite.py --hw cuda --suite stage-b-test-large-2-gpu-accuracy $CONTINUE_ON_ERROR_FLAG
|
||||||
|
|
||||||
stage-b-test-4-gpu-b200:
|
stage-b-test-4-gpu-b200:
|
||||||
needs: [check-changes, call-gate, stage-a-test-1, sgl-kernel-build-wheels]
|
needs: [check-changes, call-gate, stage-a-test-1, sgl-kernel-build-wheels]
|
||||||
if: |
|
if: |
|
||||||
@@ -747,6 +1000,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: ${{ needs.check-changes.outputs.b200_runner }}
|
runs-on: ${{ needs.check-changes.outputs.b200_runner }}
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: ${{ needs.check-changes.outputs.b200_runner }}
|
RUNNER_LABELS: ${{ needs.check-changes.outputs.b200_runner }}
|
||||||
strategy:
|
strategy:
|
||||||
@@ -794,6 +1048,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 4-gpu-h100
|
runs-on: 4-gpu-h100
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 4-gpu-h100
|
RUNNER_LABELS: 4-gpu-h100
|
||||||
steps:
|
steps:
|
||||||
@@ -838,6 +1093,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: ${{ needs.check-changes.outputs.b200_runner }}
|
runs-on: ${{ needs.check-changes.outputs.b200_runner }}
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: ${{ needs.check-changes.outputs.b200_runner }}
|
RUNNER_LABELS: ${{ needs.check-changes.outputs.b200_runner }}
|
||||||
steps:
|
steps:
|
||||||
@@ -878,6 +1134,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 1-gpu-runner
|
runs-on: 1-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
@@ -928,6 +1185,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 2-gpu-runner
|
runs-on: 2-gpu-runner
|
||||||
|
timeout-minutes: 60
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
@@ -965,52 +1223,6 @@ jobs:
|
|||||||
--total-partitions 2 \
|
--total-partitions 2 \
|
||||||
$CONTINUE_ON_ERROR_FLAG
|
$CONTINUE_ON_ERROR_FLAG
|
||||||
|
|
||||||
quantization-test:
|
|
||||||
needs: [check-changes, call-gate, stage-a-test-1]
|
|
||||||
if: |
|
|
||||||
always() &&
|
|
||||||
(
|
|
||||||
(inputs.target_stage == 'quantization-test') ||
|
|
||||||
(
|
|
||||||
!inputs.target_stage &&
|
|
||||||
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
|
||||||
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
runs-on: 1-gpu-runner
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
|
||||||
|
|
||||||
- name: Download artifacts
|
|
||||||
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: sgl-kernel/dist/
|
|
||||||
merge-multiple: true
|
|
||||||
pattern: wheel-python3.10-cuda12.9
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
|
||||||
|
|
||||||
- name: Run test
|
|
||||||
timeout-minutes: 30
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
RETRY_FLAG=""
|
|
||||||
if [[ "${{ needs.check-changes.outputs.enable_retry }}" == "true" ]]; then
|
|
||||||
RETRY_FLAG="--enable-retry"
|
|
||||||
fi
|
|
||||||
CONTINUE_ON_ERROR_FLAG=""
|
|
||||||
if [[ "${{ needs.check-changes.outputs.continue_on_error }}" == "true" ]]; then
|
|
||||||
CONTINUE_ON_ERROR_FLAG="--continue-on-error"
|
|
||||||
fi
|
|
||||||
python3 run_suite.py --suite quantization_test $RETRY_FLAG $CONTINUE_ON_ERROR_FLAG
|
|
||||||
|
|
||||||
unit-test-backend-4-gpu:
|
unit-test-backend-4-gpu:
|
||||||
needs: [check-changes, call-gate, stage-b-test-small-1-gpu, stage-b-test-large-1-gpu, stage-b-test-large-2-gpu, stage-b-test-4-gpu-b200]
|
needs: [check-changes, call-gate, stage-b-test-small-1-gpu, stage-b-test-large-1-gpu, stage-b-test-large-2-gpu, stage-b-test-4-gpu-b200]
|
||||||
if: |
|
if: |
|
||||||
@@ -1024,6 +1236,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 4-gpu-h100
|
runs-on: 4-gpu-h100
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 4-gpu-h100
|
RUNNER_LABELS: 4-gpu-h100
|
||||||
strategy:
|
strategy:
|
||||||
@@ -1076,6 +1289,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 8-gpu-h200
|
runs-on: 8-gpu-h200
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 8-gpu-h200
|
RUNNER_LABELS: 8-gpu-h200
|
||||||
strategy:
|
strategy:
|
||||||
@@ -1134,6 +1348,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 8-gpu-h20
|
runs-on: 8-gpu-h20
|
||||||
|
timeout-minutes: 60
|
||||||
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"
|
||||||
RUNNER_LABELS: 8-gpu-h20
|
RUNNER_LABELS: 8-gpu-h20
|
||||||
@@ -1174,356 +1389,6 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
python3 run_suite.py --suite per-commit-8-gpu-h20 --auto-partition-id ${{ matrix.part }} --auto-partition-size 2 $RETRY_FLAG $CONTINUE_ON_ERROR_FLAG
|
python3 run_suite.py --suite per-commit-8-gpu-h20 --auto-partition-id ${{ matrix.part }} --auto-partition-size 2 $RETRY_FLAG $CONTINUE_ON_ERROR_FLAG
|
||||||
|
|
||||||
performance-test-1-gpu-part-1:
|
|
||||||
needs: [check-changes, call-gate, stage-a-test-1]
|
|
||||||
if: |
|
|
||||||
always() &&
|
|
||||||
(
|
|
||||||
(inputs.target_stage == 'performance-test-1-gpu-part-1') ||
|
|
||||||
(
|
|
||||||
!inputs.target_stage &&
|
|
||||||
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
|
||||||
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
runs-on: 1-gpu-runner
|
|
||||||
env:
|
|
||||||
RUNNER_LABELS: 1-gpu-runner
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
|
||||||
|
|
||||||
- name: Download artifacts
|
|
||||||
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: sgl-kernel/dist/
|
|
||||||
merge-multiple: true
|
|
||||||
pattern: wheel-python3.10-cuda12.9
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
|
||||||
|
|
||||||
- name: Benchmark single latency
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_one_batch.TestBenchOneBatch.test_bs1_small
|
|
||||||
python3 -m unittest test_bench_one_batch.TestBenchOneBatch.test_bs1_default
|
|
||||||
|
|
||||||
- name: Benchmark online latency
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_online_latency_default
|
|
||||||
|
|
||||||
- name: Benchmark offline throughput
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_offline_throughput_default
|
|
||||||
|
|
||||||
- name: Benchmark offline throughput (Non-streaming, small batch size)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_offline_throughput_non_stream_small_batch_size
|
|
||||||
|
|
||||||
- name: Benchmark online latency (EAGLE)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_online_latency_eagle
|
|
||||||
|
|
||||||
- name: Benchmark online latency (LoRA)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_lora_online_latency
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_lora_online_latency_with_concurrent_adapter_updates
|
|
||||||
|
|
||||||
performance-test-1-gpu-part-2:
|
|
||||||
needs: [check-changes, call-gate, stage-a-test-1]
|
|
||||||
if: |
|
|
||||||
always() &&
|
|
||||||
(
|
|
||||||
(inputs.target_stage == 'performance-test-1-gpu-part-2') ||
|
|
||||||
(
|
|
||||||
!inputs.target_stage &&
|
|
||||||
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
|
||||||
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
runs-on: 1-gpu-runner
|
|
||||||
env:
|
|
||||||
RUNNER_LABELS: 1-gpu-runner
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
|
||||||
|
|
||||||
- name: Download artifacts
|
|
||||||
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: sgl-kernel/dist/
|
|
||||||
merge-multiple: true
|
|
||||||
pattern: wheel-python3.10-cuda12.9
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
|
||||||
|
|
||||||
- name: Benchmark offline throughput (w/o RadixAttention)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_offline_throughput_without_radix_cache
|
|
||||||
|
|
||||||
- name: Benchmark offline throughput (w/ Triton)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_offline_throughput_with_triton_attention_backend
|
|
||||||
|
|
||||||
- name: Benchmark offline throughput (w/ FP8)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_offline_throughput_default_fp8
|
|
||||||
|
|
||||||
- name: Benchmark VLM offline throughput
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_vlm_offline_throughput
|
|
||||||
|
|
||||||
- name: Benchmark VLM online latency
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_vlm_online_latency
|
|
||||||
|
|
||||||
performance-test-1-gpu-part-3:
|
|
||||||
needs: [check-changes, call-gate, stage-a-test-1]
|
|
||||||
if: |
|
|
||||||
always() &&
|
|
||||||
(
|
|
||||||
(inputs.target_stage == 'performance-test-1-gpu-part-3') ||
|
|
||||||
(
|
|
||||||
!inputs.target_stage &&
|
|
||||||
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
|
||||||
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
runs-on: 1-gpu-runner
|
|
||||||
env:
|
|
||||||
RUNNER_LABELS: 1-gpu-runner
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
|
||||||
|
|
||||||
- name: Download artifacts
|
|
||||||
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: sgl-kernel/dist/
|
|
||||||
merge-multiple: true
|
|
||||||
pattern: wheel-python3.10-cuda12.9
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
|
||||||
|
|
||||||
- name: Benchmark Scores online latency and throughput
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_score_api_latency_throughput
|
|
||||||
|
|
||||||
- name: Benchmark Scores online latency and throughput (batch size scaling)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_score_api_batch_scaling
|
|
||||||
|
|
||||||
- name: Benchmark Embeddings online latency and throughput
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_embeddings_api_latency_throughput
|
|
||||||
|
|
||||||
- name: Benchmark Embeddings online latency and throughput (batch size scaling)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_embeddings_api_batch_scaling
|
|
||||||
|
|
||||||
performance-test-2-gpu:
|
|
||||||
needs: [check-changes, call-gate, stage-b-test-4-gpu-b200]
|
|
||||||
if: |
|
|
||||||
always() &&
|
|
||||||
(
|
|
||||||
(inputs.target_stage == 'performance-test-2-gpu') ||
|
|
||||||
(
|
|
||||||
!inputs.target_stage &&
|
|
||||||
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
|
||||||
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
runs-on: 2-gpu-runner
|
|
||||||
env:
|
|
||||||
RUNNER_LABELS: 2-gpu-runner
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
|
||||||
|
|
||||||
- name: Download artifacts
|
|
||||||
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: sgl-kernel/dist/
|
|
||||||
merge-multiple: true
|
|
||||||
pattern: wheel-python3.10-cuda12.9
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
|
||||||
|
|
||||||
- name: Benchmark single latency (TP=2)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_one_batch.TestBenchOneBatch.test_moe_tp2_bs1
|
|
||||||
|
|
||||||
- name: Benchmark single latency + torch.compile (TP=2)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_one_batch.TestBenchOneBatch.test_torch_compile_tp2_bs1
|
|
||||||
|
|
||||||
- name: Benchmark offline throughput (TP=2)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_moe_offline_throughput_default
|
|
||||||
|
|
||||||
- name: Benchmark offline throughput (w/o RadixAttention) (TP=2)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_moe_offline_throughput_without_radix_cache
|
|
||||||
|
|
||||||
- name: Benchmark offline PP decode throughput (PP=2)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_pp_offline_throughput_default_decode
|
|
||||||
|
|
||||||
- name: Benchmark offline PP prefill throughput (PP=2)
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m unittest test_bench_serving.TestBenchServing.test_pp_long_context_prefill
|
|
||||||
|
|
||||||
accuracy-test-1-gpu:
|
|
||||||
needs: [check-changes, call-gate, stage-a-test-1]
|
|
||||||
if: |
|
|
||||||
always() &&
|
|
||||||
(
|
|
||||||
(inputs.target_stage == 'accuracy-test-1-gpu') ||
|
|
||||||
(
|
|
||||||
!inputs.target_stage &&
|
|
||||||
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
|
||||||
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
runs-on: 1-gpu-runner
|
|
||||||
env:
|
|
||||||
RUNNER_LABELS: 1-gpu-runner
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
|
||||||
|
|
||||||
- name: Download artifacts
|
|
||||||
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: sgl-kernel/dist/
|
|
||||||
merge-multiple: true
|
|
||||||
pattern: wheel-python3.10-cuda12.9
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
|
||||||
git clone https://github.com/merrymercy/human-eval.git
|
|
||||||
cd human-eval
|
|
||||||
pip install -e .
|
|
||||||
|
|
||||||
- name: Evaluate accuracy
|
|
||||||
timeout-minutes: 25
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m sglang.test.ci.run_with_retry test_eval_accuracy_large.py
|
|
||||||
|
|
||||||
accuracy-test-2-gpu:
|
|
||||||
needs: [check-changes, call-gate, accuracy-test-1-gpu]
|
|
||||||
if: |
|
|
||||||
always() &&
|
|
||||||
(
|
|
||||||
(inputs.target_stage == 'accuracy-test-2-gpu') ||
|
|
||||||
(
|
|
||||||
!inputs.target_stage &&
|
|
||||||
(github.event_name == 'schedule' || (!failure() && !cancelled())) &&
|
|
||||||
((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true'))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
runs-on: 2-gpu-runner
|
|
||||||
env:
|
|
||||||
RUNNER_LABELS: 2-gpu-runner
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.pr_head_sha || inputs.ref || github.sha }}
|
|
||||||
|
|
||||||
- name: Download artifacts
|
|
||||||
if: needs.check-changes.outputs.sgl_kernel == 'true'
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: sgl-kernel/dist/
|
|
||||||
merge-multiple: true
|
|
||||||
pattern: wheel-python3.10-cuda12.9
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
timeout-minutes: 10
|
|
||||||
run: |
|
|
||||||
CUSTOM_BUILD_SGL_KERNEL=${{needs.check-changes.outputs.sgl_kernel}} bash scripts/ci/ci_install_dependency.sh
|
|
||||||
git clone https://github.com/merrymercy/human-eval.git
|
|
||||||
cd human-eval
|
|
||||||
pip install -e .
|
|
||||||
|
|
||||||
- name: Evaluate accuracy (TP=2)
|
|
||||||
timeout-minutes: 25
|
|
||||||
run: |
|
|
||||||
cd test/srt
|
|
||||||
python3 -m sglang.test.ci.run_with_retry test_moe_eval_accuracy_large.py
|
|
||||||
|
|
||||||
unit-test-deepep-4-gpu:
|
unit-test-deepep-4-gpu:
|
||||||
needs: [check-changes, call-gate, stage-b-test-small-1-gpu, stage-b-test-large-1-gpu, stage-b-test-large-2-gpu, stage-b-test-4-gpu-b200]
|
needs: [check-changes, call-gate, stage-b-test-small-1-gpu, stage-b-test-large-1-gpu, stage-b-test-large-2-gpu, stage-b-test-4-gpu-b200]
|
||||||
if: |
|
if: |
|
||||||
@@ -1537,6 +1402,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 4-gpu-h100
|
runs-on: 4-gpu-h100
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 4-gpu-h100
|
RUNNER_LABELS: 4-gpu-h100
|
||||||
steps:
|
steps:
|
||||||
@@ -1634,6 +1500,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: ${{ needs.check-changes.outputs.b200_runner }}
|
runs-on: ${{ needs.check-changes.outputs.b200_runner }}
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: ${{ needs.check-changes.outputs.b200_runner }}
|
RUNNER_LABELS: ${{ needs.check-changes.outputs.b200_runner }}
|
||||||
strategy:
|
strategy:
|
||||||
@@ -1687,6 +1554,7 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
runs-on: 4-gpu-gb200
|
runs-on: 4-gpu-gb200
|
||||||
|
timeout-minutes: 60
|
||||||
env:
|
env:
|
||||||
RUNNER_LABELS: 4-gpu-gb200
|
RUNNER_LABELS: 4-gpu-gb200
|
||||||
strategy:
|
strategy:
|
||||||
@@ -1746,18 +1614,16 @@ jobs:
|
|||||||
stage-b-test-small-1-gpu,
|
stage-b-test-small-1-gpu,
|
||||||
stage-b-test-large-1-gpu,
|
stage-b-test-large-1-gpu,
|
||||||
stage-b-test-large-2-gpu,
|
stage-b-test-large-2-gpu,
|
||||||
|
stage-b-test-small-1-gpu-performance,
|
||||||
|
stage-b-test-large-1-gpu-performance,
|
||||||
|
stage-b-test-large-2-gpu-performance,
|
||||||
|
stage-b-test-small-1-gpu-accuracy,
|
||||||
|
stage-b-test-large-2-gpu-accuracy,
|
||||||
stage-c-test-large-4-gpu,
|
stage-c-test-large-4-gpu,
|
||||||
quantization-test,
|
|
||||||
stage-b-test-4-gpu-b200,
|
stage-b-test-4-gpu-b200,
|
||||||
unit-test-backend-4-gpu,
|
unit-test-backend-4-gpu,
|
||||||
unit-test-backend-8-gpu-h20,
|
unit-test-backend-8-gpu-h20,
|
||||||
unit-test-backend-8-gpu-h200,
|
unit-test-backend-8-gpu-h200,
|
||||||
performance-test-1-gpu-part-1,
|
|
||||||
performance-test-1-gpu-part-2,
|
|
||||||
performance-test-1-gpu-part-3,
|
|
||||||
performance-test-2-gpu,
|
|
||||||
accuracy-test-1-gpu,
|
|
||||||
accuracy-test-2-gpu,
|
|
||||||
unit-test-deepep-4-gpu,
|
unit-test-deepep-4-gpu,
|
||||||
# unit-test-deepep-8-gpu, # Disabled, see #17175
|
# unit-test-deepep-8-gpu, # Disabled, see #17175
|
||||||
unit-test-backend-4-gpu-b200,
|
unit-test-backend-4-gpu-b200,
|
||||||
|
|||||||
+3
@@ -7,6 +7,7 @@ import unittest
|
|||||||
from types import SimpleNamespace
|
from types import SimpleNamespace
|
||||||
|
|
||||||
from sglang.srt.utils import kill_process_tree
|
from sglang.srt.utils import kill_process_tree
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.run_eval import run_eval
|
from sglang.test.run_eval import run_eval
|
||||||
from sglang.test.test_utils import (
|
from sglang.test.test_utils import (
|
||||||
DEFAULT_MODEL_NAME_FOR_TEST,
|
DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
@@ -18,6 +19,8 @@ from sglang.test.test_utils import (
|
|||||||
write_github_step_summary,
|
write_github_step_summary,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=300, suite="stage-b-test-small-1-gpu-accuracy")
|
||||||
|
|
||||||
|
|
||||||
class TestEvalAccuracyLarge(CustomTestCase):
|
class TestEvalAccuracyLarge(CustomTestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
+3
@@ -7,6 +7,7 @@ import unittest
|
|||||||
from types import SimpleNamespace
|
from types import SimpleNamespace
|
||||||
|
|
||||||
from sglang.srt.utils import kill_process_tree
|
from sglang.srt.utils import kill_process_tree
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.run_eval import run_eval
|
from sglang.test.run_eval import run_eval
|
||||||
from sglang.test.test_utils import (
|
from sglang.test.test_utils import (
|
||||||
DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
||||||
@@ -18,6 +19,8 @@ from sglang.test.test_utils import (
|
|||||||
write_github_step_summary,
|
write_github_step_summary,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=500, suite="stage-b-test-large-2-gpu-accuracy")
|
||||||
|
|
||||||
|
|
||||||
class TestMoEEvalAccuracyLarge(CustomTestCase):
|
class TestMoEEvalAccuracyLarge(CustomTestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
import unittest
|
||||||
|
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
|
from sglang.test.test_utils import (
|
||||||
|
DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
|
DEFAULT_SMALL_MODEL_NAME_FOR_TEST,
|
||||||
|
CustomTestCase,
|
||||||
|
is_in_ci,
|
||||||
|
run_bench_offline_throughput,
|
||||||
|
run_bench_one_batch,
|
||||||
|
write_github_step_summary,
|
||||||
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=120, suite="stage-b-test-large-1-gpu-performance")
|
||||||
|
|
||||||
|
|
||||||
|
class TestBenchOneBatch1GPU(CustomTestCase):
|
||||||
|
|
||||||
|
def test_bs1_small(self):
|
||||||
|
_, output_throughput, _ = run_bench_one_batch(
|
||||||
|
DEFAULT_SMALL_MODEL_NAME_FOR_TEST, ["--cuda-graph-max-bs", "2"]
|
||||||
|
)
|
||||||
|
self.assertGreater(output_throughput, 50)
|
||||||
|
|
||||||
|
def test_bs1_default(self):
|
||||||
|
output_throughput = run_bench_offline_throughput(
|
||||||
|
DEFAULT_MODEL_NAME_FOR_TEST, ["--cuda-graph-max-bs", "2"]
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_bs1_default (llama-3.1-8b)\n"
|
||||||
|
f"output_throughput: {output_throughput:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
self.assertGreater(output_throughput, 135)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
+3
-23
@@ -1,40 +1,20 @@
|
|||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.test_utils import (
|
from sglang.test.test_utils import (
|
||||||
DEFAULT_MODEL_NAME_FOR_TEST,
|
DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
||||||
DEFAULT_SMALL_MODEL_NAME_FOR_TEST,
|
|
||||||
CustomTestCase,
|
CustomTestCase,
|
||||||
is_in_amd_ci,
|
is_in_amd_ci,
|
||||||
is_in_ci,
|
is_in_ci,
|
||||||
run_bench_offline_throughput,
|
run_bench_offline_throughput,
|
||||||
run_bench_one_batch,
|
|
||||||
write_github_step_summary,
|
write_github_step_summary,
|
||||||
)
|
)
|
||||||
|
|
||||||
# We use `run_bench_offline_throughput`` instead of `run_bench_one_batch` for most cases
|
register_cuda_ci(est_time=180, suite="stage-b-test-large-2-gpu-performance")
|
||||||
# because `run_bench_offline_throughput`` has overlap scheduler.
|
|
||||||
|
|
||||||
|
|
||||||
class TestBenchOneBatch(CustomTestCase):
|
class TestBenchOneBatch2GPU(CustomTestCase):
|
||||||
|
|
||||||
def test_bs1_small(self):
|
|
||||||
_, output_throughput, _ = run_bench_one_batch(
|
|
||||||
DEFAULT_SMALL_MODEL_NAME_FOR_TEST, ["--cuda-graph-max-bs", "2"]
|
|
||||||
)
|
|
||||||
self.assertGreater(output_throughput, 50)
|
|
||||||
|
|
||||||
def test_bs1_default(self):
|
|
||||||
output_throughput = run_bench_offline_throughput(
|
|
||||||
DEFAULT_MODEL_NAME_FOR_TEST, ["--cuda-graph-max-bs", "2"]
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_bs1_default (llama-3.1-8b)\n"
|
|
||||||
f"output_throughput: {output_throughput:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
self.assertGreater(output_throughput, 135)
|
|
||||||
|
|
||||||
def test_moe_tp2_bs1(self):
|
def test_moe_tp2_bs1(self):
|
||||||
output_throughput = run_bench_offline_throughput(
|
output_throughput = run_bench_offline_throughput(
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
"""
|
||||||
|
Performance tests for single GPU that need H200 (80GB) - FP8 and EAGLE tests.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
|
from sglang.test.test_utils import (
|
||||||
|
DEFAULT_DRAFT_MODEL_EAGLE,
|
||||||
|
DEFAULT_MODEL_NAME_FOR_TEST_FP8,
|
||||||
|
DEFAULT_TARGET_MODEL_EAGLE,
|
||||||
|
CustomTestCase,
|
||||||
|
is_in_amd_ci,
|
||||||
|
is_in_ci,
|
||||||
|
run_bench_serving,
|
||||||
|
write_github_step_summary,
|
||||||
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=300, suite="stage-b-test-large-1-gpu-performance")
|
||||||
|
|
||||||
|
|
||||||
|
class TestBenchServing1GPULarge(CustomTestCase):
|
||||||
|
def test_offline_throughput_default_fp8(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MODEL_NAME_FOR_TEST_FP8,
|
||||||
|
num_prompts=500,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
other_server_args=[],
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_offline_throughput_default_fp8\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertGreater(res["output_throughput"], 3500)
|
||||||
|
else:
|
||||||
|
self.assertGreater(res["output_throughput"], 4300)
|
||||||
|
|
||||||
|
def test_online_latency_eagle(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_TARGET_MODEL_EAGLE,
|
||||||
|
num_prompts=300,
|
||||||
|
request_rate=8,
|
||||||
|
sharegpt_context_len=3072,
|
||||||
|
disable_ignore_eos=True,
|
||||||
|
dataset_name="sharegpt",
|
||||||
|
other_server_args=[
|
||||||
|
"--speculative-algorithm",
|
||||||
|
"EAGLE",
|
||||||
|
"--speculative-draft-model-path",
|
||||||
|
DEFAULT_DRAFT_MODEL_EAGLE,
|
||||||
|
"--speculative-num-steps",
|
||||||
|
"5",
|
||||||
|
"--speculative-eagle-topk",
|
||||||
|
"4",
|
||||||
|
"--speculative-num-draft-tokens",
|
||||||
|
"16",
|
||||||
|
"--mem-fraction-static",
|
||||||
|
"0.7",
|
||||||
|
],
|
||||||
|
need_warmup=True,
|
||||||
|
seed=42,
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_online_latency_eagle\n"
|
||||||
|
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
||||||
|
f"accept_length: {res['accept_length']:.2f} \n"
|
||||||
|
)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertLess(res["median_e2e_latency_ms"], 1800)
|
||||||
|
else:
|
||||||
|
self.assertLess(res["median_e2e_latency_ms"], 900)
|
||||||
|
self.assertGreater(res["accept_length"], 3.0)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
@@ -0,0 +1,258 @@
|
|||||||
|
"""
|
||||||
|
Performance tests for single GPU - LLM throughput/latency and LoRA tests.
|
||||||
|
Works on 5090 (32GB).
|
||||||
|
"""
|
||||||
|
|
||||||
|
import asyncio
|
||||||
|
import itertools
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
import requests
|
||||||
|
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
|
from sglang.test.test_utils import (
|
||||||
|
DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
|
CustomTestCase,
|
||||||
|
is_in_amd_ci,
|
||||||
|
is_in_ci,
|
||||||
|
run_bench_serving,
|
||||||
|
write_github_step_summary,
|
||||||
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=1000, suite="stage-b-test-large-1-gpu-performance")
|
||||||
|
|
||||||
|
|
||||||
|
class TestBenchServing1GPUPart1(CustomTestCase):
|
||||||
|
def test_offline_throughput_default(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=500,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
other_server_args=[],
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_offline_throughput_default\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertGreater(res["output_throughput"], 3050)
|
||||||
|
else:
|
||||||
|
self.assertGreater(res["output_throughput"], 3800)
|
||||||
|
|
||||||
|
def test_offline_throughput_non_stream_small_batch_size(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=200,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
other_server_args=["--max-running-requests", "10"],
|
||||||
|
dataset_name="sharegpt",
|
||||||
|
random_input_len=None,
|
||||||
|
random_output_len=None,
|
||||||
|
disable_stream=True,
|
||||||
|
need_warmup=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_offline_throughput_non_stream_small_batch_size\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertGreater(res["output_throughput"], 1000)
|
||||||
|
else:
|
||||||
|
self.assertGreater(res["output_throughput"], 1050)
|
||||||
|
|
||||||
|
def test_offline_throughput_without_radix_cache(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=500,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
other_server_args=["--disable-radix-cache"],
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_offline_throughput_without_radix_cache\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertGreater(res["output_throughput"], 3050)
|
||||||
|
else:
|
||||||
|
self.assertGreater(res["output_throughput"], 3800)
|
||||||
|
|
||||||
|
def test_offline_throughput_without_chunked_prefill(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=500,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
other_server_args=["--chunked-prefill-size", "-1"],
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_offline_throughput_without_chunked_prefill\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
self.assertGreater(res["output_throughput"], 2600)
|
||||||
|
|
||||||
|
def test_offline_throughput_with_triton_attention_backend(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=500,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
other_server_args=[
|
||||||
|
"--attention-backend",
|
||||||
|
"triton",
|
||||||
|
"--context-length",
|
||||||
|
"8192",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_offline_throughput_with_triton_attention_backend\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertGreater(res["output_throughput"], 3500)
|
||||||
|
else:
|
||||||
|
self.assertGreater(res["output_throughput"], 3700)
|
||||||
|
|
||||||
|
def test_online_latency_default(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=100,
|
||||||
|
request_rate=1,
|
||||||
|
other_server_args=[],
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_online_latency_default\n"
|
||||||
|
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
||||||
|
)
|
||||||
|
self.assertLess(res["median_e2e_latency_ms"], 11000)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertLess(res["median_ttft_ms"], 115)
|
||||||
|
else:
|
||||||
|
self.assertLess(res["median_ttft_ms"], 86)
|
||||||
|
self.assertLess(res["median_itl_ms"], 10)
|
||||||
|
|
||||||
|
def test_lora_online_latency(self):
|
||||||
|
if is_in_amd_ci():
|
||||||
|
pass
|
||||||
|
|
||||||
|
res = self._run_lora_latency_test(enable_background_task=False)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_lora_online_latency\n"
|
||||||
|
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
||||||
|
f"median_ttft_ms: {res['median_ttft_ms']:.2f} ms\n"
|
||||||
|
)
|
||||||
|
self.assertLess(res["median_e2e_latency_ms"], 2400)
|
||||||
|
self.assertLess(res["median_ttft_ms"], 58)
|
||||||
|
|
||||||
|
def test_lora_online_latency_with_concurrent_adapter_updates(self):
|
||||||
|
if is_in_amd_ci():
|
||||||
|
pass
|
||||||
|
|
||||||
|
res = self._run_lora_latency_test(enable_background_task=True)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_lora_online_latency\n"
|
||||||
|
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
||||||
|
f"median_ttft_ms: {res['median_ttft_ms']:.2f} ms\n"
|
||||||
|
)
|
||||||
|
self.assertLess(res["median_e2e_latency_ms"], 4000)
|
||||||
|
self.assertLess(res["median_ttft_ms"], 80)
|
||||||
|
|
||||||
|
def _run_lora_latency_test(self, enable_background_task: bool):
|
||||||
|
"""
|
||||||
|
Run a latency test for LoRA with the specified background task setting.
|
||||||
|
"""
|
||||||
|
|
||||||
|
async def lora_loader_unloader_task(
|
||||||
|
base_url: str,
|
||||||
|
start_event: asyncio.Event,
|
||||||
|
stop_event: asyncio.Event,
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
A background task that repeatedly loads and unloads a LoRA adapter.
|
||||||
|
"""
|
||||||
|
await start_event.wait()
|
||||||
|
|
||||||
|
path_cycler = itertools.cycle(
|
||||||
|
[
|
||||||
|
"pbevan11/llama-3.1-8b-ocr-correction",
|
||||||
|
"faridlazuarda/valadapt-llama-3.1-8B-it-chinese",
|
||||||
|
"philschmid/code-llama-3-1-8b-text-to-sql-lora",
|
||||||
|
]
|
||||||
|
)
|
||||||
|
load_url = f"{base_url}/load_lora_adapter"
|
||||||
|
unload_url = f"{base_url}/unload_lora_adapter"
|
||||||
|
num_updates = 0
|
||||||
|
|
||||||
|
while not stop_event.is_set():
|
||||||
|
lora_path = next(path_cycler)
|
||||||
|
response = await asyncio.to_thread(
|
||||||
|
requests.post,
|
||||||
|
load_url,
|
||||||
|
json={"lora_name": lora_path, "lora_path": lora_path},
|
||||||
|
)
|
||||||
|
self.assertTrue(
|
||||||
|
response.ok, f"Failed to load LoRA adapter: {response.text}"
|
||||||
|
)
|
||||||
|
num_updates += 1
|
||||||
|
|
||||||
|
if stop_event.is_set():
|
||||||
|
break
|
||||||
|
|
||||||
|
await asyncio.sleep(1)
|
||||||
|
|
||||||
|
response = await asyncio.to_thread(
|
||||||
|
requests.post,
|
||||||
|
unload_url,
|
||||||
|
json={"lora_name": lora_path},
|
||||||
|
)
|
||||||
|
self.assertTrue(
|
||||||
|
response.ok, f"Failed to unload LoRA adapter: {response.text}"
|
||||||
|
)
|
||||||
|
num_updates += 1
|
||||||
|
|
||||||
|
await asyncio.sleep(1)
|
||||||
|
|
||||||
|
background_task = lora_loader_unloader_task if enable_background_task else None
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=400,
|
||||||
|
request_rate=8,
|
||||||
|
other_server_args=[
|
||||||
|
"--enable-lora",
|
||||||
|
"--max-loras-per-batch",
|
||||||
|
"1",
|
||||||
|
"--disable-radix-cache",
|
||||||
|
"--random-seed",
|
||||||
|
"42",
|
||||||
|
"--mem-fraction-static",
|
||||||
|
"0.8",
|
||||||
|
"--lora-paths",
|
||||||
|
"Nutanix/Meta-Llama-3.1-8B-Instruct_lora_4_alpha_16",
|
||||||
|
"--max-lora-rank",
|
||||||
|
"256",
|
||||||
|
],
|
||||||
|
dataset_name="random",
|
||||||
|
random_input_len=256,
|
||||||
|
random_output_len=256,
|
||||||
|
lora_name=["Nutanix/Meta-Llama-3.1-8B-Instruct_lora_4_alpha_16"],
|
||||||
|
background_task=background_task,
|
||||||
|
)
|
||||||
|
|
||||||
|
return res
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
@@ -0,0 +1,186 @@
|
|||||||
|
"""
|
||||||
|
Performance tests for single GPU - VLM, Score API, and Embeddings API tests.
|
||||||
|
Works on 5090 (32GB).
|
||||||
|
"""
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
|
from sglang.test.test_utils import (
|
||||||
|
DEFAULT_SMALL_EMBEDDING_MODEL_NAME_FOR_TEST,
|
||||||
|
DEFAULT_SMALL_MODEL_NAME_FOR_TEST_SCORE,
|
||||||
|
DEFAULT_SMALL_VLM_MODEL_NAME_FOR_TEST,
|
||||||
|
CustomTestCase,
|
||||||
|
is_in_amd_ci,
|
||||||
|
is_in_ci,
|
||||||
|
run_bench_serving,
|
||||||
|
run_embeddings_benchmark,
|
||||||
|
run_score_benchmark,
|
||||||
|
write_github_step_summary,
|
||||||
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=900, suite="stage-b-test-large-1-gpu-performance")
|
||||||
|
|
||||||
|
|
||||||
|
class TestBenchServing1GPUPart2(CustomTestCase):
|
||||||
|
def test_vlm_offline_throughput(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_SMALL_VLM_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=200,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
other_server_args=[
|
||||||
|
"--mem-fraction-static",
|
||||||
|
"0.7",
|
||||||
|
],
|
||||||
|
dataset_name="mmmu",
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_vlm_offline_throughput\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertGreater(res["output_throughput"], 2000)
|
||||||
|
else:
|
||||||
|
self.assertGreater(res["output_throughput"], 2500)
|
||||||
|
|
||||||
|
def test_vlm_online_latency(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_SMALL_VLM_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=250,
|
||||||
|
request_rate=1,
|
||||||
|
other_server_args=[
|
||||||
|
"--mem-fraction-static",
|
||||||
|
"0.7",
|
||||||
|
],
|
||||||
|
dataset_name="mmmu",
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_vlm_online_latency\n"
|
||||||
|
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
||||||
|
)
|
||||||
|
self.assertLess(res["median_e2e_latency_ms"], 16500)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertLess(res["median_ttft_ms"], 150)
|
||||||
|
else:
|
||||||
|
self.assertLess(res["median_ttft_ms"], 100)
|
||||||
|
self.assertLess(res["median_itl_ms"], 8)
|
||||||
|
|
||||||
|
def test_score_api_latency_throughput(self):
|
||||||
|
"""Test score API latency and throughput performance"""
|
||||||
|
res = run_score_benchmark(
|
||||||
|
model=DEFAULT_SMALL_MODEL_NAME_FOR_TEST_SCORE,
|
||||||
|
num_requests=1000,
|
||||||
|
batch_size=10,
|
||||||
|
other_server_args=[],
|
||||||
|
need_warmup=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_score_api_throughput\n"
|
||||||
|
f"Average latency: {res['avg_latency_ms']:.2f} ms\n"
|
||||||
|
f"P95 latency: {res['p95_latency_ms']:.2f} ms\n"
|
||||||
|
f"Score API throughput: {res['throughput']:.2f} req/s\n"
|
||||||
|
f"Successful requests: {res['successful_requests']}/{res['total_requests']}\n"
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(res["successful_requests"], res["total_requests"])
|
||||||
|
self.assertLess(res["avg_latency_ms"], 48)
|
||||||
|
self.assertLess(res["p95_latency_ms"], 50)
|
||||||
|
self.assertGreater(res["throughput"], 20)
|
||||||
|
|
||||||
|
def test_score_api_batch_scaling(self):
|
||||||
|
"""Test score API performance with different batch sizes"""
|
||||||
|
batch_sizes = [10, 25, 50]
|
||||||
|
|
||||||
|
for batch_size in batch_sizes:
|
||||||
|
res = run_score_benchmark(
|
||||||
|
model=DEFAULT_SMALL_MODEL_NAME_FOR_TEST_SCORE,
|
||||||
|
num_requests=500,
|
||||||
|
batch_size=batch_size,
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_score_api_batch_scaling_size_{batch_size}\n"
|
||||||
|
f"Batch size: {batch_size}\n"
|
||||||
|
f"Average latency: {res['avg_latency_ms']:.2f} ms\n"
|
||||||
|
f"P95 latency: {res['p95_latency_ms']:.2f} ms\n"
|
||||||
|
f"Throughput: {res['throughput']:.2f} req/s\n"
|
||||||
|
f"Successful requests: {res['successful_requests']}/{res['total_requests']}\n"
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(res["successful_requests"], res["total_requests"])
|
||||||
|
bounds = {
|
||||||
|
10: (45, 50),
|
||||||
|
25: (50, 60),
|
||||||
|
50: (60, 65),
|
||||||
|
}
|
||||||
|
avg_latency_bound, p95_latency_bound = bounds.get(batch_size, (60, 65))
|
||||||
|
self.assertLess(res["avg_latency_ms"], avg_latency_bound)
|
||||||
|
self.assertLess(res["p95_latency_ms"], p95_latency_bound)
|
||||||
|
|
||||||
|
def test_embeddings_api_latency_throughput(self):
|
||||||
|
"""Test embeddings API latency and throughput performance"""
|
||||||
|
res = run_embeddings_benchmark(
|
||||||
|
model=DEFAULT_SMALL_EMBEDDING_MODEL_NAME_FOR_TEST,
|
||||||
|
num_requests=1000,
|
||||||
|
batch_size=1,
|
||||||
|
input_tokens=500,
|
||||||
|
other_server_args=[],
|
||||||
|
need_warmup=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_embeddings_api_throughput\n"
|
||||||
|
f"Average latency: {res['avg_latency_ms']:.2f} ms\n"
|
||||||
|
f"P95 latency: {res['p95_latency_ms']:.2f} ms\n"
|
||||||
|
f"Embeddings API throughput: {res['throughput']:.2f} req/s\n"
|
||||||
|
f"Successful requests: {res['successful_requests']}/{res['total_requests']}\n"
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(res["successful_requests"], res["total_requests"])
|
||||||
|
self.assertLess(res["avg_latency_ms"], 20)
|
||||||
|
self.assertLess(res["p95_latency_ms"], 25)
|
||||||
|
self.assertGreater(res["throughput"], 60)
|
||||||
|
|
||||||
|
def test_embeddings_api_batch_scaling(self):
|
||||||
|
"""Test embeddings API performance with different batch sizes"""
|
||||||
|
batch_sizes = [10, 25, 50]
|
||||||
|
|
||||||
|
for batch_size in batch_sizes:
|
||||||
|
res = run_embeddings_benchmark(
|
||||||
|
model=DEFAULT_SMALL_EMBEDDING_MODEL_NAME_FOR_TEST,
|
||||||
|
num_requests=500,
|
||||||
|
batch_size=batch_size,
|
||||||
|
input_tokens=500,
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_embeddings_api_batch_scaling_size_{batch_size}\n"
|
||||||
|
f"Batch size: {batch_size}\n"
|
||||||
|
f"Average latency: {res['avg_latency_ms']:.2f} ms\n"
|
||||||
|
f"P95 latency: {res['p95_latency_ms']:.2f} ms\n"
|
||||||
|
f"Throughput: {res['throughput']:.2f} req/s\n"
|
||||||
|
f"Successful requests: {res['successful_requests']}/{res['total_requests']}\n"
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(res["successful_requests"], res["total_requests"])
|
||||||
|
bounds = {
|
||||||
|
10: (60, 65),
|
||||||
|
25: (115, 120),
|
||||||
|
50: (190, 195),
|
||||||
|
}
|
||||||
|
avg_latency_bound, p95_latency_bound = bounds.get(batch_size, (250, 250))
|
||||||
|
self.assertLess(res["avg_latency_ms"], avg_latency_bound)
|
||||||
|
self.assertLess(res["p95_latency_ms"], p95_latency_bound)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
@@ -0,0 +1,107 @@
|
|||||||
|
"""
|
||||||
|
Performance tests for 2-GPU that need large GPUs (H200 80GB) - MoE and Pipeline Parallel tests.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
|
from sglang.test.test_utils import (
|
||||||
|
DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
||||||
|
CustomTestCase,
|
||||||
|
is_in_amd_ci,
|
||||||
|
is_in_ci,
|
||||||
|
run_bench_serving,
|
||||||
|
write_github_step_summary,
|
||||||
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=600, suite="stage-b-test-large-2-gpu-performance")
|
||||||
|
|
||||||
|
|
||||||
|
class TestBenchServing2GPU(CustomTestCase):
|
||||||
|
def test_moe_offline_throughput_default(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=300,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
other_server_args=["--tp", "2"],
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_moe_offline_throughput_default\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertGreater(res["output_throughput"], 2100)
|
||||||
|
else:
|
||||||
|
self.assertGreater(res["output_throughput"], 2200)
|
||||||
|
|
||||||
|
def test_moe_offline_throughput_without_radix_cache(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=300,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
other_server_args=["--tp", "2", "--disable-radix-cache"],
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_moe_offline_throughput_without_radix_cache\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertGreater(res["output_throughput"], 2100)
|
||||||
|
else:
|
||||||
|
self.assertGreater(res["output_throughput"], 2200)
|
||||||
|
|
||||||
|
def test_pp_offline_throughput_default_decode(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=1000,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
random_input_len=1,
|
||||||
|
random_output_len=1024,
|
||||||
|
other_server_args=["--pp-size", "2"],
|
||||||
|
need_warmup=True,
|
||||||
|
seed=42,
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_pp_offline_throughput_default_decode\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
self.assertGreater(res["output_throughput"], 6700)
|
||||||
|
|
||||||
|
def test_pp_long_context_prefill(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model="meta-llama/Llama-3.3-70B-Instruct",
|
||||||
|
num_prompts=4,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
random_input_len=128000,
|
||||||
|
random_output_len=1,
|
||||||
|
dataset_name="random",
|
||||||
|
other_server_args=[
|
||||||
|
"--quantization",
|
||||||
|
"fp8",
|
||||||
|
"--pp-size",
|
||||||
|
"2",
|
||||||
|
]
|
||||||
|
+ (["--mem-fraction-static", "0.7"] if is_in_amd_ci() else []),
|
||||||
|
need_warmup=False,
|
||||||
|
seed=42,
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_pp_long_context_latency_prefill\n"
|
||||||
|
f"input_throughput: {res['input_throughput']:.2f} ms\n"
|
||||||
|
)
|
||||||
|
if is_in_amd_ci():
|
||||||
|
self.assertGreater(res["input_throughput"], 3000)
|
||||||
|
else:
|
||||||
|
self.assertGreater(res["input_throughput"], 4000)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
"""
|
||||||
|
VLM Performance tests that work on 5090 (32GB) - VLM offline throughput and online latency tests.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
|
from sglang.test.test_utils import (
|
||||||
|
DEFAULT_SMALL_VLM_MODEL_NAME_FOR_TEST,
|
||||||
|
CustomTestCase,
|
||||||
|
is_in_ci,
|
||||||
|
run_bench_serving,
|
||||||
|
write_github_step_summary,
|
||||||
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=600, suite="stage-b-test-small-1-gpu-performance")
|
||||||
|
|
||||||
|
|
||||||
|
class TestVLMPerf5090(CustomTestCase):
|
||||||
|
def test_vlm_offline_throughput(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_SMALL_VLM_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=200,
|
||||||
|
request_rate=float("inf"),
|
||||||
|
other_server_args=[
|
||||||
|
"--mem-fraction-static",
|
||||||
|
"0.7",
|
||||||
|
],
|
||||||
|
dataset_name="mmmu",
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_vlm_offline_throughput (5090)\n"
|
||||||
|
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
||||||
|
)
|
||||||
|
self.assertGreater(res["output_throughput"], 2000)
|
||||||
|
|
||||||
|
def test_vlm_online_latency(self):
|
||||||
|
res = run_bench_serving(
|
||||||
|
model=DEFAULT_SMALL_VLM_MODEL_NAME_FOR_TEST,
|
||||||
|
num_prompts=250,
|
||||||
|
request_rate=1,
|
||||||
|
other_server_args=[
|
||||||
|
"--mem-fraction-static",
|
||||||
|
"0.7",
|
||||||
|
],
|
||||||
|
dataset_name="mmmu",
|
||||||
|
)
|
||||||
|
|
||||||
|
if is_in_ci():
|
||||||
|
write_github_step_summary(
|
||||||
|
f"### test_vlm_online_latency (5090)\n"
|
||||||
|
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
||||||
|
)
|
||||||
|
self.assertLess(res["median_e2e_latency_ms"], 16500)
|
||||||
|
self.assertLess(res["median_ttft_ms"], 150)
|
||||||
|
self.assertLess(res["median_itl_ms"], 8)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
@@ -2,6 +2,7 @@ import unittest
|
|||||||
from types import SimpleNamespace
|
from types import SimpleNamespace
|
||||||
|
|
||||||
from sglang.srt.utils import kill_process_tree
|
from sglang.srt.utils import kill_process_tree
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.run_eval import run_eval
|
from sglang.test.run_eval import run_eval
|
||||||
from sglang.test.test_utils import (
|
from sglang.test.test_utils import (
|
||||||
DEFAULT_AWQ_MOE_MODEL_NAME_FOR_TEST,
|
DEFAULT_AWQ_MOE_MODEL_NAME_FOR_TEST,
|
||||||
@@ -11,6 +12,8 @@ from sglang.test.test_utils import (
|
|||||||
popen_launch_server,
|
popen_launch_server,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=163, suite="stage-b-test-large-1-gpu")
|
||||||
|
|
||||||
|
|
||||||
class TestAWQ(CustomTestCase):
|
class TestAWQ(CustomTestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
@@ -12,6 +12,7 @@ from types import SimpleNamespace
|
|||||||
import openai
|
import openai
|
||||||
|
|
||||||
from sglang.srt.utils import kill_process_tree
|
from sglang.srt.utils import kill_process_tree
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.run_eval import run_eval
|
from sglang.test.run_eval import run_eval
|
||||||
from sglang.test.test_utils import (
|
from sglang.test.test_utils import (
|
||||||
DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
||||||
@@ -21,6 +22,8 @@ from sglang.test.test_utils import (
|
|||||||
popen_launch_server,
|
popen_launch_server,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=5, suite="stage-b-test-small-1-gpu")
|
||||||
|
|
||||||
VISION_MODELS = [
|
VISION_MODELS = [
|
||||||
"unsloth/Qwen2.5-VL-7B-Instruct-bnb-4bit",
|
"unsloth/Qwen2.5-VL-7B-Instruct-bnb-4bit",
|
||||||
"unsloth/Qwen2-VL-7B-Instruct-bnb-4bit",
|
"unsloth/Qwen2-VL-7B-Instruct-bnb-4bit",
|
||||||
@@ -3,8 +3,11 @@ import unittest
|
|||||||
from huggingface_hub import hf_hub_download
|
from huggingface_hub import hf_hub_download
|
||||||
|
|
||||||
import sglang as sgl
|
import sglang as sgl
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.test_utils import CustomTestCase
|
from sglang.test.test_utils import CustomTestCase
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=96, suite="stage-b-test-small-1-gpu")
|
||||||
|
|
||||||
|
|
||||||
class TestGGUF(CustomTestCase):
|
class TestGGUF(CustomTestCase):
|
||||||
def test_models(self):
|
def test_models(self):
|
||||||
@@ -6,6 +6,7 @@ import torch
|
|||||||
|
|
||||||
from sglang.srt.server_args import set_global_server_args_for_scheduler
|
from sglang.srt.server_args import set_global_server_args_for_scheduler
|
||||||
from sglang.srt.utils import kill_process_tree
|
from sglang.srt.utils import kill_process_tree
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.test_utils import (
|
from sglang.test.test_utils import (
|
||||||
DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
||||||
DEFAULT_URL_FOR_TEST,
|
DEFAULT_URL_FOR_TEST,
|
||||||
@@ -13,6 +14,8 @@ from sglang.test.test_utils import (
|
|||||||
popen_launch_server,
|
popen_launch_server,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=102, suite="stage-b-test-large-1-gpu")
|
||||||
|
|
||||||
|
|
||||||
def check_quant_method(model_path: str, use_marlin_kernel: bool):
|
def check_quant_method(model_path: str, use_marlin_kernel: bool):
|
||||||
from sglang.srt.configs.device_config import DeviceConfig
|
from sglang.srt.configs.device_config import DeviceConfig
|
||||||
@@ -8,9 +8,12 @@ from sgl_kernel.scalar_type import scalar_types
|
|||||||
from sglang.srt.layers.activation import SiluAndMul
|
from sglang.srt.layers.activation import SiluAndMul
|
||||||
from sglang.srt.layers.moe.fused_moe_triton.fused_marlin_moe import fused_marlin_moe
|
from sglang.srt.layers.moe.fused_moe_triton.fused_marlin_moe import fused_marlin_moe
|
||||||
from sglang.srt.server_args import ServerArgs, set_global_server_args_for_scheduler
|
from sglang.srt.server_args import ServerArgs, set_global_server_args_for_scheduler
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.test_marlin_utils import awq_marlin_quantize, marlin_quantize
|
from sglang.test.test_marlin_utils import awq_marlin_quantize, marlin_quantize
|
||||||
from sglang.test.test_utils import CustomTestCase
|
from sglang.test.test_utils import CustomTestCase
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=200, suite="stage-b-test-small-1-gpu")
|
||||||
|
|
||||||
set_global_server_args_for_scheduler(object.__new__(ServerArgs))
|
set_global_server_args_for_scheduler(object.__new__(ServerArgs))
|
||||||
|
|
||||||
|
|
||||||
@@ -4,6 +4,7 @@ import warnings
|
|||||||
from types import SimpleNamespace
|
from types import SimpleNamespace
|
||||||
|
|
||||||
from sglang.srt.utils import kill_process_tree
|
from sglang.srt.utils import kill_process_tree
|
||||||
|
from sglang.test.ci.ci_register import register_cuda_ci
|
||||||
from sglang.test.run_eval import run_eval
|
from sglang.test.run_eval import run_eval
|
||||||
from sglang.test.test_utils import (
|
from sglang.test.test_utils import (
|
||||||
DEFAULT_MODEL_NAME_FOR_NIGHTLY_EVAL_QUANT_TP1,
|
DEFAULT_MODEL_NAME_FOR_NIGHTLY_EVAL_QUANT_TP1,
|
||||||
@@ -15,6 +16,8 @@ from sglang.test.test_utils import (
|
|||||||
write_results_to_json,
|
write_results_to_json,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
register_cuda_ci(est_time=185, suite="stage-b-test-large-1-gpu")
|
||||||
|
|
||||||
MODEL_SCORE_THRESHOLDS = {
|
MODEL_SCORE_THRESHOLDS = {
|
||||||
"hugging-quants/Meta-Llama-3.1-8B-Instruct-AWQ-INT4": 0.825,
|
"hugging-quants/Meta-Llama-3.1-8B-Instruct-AWQ-INT4": 0.825,
|
||||||
"hugging-quants/Meta-Llama-3.1-8B-Instruct-GPTQ-INT4": 0.825,
|
"hugging-quants/Meta-Llama-3.1-8B-Instruct-GPTQ-INT4": 0.825,
|
||||||
@@ -28,8 +28,12 @@ PER_COMMIT_SUITES = {
|
|||||||
HWBackend.CUDA: [
|
HWBackend.CUDA: [
|
||||||
"stage-a-test-1",
|
"stage-a-test-1",
|
||||||
"stage-b-test-small-1-gpu",
|
"stage-b-test-small-1-gpu",
|
||||||
|
"stage-b-test-small-1-gpu-performance",
|
||||||
|
"stage-b-test-small-1-gpu-accuracy",
|
||||||
"stage-b-test-large-1-gpu",
|
"stage-b-test-large-1-gpu",
|
||||||
|
"stage-b-test-large-1-gpu-performance",
|
||||||
"stage-b-test-large-2-gpu",
|
"stage-b-test-large-2-gpu",
|
||||||
|
"stage-b-test-large-2-gpu-performance",
|
||||||
"stage-c-test-large-4-gpu",
|
"stage-c-test-large-4-gpu",
|
||||||
"stage-b-test-4-gpu-b200",
|
"stage-b-test-4-gpu-b200",
|
||||||
"stage-c-test-large-4-gpu-b200",
|
"stage-c-test-large-4-gpu-b200",
|
||||||
|
|||||||
+1
-12
@@ -53,21 +53,10 @@ suites = {
|
|||||||
# "per-commit-8-gpu-h200-deepep": [
|
# "per-commit-8-gpu-h200-deepep": [
|
||||||
# TestFile("ep/test_deepep_large.py", 563),
|
# TestFile("ep/test_deepep_large.py", 563),
|
||||||
# ],
|
# ],
|
||||||
"quantization_test": [
|
# quantization_test suite migrated to test/registered/quant/
|
||||||
TestFile("quant/test_awq.py", 163),
|
|
||||||
TestFile("quant/test_marlin_moe.py", 200),
|
|
||||||
TestFile("test_bnb.py", 5),
|
|
||||||
TestFile("test_gptqmodel_dynamic.py", 102),
|
|
||||||
TestFile("test_quantization.py", 185),
|
|
||||||
TestFile("test_gguf.py", 96),
|
|
||||||
],
|
|
||||||
"__not_in_ci__": [
|
"__not_in_ci__": [
|
||||||
TestFile("test_release_memory_occupation.py", 200), # Temporarily disabled
|
TestFile("test_release_memory_occupation.py", 200), # Temporarily disabled
|
||||||
TestFile("models/test_dummy_grok_models.py"),
|
TestFile("models/test_dummy_grok_models.py"),
|
||||||
TestFile("test_bench_one_batch.py"),
|
|
||||||
TestFile("test_bench_serving.py"),
|
|
||||||
TestFile("test_eval_accuracy_large.py"),
|
|
||||||
TestFile("test_moe_eval_accuracy_large.py"),
|
|
||||||
TestFile("test_profile_v2.py"),
|
TestFile("test_profile_v2.py"),
|
||||||
TestFile("models/test_ministral3_models.py"),
|
TestFile("models/test_ministral3_models.py"),
|
||||||
TestFile("test_mistral_large3_basic.py"),
|
TestFile("test_mistral_large3_basic.py"),
|
||||||
|
|||||||
@@ -1,566 +0,0 @@
|
|||||||
import asyncio
|
|
||||||
import itertools
|
|
||||||
import unittest
|
|
||||||
|
|
||||||
import requests
|
|
||||||
|
|
||||||
from sglang.test.test_utils import (
|
|
||||||
DEFAULT_DRAFT_MODEL_EAGLE,
|
|
||||||
DEFAULT_MODEL_NAME_FOR_TEST,
|
|
||||||
DEFAULT_MODEL_NAME_FOR_TEST_FP8,
|
|
||||||
DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
|
||||||
DEFAULT_SMALL_EMBEDDING_MODEL_NAME_FOR_TEST,
|
|
||||||
DEFAULT_SMALL_MODEL_NAME_FOR_TEST_SCORE,
|
|
||||||
DEFAULT_SMALL_VLM_MODEL_NAME_FOR_TEST,
|
|
||||||
DEFAULT_TARGET_MODEL_EAGLE,
|
|
||||||
CustomTestCase,
|
|
||||||
is_in_amd_ci,
|
|
||||||
is_in_ci,
|
|
||||||
run_bench_serving,
|
|
||||||
run_embeddings_benchmark,
|
|
||||||
run_score_benchmark,
|
|
||||||
write_github_step_summary,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class TestBenchServing(CustomTestCase):
|
|
||||||
def test_offline_throughput_default(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=500,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
other_server_args=[],
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_offline_throughput_default\n"
|
|
||||||
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertGreater(res["output_throughput"], 3050)
|
|
||||||
else:
|
|
||||||
self.assertGreater(res["output_throughput"], 3800)
|
|
||||||
|
|
||||||
def test_offline_throughput_non_stream_small_batch_size(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=200,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
other_server_args=["--max-running-requests", "10"],
|
|
||||||
dataset_name="sharegpt",
|
|
||||||
random_input_len=None,
|
|
||||||
random_output_len=None,
|
|
||||||
disable_stream=True,
|
|
||||||
need_warmup=True,
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_offline_throughput_non_stream_small_batch_size\n"
|
|
||||||
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertGreater(res["output_throughput"], 1000)
|
|
||||||
else:
|
|
||||||
self.assertGreater(res["output_throughput"], 1050)
|
|
||||||
|
|
||||||
def test_offline_throughput_without_radix_cache(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=500,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
other_server_args=["--disable-radix-cache"],
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_offline_throughput_without_radix_cache\n"
|
|
||||||
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertGreater(res["output_throughput"], 3050)
|
|
||||||
else:
|
|
||||||
self.assertGreater(res["output_throughput"], 3800)
|
|
||||||
|
|
||||||
def test_offline_throughput_without_chunked_prefill(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=500,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
other_server_args=["--chunked-prefill-size", "-1"],
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_offline_throughput_without_chunked_prefill\n"
|
|
||||||
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
self.assertGreater(res["output_throughput"], 2600)
|
|
||||||
|
|
||||||
def test_offline_throughput_with_triton_attention_backend(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=500,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
other_server_args=[
|
|
||||||
"--attention-backend",
|
|
||||||
"triton",
|
|
||||||
"--context-length",
|
|
||||||
"8192",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_offline_throughput_with_triton_attention_backend\n"
|
|
||||||
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertGreater(res["output_throughput"], 3500)
|
|
||||||
else:
|
|
||||||
self.assertGreater(res["output_throughput"], 3700)
|
|
||||||
|
|
||||||
def test_offline_throughput_default_fp8(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MODEL_NAME_FOR_TEST_FP8,
|
|
||||||
num_prompts=500,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
other_server_args=[],
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_offline_throughput_default_fp8\n"
|
|
||||||
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertGreater(res["output_throughput"], 3500)
|
|
||||||
else:
|
|
||||||
self.assertGreater(res["output_throughput"], 4300)
|
|
||||||
|
|
||||||
def test_online_latency_default(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=100,
|
|
||||||
request_rate=1,
|
|
||||||
other_server_args=[],
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_online_latency_default\n"
|
|
||||||
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
|
||||||
)
|
|
||||||
self.assertLess(res["median_e2e_latency_ms"], 11000)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertLess(res["median_ttft_ms"], 115)
|
|
||||||
else:
|
|
||||||
self.assertLess(res["median_ttft_ms"], 86)
|
|
||||||
self.assertLess(res["median_itl_ms"], 10)
|
|
||||||
|
|
||||||
def test_vlm_offline_throughput(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_SMALL_VLM_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=200,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
other_server_args=[
|
|
||||||
"--mem-fraction-static",
|
|
||||||
"0.7",
|
|
||||||
],
|
|
||||||
dataset_name="mmmu",
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_vlm_offline_throughput\n"
|
|
||||||
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertGreater(res["output_throughput"], 2000)
|
|
||||||
# TODO: not set yet, need AMD machine
|
|
||||||
else:
|
|
||||||
self.assertGreater(res["output_throughput"], 2500)
|
|
||||||
|
|
||||||
def test_vlm_online_latency(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_SMALL_VLM_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=250,
|
|
||||||
request_rate=1,
|
|
||||||
other_server_args=[
|
|
||||||
"--mem-fraction-static",
|
|
||||||
"0.7",
|
|
||||||
],
|
|
||||||
dataset_name="mmmu",
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_vlm_online_latency\n"
|
|
||||||
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
|
||||||
)
|
|
||||||
self.assertLess(res["median_e2e_latency_ms"], 16500)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertLess(res["median_ttft_ms"], 150)
|
|
||||||
# TODO: not set yet, need AMD machine
|
|
||||||
else:
|
|
||||||
self.assertLess(res["median_ttft_ms"], 100)
|
|
||||||
self.assertLess(res["median_itl_ms"], 8)
|
|
||||||
|
|
||||||
def test_lora_online_latency(self):
|
|
||||||
# TODO (lifuhuang): verify LoRA support in AMD.
|
|
||||||
if is_in_amd_ci():
|
|
||||||
pass
|
|
||||||
|
|
||||||
res = self._run_lora_latency_test(enable_background_task=False)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_lora_online_latency\n"
|
|
||||||
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
|
||||||
f"median_ttft_ms: {res['median_ttft_ms']:.2f} ms\n"
|
|
||||||
)
|
|
||||||
self.assertLess(res["median_e2e_latency_ms"], 2400)
|
|
||||||
self.assertLess(res["median_ttft_ms"], 58)
|
|
||||||
|
|
||||||
def test_lora_online_latency_with_concurrent_adapter_updates(self):
|
|
||||||
# TODO (lifuhuang): verify LoRA support in AMD.
|
|
||||||
if is_in_amd_ci():
|
|
||||||
pass
|
|
||||||
|
|
||||||
res = self._run_lora_latency_test(enable_background_task=True)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_lora_online_latency\n"
|
|
||||||
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
|
||||||
f"median_ttft_ms: {res['median_ttft_ms']:.2f} ms\n"
|
|
||||||
)
|
|
||||||
self.assertLess(res["median_e2e_latency_ms"], 4000)
|
|
||||||
self.assertLess(res["median_ttft_ms"], 80)
|
|
||||||
|
|
||||||
def _run_lora_latency_test(self, enable_background_task: bool):
|
|
||||||
"""
|
|
||||||
Run a latency test for LoRA with the specified background task setting.
|
|
||||||
"""
|
|
||||||
|
|
||||||
async def lora_loader_unloader_task(
|
|
||||||
base_url: str,
|
|
||||||
start_event: asyncio.Event,
|
|
||||||
stop_event: asyncio.Event,
|
|
||||||
):
|
|
||||||
"""
|
|
||||||
A background task that repeatedly loads and unloads a LoRA adapter.
|
|
||||||
"""
|
|
||||||
await start_event.wait()
|
|
||||||
|
|
||||||
path_cycler = itertools.cycle(
|
|
||||||
[
|
|
||||||
"pbevan11/llama-3.1-8b-ocr-correction",
|
|
||||||
"faridlazuarda/valadapt-llama-3.1-8B-it-chinese",
|
|
||||||
"philschmid/code-llama-3-1-8b-text-to-sql-lora",
|
|
||||||
]
|
|
||||||
)
|
|
||||||
load_url = f"{base_url}/load_lora_adapter"
|
|
||||||
unload_url = f"{base_url}/unload_lora_adapter"
|
|
||||||
num_updates = 0
|
|
||||||
|
|
||||||
while not stop_event.is_set():
|
|
||||||
# 1. Load the LoRA adapter
|
|
||||||
lora_path = next(path_cycler)
|
|
||||||
response = await asyncio.to_thread(
|
|
||||||
requests.post,
|
|
||||||
load_url,
|
|
||||||
json={"lora_name": lora_path, "lora_path": lora_path},
|
|
||||||
)
|
|
||||||
self.assertTrue(
|
|
||||||
response.ok, f"Failed to load LoRA adapter: {response.text}"
|
|
||||||
)
|
|
||||||
num_updates += 1
|
|
||||||
|
|
||||||
if stop_event.is_set():
|
|
||||||
break
|
|
||||||
|
|
||||||
# Yield control to allow other tasks to run.
|
|
||||||
await asyncio.sleep(1)
|
|
||||||
|
|
||||||
# 2. Unload the LoRA adapter
|
|
||||||
response = await asyncio.to_thread(
|
|
||||||
requests.post,
|
|
||||||
unload_url,
|
|
||||||
json={"lora_name": lora_path},
|
|
||||||
)
|
|
||||||
self.assertTrue(
|
|
||||||
response.ok, f"Failed to unload LoRA adapter: {response.text}"
|
|
||||||
)
|
|
||||||
num_updates += 1
|
|
||||||
|
|
||||||
# Yield control to allow other tasks to run.
|
|
||||||
await asyncio.sleep(1)
|
|
||||||
|
|
||||||
background_task = lora_loader_unloader_task if enable_background_task else None
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=400,
|
|
||||||
request_rate=8,
|
|
||||||
other_server_args=[
|
|
||||||
"--enable-lora",
|
|
||||||
"--max-loras-per-batch",
|
|
||||||
"1",
|
|
||||||
"--disable-radix-cache",
|
|
||||||
"--random-seed",
|
|
||||||
"42",
|
|
||||||
"--mem-fraction-static",
|
|
||||||
"0.8",
|
|
||||||
"--lora-paths",
|
|
||||||
"Nutanix/Meta-Llama-3.1-8B-Instruct_lora_4_alpha_16",
|
|
||||||
"--max-lora-rank",
|
|
||||||
"256",
|
|
||||||
],
|
|
||||||
dataset_name="random",
|
|
||||||
random_input_len=256,
|
|
||||||
random_output_len=256,
|
|
||||||
lora_name=["Nutanix/Meta-Llama-3.1-8B-Instruct_lora_4_alpha_16"],
|
|
||||||
background_task=background_task,
|
|
||||||
)
|
|
||||||
|
|
||||||
return res
|
|
||||||
|
|
||||||
def test_online_latency_eagle(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_TARGET_MODEL_EAGLE,
|
|
||||||
num_prompts=300,
|
|
||||||
request_rate=8,
|
|
||||||
sharegpt_context_len=3072,
|
|
||||||
disable_ignore_eos=True,
|
|
||||||
dataset_name="sharegpt",
|
|
||||||
other_server_args=[
|
|
||||||
"--speculative-algorithm",
|
|
||||||
"EAGLE",
|
|
||||||
"--speculative-draft-model-path",
|
|
||||||
DEFAULT_DRAFT_MODEL_EAGLE,
|
|
||||||
"--speculative-num-steps",
|
|
||||||
"5",
|
|
||||||
"--speculative-eagle-topk",
|
|
||||||
"4",
|
|
||||||
"--speculative-num-draft-tokens",
|
|
||||||
"16",
|
|
||||||
"--mem-fraction-static",
|
|
||||||
"0.7",
|
|
||||||
],
|
|
||||||
need_warmup=True,
|
|
||||||
seed=42,
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_online_latency_eagle\n"
|
|
||||||
f"median_e2e_latency_ms: {res['median_e2e_latency_ms']:.2f} ms\n"
|
|
||||||
f"accept_length: {res['accept_length']:.2f} \n"
|
|
||||||
)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertLess(res["median_e2e_latency_ms"], 1800)
|
|
||||||
else:
|
|
||||||
self.assertLess(res["median_e2e_latency_ms"], 900)
|
|
||||||
self.assertGreater(res["accept_length"], 3.0)
|
|
||||||
|
|
||||||
def test_moe_offline_throughput_default(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=300,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
other_server_args=["--tp", "2"],
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_moe_offline_throughput_default\n"
|
|
||||||
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertGreater(res["output_throughput"], 2100)
|
|
||||||
else:
|
|
||||||
self.assertGreater(res["output_throughput"], 2200)
|
|
||||||
|
|
||||||
def test_moe_offline_throughput_without_radix_cache(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=300,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
other_server_args=["--tp", "2", "--disable-radix-cache"],
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_moe_offline_throughput_without_radix_cache\n"
|
|
||||||
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertGreater(res["output_throughput"], 2100)
|
|
||||||
else:
|
|
||||||
self.assertGreater(res["output_throughput"], 2200)
|
|
||||||
|
|
||||||
def test_pp_offline_throughput_default_decode(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model=DEFAULT_MOE_MODEL_NAME_FOR_TEST,
|
|
||||||
num_prompts=1000,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
random_input_len=1,
|
|
||||||
random_output_len=1024,
|
|
||||||
other_server_args=["--pp-size", "2"],
|
|
||||||
need_warmup=True,
|
|
||||||
seed=42,
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_pp_offline_throughput_default_decode\n"
|
|
||||||
f"Output throughput: {res['output_throughput']:.2f} token/s\n"
|
|
||||||
)
|
|
||||||
self.assertGreater(res["output_throughput"], 6700)
|
|
||||||
|
|
||||||
def test_pp_long_context_prefill(self):
|
|
||||||
res = run_bench_serving(
|
|
||||||
model="meta-llama/Llama-3.3-70B-Instruct",
|
|
||||||
num_prompts=4,
|
|
||||||
request_rate=float("inf"),
|
|
||||||
random_input_len=128000,
|
|
||||||
random_output_len=1,
|
|
||||||
dataset_name="random",
|
|
||||||
other_server_args=[
|
|
||||||
"--quantization",
|
|
||||||
"fp8",
|
|
||||||
"--pp-size",
|
|
||||||
"2",
|
|
||||||
]
|
|
||||||
+ (["--mem-fraction-static", "0.7"] if is_in_amd_ci() else []),
|
|
||||||
need_warmup=False,
|
|
||||||
seed=42,
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_pp_long_context_latency_prefill\n"
|
|
||||||
f"input_throughput: {res['input_throughput']:.2f} ms\n"
|
|
||||||
)
|
|
||||||
if is_in_amd_ci():
|
|
||||||
self.assertGreater(res["input_throughput"], 3000)
|
|
||||||
else:
|
|
||||||
self.assertGreater(res["input_throughput"], 4000)
|
|
||||||
|
|
||||||
def test_score_api_latency_throughput(self):
|
|
||||||
"""Test score API latency and throughput performance"""
|
|
||||||
res = run_score_benchmark(
|
|
||||||
model=DEFAULT_SMALL_MODEL_NAME_FOR_TEST_SCORE,
|
|
||||||
num_requests=1000,
|
|
||||||
batch_size=10,
|
|
||||||
other_server_args=[],
|
|
||||||
need_warmup=True,
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_score_api_throughput\n"
|
|
||||||
f"Average latency: {res['avg_latency_ms']:.2f} ms\n"
|
|
||||||
f"P95 latency: {res['p95_latency_ms']:.2f} ms\n"
|
|
||||||
f"Score API throughput: {res['throughput']:.2f} req/s\n"
|
|
||||||
f"Successful requests: {res['successful_requests']}/{res['total_requests']}\n"
|
|
||||||
)
|
|
||||||
|
|
||||||
self.assertEqual(res["successful_requests"], res["total_requests"])
|
|
||||||
self.assertLess(res["avg_latency_ms"], 48)
|
|
||||||
self.assertLess(res["p95_latency_ms"], 50)
|
|
||||||
self.assertGreater(res["throughput"], 20)
|
|
||||||
|
|
||||||
def test_score_api_batch_scaling(self):
|
|
||||||
"""Test score API performance with different batch sizes"""
|
|
||||||
batch_sizes = [10, 25, 50]
|
|
||||||
|
|
||||||
for batch_size in batch_sizes:
|
|
||||||
res = run_score_benchmark(
|
|
||||||
model=DEFAULT_SMALL_MODEL_NAME_FOR_TEST_SCORE,
|
|
||||||
num_requests=500,
|
|
||||||
batch_size=batch_size,
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_score_api_batch_scaling_size_{batch_size}\n"
|
|
||||||
f"Batch size: {batch_size}\n"
|
|
||||||
f"Average latency: {res['avg_latency_ms']:.2f} ms\n"
|
|
||||||
f"P95 latency: {res['p95_latency_ms']:.2f} ms\n"
|
|
||||||
f"Throughput: {res['throughput']:.2f} req/s\n"
|
|
||||||
f"Successful requests: {res['successful_requests']}/{res['total_requests']}\n"
|
|
||||||
)
|
|
||||||
|
|
||||||
self.assertEqual(res["successful_requests"], res["total_requests"])
|
|
||||||
bounds = {
|
|
||||||
10: (45, 50),
|
|
||||||
25: (50, 60),
|
|
||||||
50: (60, 65),
|
|
||||||
}
|
|
||||||
avg_latency_bound, p95_latency_bound = bounds.get(batch_size, (60, 65))
|
|
||||||
self.assertLess(res["avg_latency_ms"], avg_latency_bound)
|
|
||||||
self.assertLess(res["p95_latency_ms"], p95_latency_bound)
|
|
||||||
|
|
||||||
def test_embeddings_api_latency_throughput(self):
|
|
||||||
"""Test embeddings API latency and throughput performance"""
|
|
||||||
res = run_embeddings_benchmark(
|
|
||||||
model=DEFAULT_SMALL_EMBEDDING_MODEL_NAME_FOR_TEST,
|
|
||||||
num_requests=1000,
|
|
||||||
batch_size=1,
|
|
||||||
input_tokens=500,
|
|
||||||
other_server_args=[],
|
|
||||||
need_warmup=True,
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_embeddings_api_throughput\n"
|
|
||||||
f"Average latency: {res['avg_latency_ms']:.2f} ms\n"
|
|
||||||
f"P95 latency: {res['p95_latency_ms']:.2f} ms\n"
|
|
||||||
f"Embeddings API throughput: {res['throughput']:.2f} req/s\n"
|
|
||||||
f"Successful requests: {res['successful_requests']}/{res['total_requests']}\n"
|
|
||||||
)
|
|
||||||
|
|
||||||
self.assertEqual(res["successful_requests"], res["total_requests"])
|
|
||||||
# Bounds based on actual performance on 1xH100: avg=15ms, p95=15ms, throughput=67req/s
|
|
||||||
self.assertLess(res["avg_latency_ms"], 20)
|
|
||||||
self.assertLess(res["p95_latency_ms"], 25)
|
|
||||||
self.assertGreater(res["throughput"], 60)
|
|
||||||
|
|
||||||
def test_embeddings_api_batch_scaling(self):
|
|
||||||
"""Test embeddings API performance with different batch sizes"""
|
|
||||||
batch_sizes = [10, 25, 50]
|
|
||||||
|
|
||||||
for batch_size in batch_sizes:
|
|
||||||
res = run_embeddings_benchmark(
|
|
||||||
model=DEFAULT_SMALL_EMBEDDING_MODEL_NAME_FOR_TEST,
|
|
||||||
num_requests=500,
|
|
||||||
batch_size=batch_size,
|
|
||||||
input_tokens=500,
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_in_ci():
|
|
||||||
write_github_step_summary(
|
|
||||||
f"### test_embeddings_api_batch_scaling_size_{batch_size}\n"
|
|
||||||
f"Batch size: {batch_size}\n"
|
|
||||||
f"Average latency: {res['avg_latency_ms']:.2f} ms\n"
|
|
||||||
f"P95 latency: {res['p95_latency_ms']:.2f} ms\n"
|
|
||||||
f"Throughput: {res['throughput']:.2f} req/s\n"
|
|
||||||
f"Successful requests: {res['successful_requests']}/{res['total_requests']}\n"
|
|
||||||
)
|
|
||||||
|
|
||||||
self.assertEqual(res["successful_requests"], res["total_requests"])
|
|
||||||
bounds = {
|
|
||||||
10: (60, 65),
|
|
||||||
25: (115, 120),
|
|
||||||
50: (190, 195),
|
|
||||||
}
|
|
||||||
avg_latency_bound, p95_latency_bound = bounds.get(batch_size, (250, 250))
|
|
||||||
self.assertLess(res["avg_latency_ms"], avg_latency_bound)
|
|
||||||
self.assertLess(res["p95_latency_ms"], p95_latency_bound)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
unittest.main()
|
|
||||||
Reference in New Issue
Block a user