223 lines
6.6 KiB
Python
223 lines
6.6 KiB
Python
"""
|
|
Usage:
|
|
python3 -m unittest test_pp_single_node.TestPPAccuracy.test_gsm8k
|
|
python3 -m unittest test_pp_single_node.TestDPAttentionDP2PP2.test_gsm8k
|
|
python3 -m unittest test_pp_single_node.TestGemma4PPAccuracy.test_gsm8k
|
|
python3 -m unittest test_pp_single_node.TestGemma4PPAccuracy.test_mmmu
|
|
python3 -m unittest test_pp_single_node.TestGemma4PLEPPAccuracy.test_gsm8k
|
|
python3 -m unittest test_pp_single_node.TestPPMixedChunk.test_gsm8k
|
|
python3 -m unittest test_pp_single_node.TestFixedBugs.test_chunked_prefill_with_small_bs
|
|
"""
|
|
|
|
import time
|
|
import unittest
|
|
from types import SimpleNamespace
|
|
|
|
import requests
|
|
|
|
from sglang.bench_one_batch_server import BenchArgs as OneBatchBenchArgs
|
|
from sglang.srt.server_args import ServerArgs
|
|
from sglang.srt.utils import kill_process_tree
|
|
from sglang.test.ci.ci_register import register_amd_ci, register_cuda_ci
|
|
from sglang.test.run_eval import run_eval
|
|
from sglang.test.test_utils import (
|
|
DEFAULT_MLA_MODEL_NAME_FOR_TEST,
|
|
DEFAULT_MODEL_NAME_FOR_TEST,
|
|
DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
|
DEFAULT_URL_FOR_TEST,
|
|
CustomTestCase,
|
|
is_in_amd_ci,
|
|
popen_launch_server,
|
|
run_bench_one_batch_server,
|
|
)
|
|
|
|
register_cuda_ci(est_time=295, stage="base-c", runner_config="4-gpu-h100")
|
|
register_amd_ci(est_time=500, suite="stage-c-test-4-gpu-amd")
|
|
|
|
|
|
class TestPPAccuracy(unittest.TestCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.base_url = "http://127.0.0.1:23333"
|
|
cls.process = popen_launch_server(
|
|
DEFAULT_MODEL_NAME_FOR_TEST,
|
|
cls.base_url,
|
|
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
|
other_args=[
|
|
"--tp-size",
|
|
2,
|
|
"--pp-size",
|
|
2,
|
|
"--chunked-prefill-size",
|
|
256,
|
|
],
|
|
)
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
kill_process_tree(cls.process.pid)
|
|
|
|
def test_gsm8k(self):
|
|
args = SimpleNamespace(
|
|
base_url=self.base_url,
|
|
model=DEFAULT_MODEL_NAME_FOR_TEST,
|
|
eval_name="gsm8k",
|
|
api="completion",
|
|
max_tokens=512,
|
|
num_examples=200,
|
|
num_threads=128,
|
|
)
|
|
metrics = run_eval(args)
|
|
print(f"{metrics=}")
|
|
|
|
if is_in_amd_ci():
|
|
# AMD triton backend produces slightly lower accuracy than FA3 on NVIDIA
|
|
self.assertGreater(metrics["score"], 0.70)
|
|
else:
|
|
self.assertGreater(metrics["score"], 0.74)
|
|
# Wait a little bit so that the memory check happens.
|
|
time.sleep(4)
|
|
|
|
def test_logprob(self):
|
|
response = requests.post(
|
|
f"{self.base_url}/generate",
|
|
json={
|
|
"text": "The capital of France is",
|
|
"sampling_params": {
|
|
"temperature": 0,
|
|
"max_new_tokens": 16,
|
|
},
|
|
"return_logprob": True,
|
|
"top_logprobs_num": 5,
|
|
"logprob_start_len": 0,
|
|
},
|
|
)
|
|
response_json = response.json()
|
|
input_token_logprobs = response_json["meta_info"]["input_token_logprobs"]
|
|
output_token_logprobs = response_json["meta_info"]["output_token_logprobs"]
|
|
output_top_logprobs = response_json["meta_info"]["output_top_logprobs"]
|
|
|
|
assert len(input_token_logprobs) == 6
|
|
assert len(output_token_logprobs) == 16
|
|
assert len(output_top_logprobs) == 16
|
|
|
|
|
|
@unittest.skipIf(is_in_amd_ci(), "MLA model with DP attention not yet supported on AMD")
|
|
class TestDPAttentionDP2PP2(CustomTestCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.model = DEFAULT_MLA_MODEL_NAME_FOR_TEST
|
|
cls.base_url = DEFAULT_URL_FOR_TEST
|
|
cls.process = popen_launch_server(
|
|
cls.model,
|
|
cls.base_url,
|
|
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
|
other_args=[
|
|
"--trust-remote-code",
|
|
"--tp",
|
|
"2",
|
|
"--pp-size",
|
|
"2",
|
|
"--enable-dp-attention",
|
|
"--dp",
|
|
"2",
|
|
],
|
|
)
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
kill_process_tree(cls.process.pid)
|
|
|
|
def test_gsm8k(self):
|
|
args = SimpleNamespace(
|
|
base_url=self.base_url,
|
|
model=self.model,
|
|
eval_name="gsm8k",
|
|
num_examples=None,
|
|
num_threads=1024,
|
|
)
|
|
|
|
metrics = run_eval(args)
|
|
print(f"{metrics=}")
|
|
self.assertGreater(metrics["score"], 0.8)
|
|
|
|
|
|
class TestPPMixedChunk(CustomTestCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.model = DEFAULT_MODEL_NAME_FOR_TEST
|
|
cls.base_url = "http://127.0.0.1:23338"
|
|
cls.process = popen_launch_server(
|
|
cls.model,
|
|
cls.base_url,
|
|
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
|
other_args=[
|
|
"--tp-size",
|
|
2,
|
|
"--pp-size",
|
|
2,
|
|
"--chunked-prefill-size",
|
|
256,
|
|
"--enable-mixed-chunk",
|
|
],
|
|
)
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
if hasattr(cls, "process"):
|
|
kill_process_tree(cls.process.pid)
|
|
|
|
def test_gsm8k(self):
|
|
args = SimpleNamespace(
|
|
base_url=self.base_url,
|
|
model=self.model,
|
|
eval_name="gsm8k",
|
|
api="completion",
|
|
max_tokens=512,
|
|
num_examples=200,
|
|
num_threads=128,
|
|
)
|
|
metrics = run_eval(args)
|
|
print(f"{metrics=}")
|
|
|
|
if is_in_amd_ci():
|
|
# AMD triton backend produces slightly lower accuracy than FA3 on NVIDIA
|
|
self.assertGreater(metrics["score"], 0.70)
|
|
else:
|
|
self.assertGreater(metrics["score"], 0.74)
|
|
# Wait a little bit so that the memory check happens.
|
|
time.sleep(4)
|
|
|
|
|
|
class TestFixedBugs(unittest.TestCase):
|
|
def test_chunked_prefill_with_small_bs(self):
|
|
model = DEFAULT_MODEL_NAME_FOR_TEST
|
|
server_args = ServerArgs(model_path=model)
|
|
bench_args = OneBatchBenchArgs(
|
|
batch_size=(1,),
|
|
input_len=(1,),
|
|
output_len=(1,),
|
|
base_url=DEFAULT_URL_FOR_TEST,
|
|
)
|
|
other_server_args = [
|
|
"--tp-size",
|
|
2,
|
|
"--pp-size",
|
|
2,
|
|
"--chunked-prefill-size",
|
|
256,
|
|
"--max-running-requests",
|
|
2,
|
|
]
|
|
run_bench_one_batch_server(
|
|
model,
|
|
DEFAULT_URL_FOR_TEST,
|
|
server_args,
|
|
bench_args,
|
|
other_server_args,
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|