Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions scripts/run_ci_xpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ python -m fastdeploy.entrypoints.openai.api_server \
--num-gpu-blocks-override 16384 \
--max-model-len 32768 \
--max-num-seqs 128 \
--quantization wint4 > server.log 2>&1 &
--quantization wint4 \
--enable-prefix-caching \
--enable-chunked-prefill > server.log 2>&1 &

sleep 60
# 探活
Expand Down Expand Up @@ -240,7 +242,8 @@ python -m fastdeploy.entrypoints.openai.api_server \
--enable-mm \
--mm-processor-kwargs '{"video_max_frames": 30}' \
--limit-mm-per-prompt '{"image": 10, "video": 3}' \
--reasoning-parser ernie-45-vl > server.log 2>&1 &
--reasoning-parser ernie-45-vl \
--enable-chunked-prefill > server.log 2>&1 &

sleep 60
# 探活
Expand Down
Loading