sgl-project--sglang
94057c3d3e
PR Test (NPU) / check-changes (push) Has been cancelled
PR Test (NPU) / pr-gate (push) Has been cancelled
PR Test (NPU) / set-image-config (push) Has been cancelled
PR Test (NPU) / stage-b-test-1-npu-a2 (0) (push) Has been cancelled
PR Test (NPU) / stage-b-test-1-npu-a2 (1) (push) Has been cancelled
PR Test (NPU) / stage-b-test-2-npu-a2 (0) (push) Has been cancelled
PR Test (NPU) / stage-b-test-2-npu-a2 (1) (push) Has been cancelled
PR Test (NPU) / stage-b-test-4-npu-a3 (push) Has been cancelled
PR Test (NPU) / stage-b-test-16-npu-a3 (push) Has been cancelled
PR Test (NPU) / multimodal-gen-test-1-npu-a3 (push) Has been cancelled
PR Test (NPU) / multimodal-gen-test-2-npu-a3 (push) Has been cancelled
PR Test (Arm64) / pr-gate (push) Has been cancelled
PR Test (Arm64) / check-changes (push) Has been cancelled
PR Test (Arm64) / build-test (push) Has been cancelled
PR Test (sgl-router) / gate (push) Has been cancelled
PR Test (sgl-router) / tier-1 — lint (push) Has been cancelled
PR Test (sgl-router) / tier-2 — build + test (push) Has been cancelled
PR Test (sgl-router) / tier-3 — docker (placeholder) (push) Has been cancelled
PR Test (sgl-router) / tier-3 — k8s integration (push) Has been cancelled
PR Test (sgl-router) / tier-3 — e2e (push) Has been cancelled
PR Test (sgl-router) / finish (push) Has been cancelled
PR Test (NPU) / single-node-poc (map[name:qwen3_6_27b_w8a8_1p_in64k_out1k_50ms runner:linux-aarch64-a3-2 test_case:test/registered/ascend/performance/qwen3_6_27b/test_npu_qwen3_6_27b_w8a8_1p_in64k_out1k_50ms.py test_type:perf]) (push) Has been cancelled
PR Test (NPU) / pr-test-npu-finish (push) Has been cancelled
PR Test (Xeon) / pr-gate (push) Has been cancelled
PR Test (Xeon) / check-changes (push) Has been cancelled
PR Test (Xeon) / build-test (, xeon-gnr, base-b-test-cpu) (push) Has been cancelled
PR Test (XPU) / check-changes (push) Has been cancelled
PR Test (XPU) / pr-gate (push) Has been cancelled
PR Test (XPU) / stage-a-test-1-gpu-xpu (push) Has been cancelled
PR Test (XPU) / wait-for-stage-a (push) Has been cancelled
PR Test (XPU) / stage-b-test-1-gpu-xpu (push) Has been cancelled
PR Test (XPU) / finish (push) Has been cancelled
CI Model Inventory / build-inventory (push) Has been cancelled
Lint / lint (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark Compilation Check (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark - Manual Policy (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark - Request Processing (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark Summary (push) Has been cancelled
PR Test (SMG) / build-wheel (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on windows (x86_64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on macos (x86_64 - auto) (push) Has been cancelled
PR Test (SMG) / python-unit-tests (push) Has been cancelled
PR Test (SMG) / unit-tests (push) Has been cancelled
PR Test (SMG) / benchmarks (push) Has been cancelled
PR Test (SMG) / chat-completions (push) Has been cancelled
PR Test (SMG) / chat-completions-4gpu (push) Has been cancelled
PR Test (SMG) / e2e (push) Has been cancelled
PR Test (SMG) / docker-build-test (push) Has been cancelled
PR Test (SMG) / k8s-integration (push) Has been cancelled
PR Test (SMG) / finish (push) Has been cancelled
PR Test (SMG) / summarize-benchmarks (push) Has been cancelled
Release SGLang Model Gateway Docker Image / publish (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on macos (aarch64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (aarch64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (x86_64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (aarch64 - musllinux_1_1) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (x86_64 - musllinux_1_1) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / Build SDist (push) Has been cancelled
Release SGLang Model Gateway to PyPI / Upload to PyPI (push) Has been cancelled
Release SGLang Kernels / build-cu129-matrix (aarch64, 12.9, 3.10, arm-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / build-cu129-matrix (x86_64, 12.9, 3.10, x64-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / release-cu129 (push) Has been cancelled
Release SGLang Kernels / build-cu130-matrix (aarch64, 13.0, 3.10, arm-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / build-cu130-matrix (x86_64, 13.0, 3.10, x64-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / release-cu130 (push) Has been cancelled
Release SGLang Kernels / build-rocm-matrix (3.10, 700) (push) Has been cancelled
Release SGLang Kernels / build-rocm-matrix (3.10, 720) (push) Has been cancelled
Release SGLang Kernels / release-rocm700 (push) Has been cancelled
Release SGLang Kernels / release-rocm720 (push) Has been cancelled
Release SGLang Kernels / build-musa43 (43, 3.10) (push) Has been cancelled
Release SGLang Kernels / release-musa43 (push) Has been cancelled
245 行
7.8 KiB
Python
245 行
7.8 KiB
Python
import importlib.util
|
|
import re
|
|
import sys
|
|
import types
|
|
import unittest
|
|
from pathlib import Path
|
|
|
|
try:
|
|
from sglang.test.ci.ci_register import register_cpu_ci
|
|
from sglang.test.test_utils import CustomTestCase
|
|
except ModuleNotFoundError:
|
|
CustomTestCase = unittest.TestCase
|
|
|
|
def register_cpu_ci(*args, **kwargs):
|
|
pass
|
|
|
|
|
|
register_cpu_ci(est_time=5, suite="base-a-test-cpu")
|
|
|
|
|
|
def _load_mmmu_eval_utils():
|
|
repo_root = Path(__file__).resolve().parents[4]
|
|
module_path = repo_root / "benchmark" / "mmmu" / "eval_utils.py"
|
|
module_name = "_test_mmmu_eval_utils"
|
|
|
|
stub_modules = {
|
|
"data_utils": _build_data_utils_stub(),
|
|
"datasets": _build_datasets_stub(),
|
|
"numpy": _build_numpy_stub(),
|
|
"torch": types.ModuleType("torch"),
|
|
"tqdm": _build_tqdm_stub(),
|
|
}
|
|
previous_modules = {name: sys.modules.get(name) for name in stub_modules}
|
|
sys.modules.update(stub_modules)
|
|
|
|
spec = importlib.util.spec_from_file_location(module_name, module_path)
|
|
module = importlib.util.module_from_spec(spec)
|
|
sys.modules[module_name] = module
|
|
try:
|
|
spec.loader.exec_module(module)
|
|
finally:
|
|
for name, previous_module in previous_modules.items():
|
|
if previous_module is None:
|
|
sys.modules.pop(name, None)
|
|
else:
|
|
sys.modules[name] = previous_module
|
|
|
|
return module
|
|
|
|
|
|
def _build_data_utils_stub():
|
|
module = types.ModuleType("data_utils")
|
|
module.CAT_SHORT2LONG = {}
|
|
module.DOMAIN_CAT2SUB_CAT = {}
|
|
|
|
def _unused(*args, **kwargs):
|
|
raise AssertionError("Unexpected data_utils call in MMMU parser unit test")
|
|
|
|
module.construct_prompt = _unused
|
|
module.load_yaml = _unused
|
|
module.process_single_sample = _unused
|
|
module.save_json = _unused
|
|
return module
|
|
|
|
|
|
def _build_datasets_stub():
|
|
module = types.ModuleType("datasets")
|
|
|
|
def _unused(*args, **kwargs):
|
|
raise AssertionError("Unexpected datasets call in MMMU parser unit test")
|
|
|
|
module.concatenate_datasets = _unused
|
|
module.load_dataset = _unused
|
|
return module
|
|
|
|
|
|
def _build_numpy_stub():
|
|
module = types.ModuleType("numpy")
|
|
module.argmax = lambda values: max(range(len(values)), key=values.__getitem__)
|
|
return module
|
|
|
|
|
|
def _build_tqdm_stub():
|
|
module = types.ModuleType("tqdm")
|
|
module.tqdm = lambda iterable=None, *args, **kwargs: iterable
|
|
return module
|
|
|
|
|
|
class TestMMMUEvalUtils(CustomTestCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.eval_utils = _load_mmmu_eval_utils()
|
|
|
|
def test_default_response_answer_regex_captures_multiline_response(self):
|
|
response = "Based on the diagram, compare the labeled points.\nAnswer: B"
|
|
|
|
answer = re.search(self.eval_utils.EvalArgs.response_answer_regex, response)
|
|
|
|
self.assertIsNotNone(answer)
|
|
self.assertEqual(answer.group(1), response)
|
|
|
|
def test_default_regex_extraction_preserves_multiline_answer_for_processing(self):
|
|
response = "Based on the diagram, compare the labeled points.\nAnswer: B"
|
|
sample = self._multiple_choice_sample(response)
|
|
answer = re.search(self.eval_utils.EvalArgs.response_answer_regex, response)
|
|
answer_dict = {}
|
|
out_samples = {}
|
|
previous_random_choice = self.eval_utils.random.choice
|
|
self.eval_utils.random.choice = lambda choices: "A"
|
|
try:
|
|
self.eval_utils.process_result(
|
|
answer.group(1).strip() if answer else response,
|
|
sample,
|
|
answer_dict,
|
|
out_samples,
|
|
)
|
|
finally:
|
|
self.eval_utils.random.choice = previous_random_choice
|
|
|
|
self.assertEqual(out_samples["sample-1"]["pred_ans"], "B")
|
|
|
|
def test_parse_multi_choice_prefers_explicit_answer_marker_after_copied_options(
|
|
self,
|
|
):
|
|
response = (
|
|
"The options are:\n"
|
|
"(A) red\n"
|
|
"(B) blue\n"
|
|
"(C) green\n"
|
|
"(D) yellow\n"
|
|
"Answer: B"
|
|
)
|
|
|
|
pred_ans = self.eval_utils.parse_multi_choice_response(
|
|
response, ["A", "B", "C", "D"], self._index_to_answer()
|
|
)
|
|
|
|
self.assertEqual(pred_ans, "B")
|
|
|
|
def test_parse_multi_choice_prefers_final_standalone_letter_after_copied_options(
|
|
self,
|
|
):
|
|
response = (
|
|
"The options are:\n"
|
|
"(A) red\n"
|
|
"(B) blue\n"
|
|
"(C) green\n"
|
|
"(D) yellow\n"
|
|
"The diagram rules out the other labels.\n"
|
|
"**B**"
|
|
)
|
|
|
|
pred_ans = self.eval_utils.parse_multi_choice_response(
|
|
response, ["A", "B", "C", "D"], self._index_to_answer()
|
|
)
|
|
|
|
self.assertEqual(pred_ans, "B")
|
|
|
|
def test_parse_multi_choice_prefers_latest_explicit_answer(self):
|
|
response = "Initial thought: Answer: A\nAfter checking the image again:\n**B**"
|
|
|
|
pred_ans = self.eval_utils.parse_multi_choice_response(
|
|
response, ["A", "B", "C", "D"], self._index_to_answer()
|
|
)
|
|
|
|
self.assertEqual(pred_ans, "B")
|
|
|
|
def test_parse_multi_choice_extracts_boxed_answer(self):
|
|
response = "After computing the integral the result lines up with \\boxed{C}."
|
|
|
|
pred_ans = self.eval_utils.parse_multi_choice_response(
|
|
response, ["A", "B", "C", "D"], self._index_to_answer()
|
|
)
|
|
|
|
self.assertEqual(pred_ans, "C")
|
|
|
|
def test_parse_multi_choice_extracts_the_answer_is(self):
|
|
response = "Reasoning about the diagram, the answer is D."
|
|
|
|
pred_ans = self.eval_utils.parse_multi_choice_response(
|
|
response, ["A", "B", "C", "D"], self._index_to_answer()
|
|
)
|
|
|
|
self.assertEqual(pred_ans, "D")
|
|
|
|
def test_parse_multi_choice_extracts_final_answer(self):
|
|
response = "Working through the steps...\nFinal answer: A"
|
|
|
|
pred_ans = self.eval_utils.parse_multi_choice_response(
|
|
response, ["A", "B", "C", "D"], self._index_to_answer()
|
|
)
|
|
|
|
self.assertEqual(pred_ans, "A")
|
|
|
|
def test_parse_multi_choice_extracts_correct_answer_phrase(self):
|
|
response = (
|
|
"(A) is wrong because the proportions do not match.\n"
|
|
"The correct answer is B."
|
|
)
|
|
|
|
pred_ans = self.eval_utils.parse_multi_choice_response(
|
|
response, ["A", "B", "C", "D"], self._index_to_answer()
|
|
)
|
|
|
|
self.assertEqual(pred_ans, "B")
|
|
|
|
def test_parse_multi_choice_ignores_parenthetical_option_mentions(self):
|
|
# Thinking-style outputs discuss/reject several options inside
|
|
# ``<think>...</think>`` using parenthetical mentions like ``(A)``,
|
|
# ``(B)``. Those mentions must NOT match any explicit-commit
|
|
# pattern, otherwise the latest-match heuristic would pick up a
|
|
# rejected option from the thinking text. Only the explicit
|
|
# ``Answer: D`` after ``</think>`` should win.
|
|
response = (
|
|
"<think>\n"
|
|
"Option (A) seems plausible but the diagram shows otherwise.\n"
|
|
"Maybe (B) given the labels — actually no, (B) is contradicted "
|
|
"by the second figure. Let me reconsider; the data points to D.\n"
|
|
"</think>\n"
|
|
"Answer: D"
|
|
)
|
|
|
|
pred_ans = self.eval_utils.parse_multi_choice_response(
|
|
response, ["A", "B", "C", "D"], self._index_to_answer()
|
|
)
|
|
|
|
self.assertEqual(pred_ans, "D")
|
|
|
|
def _multiple_choice_sample(self, response):
|
|
return {
|
|
"id": "sample-1",
|
|
"question_type": "multiple-choice",
|
|
"all_choices": ["A", "B", "C", "D"],
|
|
"index2ans": self._index_to_answer(),
|
|
"answer": "B",
|
|
"original_response": response,
|
|
}
|
|
|
|
def _index_to_answer(self):
|
|
return {"A": "red", "B": "blue", "C": "green", "D": "yellow"}
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|