Profiling hung for 30min then failed. Two causes: 1. max-num-seqs=2 (a3c45d3bused 1) — doubles profiling memory 2. flash_attn_varlen_func added to xformers patch —a3c45d3bhad none Restored: - yaml: max-num-seqs=1 (exacta3c45d3b) - patch_xformers_sdpa_seq.py: pure Q-tiling (exacta3c45d3b) Only diff froma3c45d3b: - yaml: BI100_MOE_COREX_TOPK_SOFTMAX=1 (was 0) - protocol.py: extra=allow - qwen3_5.py: corex_gdn_chunk_recurrent + corex_moe_index_combine imports - prebuilt: 14 .so (was 13)
50 lines
1.1 KiB
YAML
50 lines
1.1 KiB
YAML
concurrency: 1
|
|
command:
|
|
- python3
|
|
- -m
|
|
- vllm.entrypoints.openai.api_server
|
|
- --model
|
|
- /model
|
|
- --served-model-name
|
|
- llm
|
|
- --max-model-len
|
|
- '131072'
|
|
- --gpu-memory-utilization
|
|
- '0.90'
|
|
- --trust-remote-code
|
|
- -tp
|
|
- '4'
|
|
- --max-num-seqs
|
|
- '1'
|
|
- --disable-log-requests
|
|
- --disable-frontend-multiprocessing
|
|
- --max-num-batched-tokens
|
|
- '8192'
|
|
- --enable-chunked-prefill
|
|
- --max-seq-len-to-capture
|
|
- '32768'
|
|
- --enable-auto-tool-choice
|
|
- --tool-call-parser
|
|
- qwen3_coder
|
|
- --reasoning-parser
|
|
- qwen3
|
|
- --enable-prefix-caching
|
|
- --enforce-eager
|
|
- --dtype
|
|
- half
|
|
env:
|
|
- name: VLLM_ENGINE_ITERATION_TIMEOUT_S
|
|
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
|
|
- name: BI100_MOE_COREX_TOPK_SOFTMAX
|
|
value: '1'
|