Sub168 scored 60194.6 with these exact params: - max_model_len=100000 (was 256000) - max_num_seqs=1 (was 2 → caused crash cascade) - gpu_memory_utilization=0.9 (was 0.95) - chunked_prefill=disabled (was enabled) - max_num_batched_tokens=default (was 4096) - max_seq_len_to_capture=8192 (was 32768) Root cause of Sub508/509 0-score: engine crash at t2_n_2 with max_num_seqs=2 caused Connection Refused cascade.
57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
concurrency: 1
|
|
command:
|
|
- python3
|
|
- -m
|
|
- vllm.entrypoints.openai.api_server
|
|
- --model
|
|
- /model
|
|
- --served-model-name
|
|
- llm
|
|
- --max-model-len
|
|
- '100000'
|
|
- --gpu-memory-utilization
|
|
- '0.9'
|
|
- --trust-remote-code
|
|
- -tp
|
|
- '4'
|
|
- --max-num-seqs
|
|
- '1'
|
|
- --disable-log-requests
|
|
- --disable-frontend-multiprocessing
|
|
- --enforce-eager
|
|
- --enable-auto-tool-choice
|
|
- --tool-call-parser
|
|
- qwen3_coder
|
|
- --reasoning-parser
|
|
- qwen3
|
|
- --enable-prefix-caching
|
|
- --max-seq-len-to-capture
|
|
- '8192'
|
|
- --dtype
|
|
- half
|
|
env:
|
|
- name: VLLM_ENGINE_ITERATION_TIMEOUT_S
|
|
value: '3600'
|
|
- name: VLLM_ATTENTION_BACKEND
|
|
value: XFORMERS
|
|
- name: ENABLE_CUSTOM_IPC
|
|
value: '1'
|
|
- name: PYTHONPATH
|
|
value: /usr/local/corex/lib/python3/dist-packages:/usr/local/corex/lib64/python3/dist-packages
|
|
- name: LD_LIBRARY_PATH
|
|
value: /usr/local/corex/lib64:/usr/local/openmpi/lib
|
|
- name: VLLM_COREX_FA2_LIBRARY
|
|
value: /usr/local/corex/lib64/libcorex_fa2.so
|
|
- name: VLLM_COREX_GDN_LIBRARY
|
|
value: /usr/local/corex/lib64/libcorex_gdn.so
|
|
- name: VLLM_COREX_MOE_LIBRARY
|
|
value: /usr/local/corex/lib64/libcorex_moe.so
|
|
- name: VLLM_REQUEST_METRICS_FILE
|
|
value: /tmp/vllm-request-metrics.jsonl
|
|
- name: VLLM_CACHE_BLOCK_SIZE
|
|
value: '16'
|
|
- name: PYTORCH_CUDA_ALLOC_CONF
|
|
value: max_split_size_mb:512
|
|
- name: OMP_NUM_THREADS
|
|
value: '1'
|