Files
project_6/computility-run.yaml
project6 a3839dd411 fix(CRITICAL): add --limit-mm-per-prompt image=5 — multimodal request kills engine
Engine crash: ValueError: You set image=0 (or defaulted to 1) in
--limit-mm-per-prompt, but found 1 items in the same prompt.

This kills the entire vLLM engine (AsyncEngineDeadError), making all
subsequent requests return 503. Competition sends image requests in
functional tests (d08/d09 multimodal).

Fix: --limit-mm-per-prompt image=5 allows up to 5 images per prompt.
2026-08-10 09:29:54 +00:00

52 lines
1.3 KiB
YAML

concurrency: 1
command:
- python3
- -m
- vllm.entrypoints.openai.api_server
- --model
- /model
- --served-model-name
- llm
- --max-model-len
- '80000'
- --gpu-memory-utilization
- '0.95'
- --trust-remote-code
- -tp
- '4'
- --max-num-seqs
- '2'
- --max-num-batched-tokens
- '4096'
- --enable-chunked-prefill
- --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
- --limit-mm-per-prompt
- image=5
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:/usr/local/corex/lib64/python3/dist-packages/ixformer
- name: PYTORCH_CUDA_ALLOC_CONF
value: max_split_size_mb:512
- name: OMP_NUM_THREADS
value: '1'