Skip to content

Commit

Permalink
fix model path (#11973)
Browse files Browse the repository at this point in the history
  • Loading branch information
liu-shaojun authored Aug 30, 2024
1 parent e895e1b commit 1e8c870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/llm/serving/xpu/docker/vllm_online_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def benchmark(llm_urls, model, prompt, num_requests, max_concurrent_requests, ma
LLM_URLS = [f"http://localhost:{PORT}/v1/completions" for PORT in [8000]]


MODEL = "llm/models/" + model_name
MODEL = "/llm/models/" + model_name
MAX_TOKENS = 512

PROMPT = PROMPT_1024
Expand Down

0 comments on commit 1e8c870

Please sign in to comment.