Skip to content
Open
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
8 changes: 7 additions & 1 deletion benchmarks/single_node/dsv4_fp8_h200.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ hf download "$MODEL"

SERVER_LOG=/workspace/server.log
PORT=${PORT:-8888}
ENABLE_DSV4_REASONING_PARSER=${ENABLE_DSV4_REASONING_PARSER:-false}

# DeepSeek-V4-Pro weights are large; engine startup can exceed the default
# 600s. Give it an hour to load.
Expand All @@ -37,6 +38,11 @@ else
MAX_MODEL_LEN_ARG="--max-model-len 800000"
fi

REASONING_PARSER_ARGS=()
if [[ "${ENABLE_DSV4_REASONING_PARSER}" == "true" ]]; then
REASONING_PARSER_ARGS+=(--reasoning-parser deepseek_v4)
fi

# Start GPU monitoring (power, temperature, clocks every second)
start_gpu_monitor

Expand All @@ -60,7 +66,7 @@ $MAX_MODEL_LEN_ARG \
--tokenizer-mode deepseek_v4 \
--tool-call-parser deepseek_v4 \
--enable-auto-tool-choice \
--reasoning-parser deepseek_v4 > $SERVER_LOG 2>&1 &
"${REASONING_PARSER_ARGS[@]}" > $SERVER_LOG 2>&1 &

SERVER_PID=$!

Expand Down