2026-07-30 15:33:44 +00:00
|
|
|
concurrency: 1
|
|
|
|
|
command:
|
|
|
|
|
- python3
|
2026-08-12 01:25:01 +00:00
|
|
|
- -m
|
|
|
|
|
- vllm.entrypoints.openai.api_server
|
2026-07-30 15:33:44 +00:00
|
|
|
- --model
|
|
|
|
|
- /model
|
|
|
|
|
- --served-model-name
|
|
|
|
|
- llm
|
|
|
|
|
- --max-model-len
|
fix(critical): fold max_completion_tokens + max_num_seqs=2 + max_model_len=80000 + xllm_latest layer import
Sub 655 root causes (confirmed from log analysis):
1. protocol.py: max_completion_tokens never folded into max_tokens
→ 162/881 replay requests rejected 400 (extra_forbidden)
2. max_num_seqs=1 → t2_n_2 test fails (needs n=2)
3. max_model_len=131072 → OOM crash at 62% replay, opencompass all 0
Fixes:
- protocol.py: model_validator fold_max_completion_tokens
- yaml: max_num_seqs=2, max_model_len=80000, PYTORCH_CUDA_ALLOC_CONF
- topk_softmax stays =0 (corex CUB BlockReduce incompatible on BI-V100)
xllm_latest import to ex_engine/:
- npu_torch layers: GDN(1164L), Qwen3.5 GDN, attention, fused_moe
- cuda/moe kernels: topk_softmax_kernels.cuh, moe_combine, moe_compute_index
- npu kernels: causal_conv1d, recurrent_gated_delta_rule
- model headers: qwen3_5.h, qwen3_next.h
2026-08-13 03:19:39 +00:00
|
|
|
- '80000'
|
2026-07-30 15:33:44 +00:00
|
|
|
- --gpu-memory-utilization
|
2026-08-13 13:34:27 +00:00
|
|
|
- '0.80'
|
2026-07-30 15:33:44 +00:00
|
|
|
- --trust-remote-code
|
|
|
|
|
- -tp
|
|
|
|
|
- '4'
|
|
|
|
|
- --max-num-seqs
|
fix(critical): fold max_completion_tokens + max_num_seqs=2 + max_model_len=80000 + xllm_latest layer import
Sub 655 root causes (confirmed from log analysis):
1. protocol.py: max_completion_tokens never folded into max_tokens
→ 162/881 replay requests rejected 400 (extra_forbidden)
2. max_num_seqs=1 → t2_n_2 test fails (needs n=2)
3. max_model_len=131072 → OOM crash at 62% replay, opencompass all 0
Fixes:
- protocol.py: model_validator fold_max_completion_tokens
- yaml: max_num_seqs=2, max_model_len=80000, PYTORCH_CUDA_ALLOC_CONF
- topk_softmax stays =0 (corex CUB BlockReduce incompatible on BI-V100)
xllm_latest import to ex_engine/:
- npu_torch layers: GDN(1164L), Qwen3.5 GDN, attention, fused_moe
- cuda/moe kernels: topk_softmax_kernels.cuh, moe_combine, moe_compute_index
- npu kernels: causal_conv1d, recurrent_gated_delta_rule
- model headers: qwen3_5.h, qwen3_next.h
2026-08-13 03:19:39 +00:00
|
|
|
- '2'
|
2026-08-11 07:58:05 +00:00
|
|
|
- --disable-log-requests
|
|
|
|
|
- --disable-frontend-multiprocessing
|
2026-08-12 03:31:05 +00:00
|
|
|
- --max-num-batched-tokens
|
2026-08-13 16:36:17 +00:00
|
|
|
- '4096'
|
2026-08-13 16:35:49 +00:00
|
|
|
- --enable-chunked-prefill
|
2026-08-12 03:31:05 +00:00
|
|
|
- --max-seq-len-to-capture
|
|
|
|
|
- '32768'
|
2026-07-30 15:33:44 +00:00
|
|
|
- --enable-auto-tool-choice
|
|
|
|
|
- --tool-call-parser
|
|
|
|
|
- qwen3_coder
|
2026-08-12 01:25:01 +00:00
|
|
|
- --reasoning-parser
|
|
|
|
|
- qwen3
|
2026-07-30 15:33:44 +00:00
|
|
|
- --enable-prefix-caching
|
2026-08-12 11:14:01 +00:00
|
|
|
- --enforce-eager
|
|
|
|
|
- --dtype
|
|
|
|
|
- half
|
2026-07-30 15:33:44 +00:00
|
|
|
env:
|
|
|
|
|
- name: VLLM_ENGINE_ITERATION_TIMEOUT_S
|
2026-08-12 03:31:05 +00:00
|
|
|
value: 3600
|
|
|
|
|
- name: BI100_MOE_COREX_DIRECT_ROUTED
|
|
|
|
|
value: 1
|
|
|
|
|
- name: BI100_GDN_COREX_PACKED_DECODE
|
|
|
|
|
value: 1
|
|
|
|
|
- name: BI100_HYBRID_KV_ACCOUNTING
|
|
|
|
|
value: full_attention
|
|
|
|
|
- name: BI100_GDN_CACHE_POLICY
|
|
|
|
|
value: admission64
|
|
|
|
|
- name: BI100_GDN_RESTORE_MODE
|
|
|
|
|
value: hybrid64
|
2026-08-13 02:35:50 +00:00
|
|
|
- name: BI100_MOE_COREX_TOPK_SOFTMAX
|
2026-08-13 03:45:45 +00:00
|
|
|
value: '1'
|
fix(critical): fold max_completion_tokens + max_num_seqs=2 + max_model_len=80000 + xllm_latest layer import
Sub 655 root causes (confirmed from log analysis):
1. protocol.py: max_completion_tokens never folded into max_tokens
→ 162/881 replay requests rejected 400 (extra_forbidden)
2. max_num_seqs=1 → t2_n_2 test fails (needs n=2)
3. max_model_len=131072 → OOM crash at 62% replay, opencompass all 0
Fixes:
- protocol.py: model_validator fold_max_completion_tokens
- yaml: max_num_seqs=2, max_model_len=80000, PYTORCH_CUDA_ALLOC_CONF
- topk_softmax stays =0 (corex CUB BlockReduce incompatible on BI-V100)
xllm_latest import to ex_engine/:
- npu_torch layers: GDN(1164L), Qwen3.5 GDN, attention, fused_moe
- cuda/moe kernels: topk_softmax_kernels.cuh, moe_combine, moe_compute_index
- npu kernels: causal_conv1d, recurrent_gated_delta_rule
- model headers: qwen3_5.h, qwen3_next.h
2026-08-13 03:19:39 +00:00
|
|
|
- name: PYTORCH_CUDA_ALLOC_CONF
|
2026-08-13 11:22:32 +00:00
|
|
|
value: max_split_size_mb:512
|