project_7 docker build 已在竞赛平台验证成功。 完整搬运 wudixzy/competition stack: - qwen3_5.py 2615 行 (12 个 corex .so 调用) - patch_ops.sh 251 行 (set -eo pipefail + cd dirname) - 12 prebuilt corex .so (SHA256 verified) - 13 CUDA .cu 源码 + 11 build scripts - 9 vendor overrides (block/sampler/scheduler) - transformers-4.55.3 offline wheel - computility-run.yaml: 262144 max-model-len, BI100 env vars - Dockerfile 结构不变 (COPY qwen3_6_scripts + RUN patch_ops.sh)
17 lines
488 B
Python
17 lines
488 B
Python
"""
|
|
Reasoning parser module for vLLM 0.6.3 (BI-V100 / Qwen3.6-35B-A3B adaptation).
|
|
|
|
Usage: --reasoning-parser qwen3
|
|
"""
|
|
|
|
from vllm.reasoning.abs_reasoning_parsers import ReasoningParser, ReasoningParserManager
|
|
|
|
__all__ = ["ReasoningParser", "ReasoningParserManager"]
|
|
|
|
# Lazy-register Qwen3 parser; imported on first get_reasoning_parser("qwen3").
|
|
ReasoningParserManager.register_lazy(
|
|
"qwen3",
|
|
"vllm.reasoning.qwen3_reasoning_parser",
|
|
"Qwen3ReasoningParser",
|
|
)
|