Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion examples/serve/genai_perf_client.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
#! /usr/bin/env bash

# Set to TinyLlama/TinyLlama-1.1B-Chat-v1.0 to download from Hugging Face.
# Or set to the path of local tokenizer directory.
TOKENIZER_PATH_OR_NAME="/scratch.trt_llm_data/llm-models/llama-models-v2/TinyLlama-1.1B-Chat-v1.0"
genai-perf profile \
-m TinyLlama-1.1B-Chat-v1.0 \
--tokenizer TinyLlama/TinyLlama-1.1B-Chat-v1.0 \
--tokenizer $TOKENIZER_PATH_OR_NAME \
--endpoint-type chat \
--random-seed 123 \
--synthetic-input-tokens-mean 128 \
Expand Down
5 changes: 4 additions & 1 deletion examples/serve/genai_perf_client_for_multimodal.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
#! /usr/bin/env bash

# Set to Qwen/Qwen2.5-VL-3B-Instruct to download from Hugging Face.
# Or set to the path of local tokenizer directory.
TOKENIZER_PATH_OR_NAME="/scratch.trt_llm_data/llm-models/Qwen2.5-VL-3B-Instruct"
genai-perf profile \
-m Qwen2.5-VL-3B-Instruct \
--tokenizer Qwen/Qwen2.5-VL-3B-Instruct \
--tokenizer $TOKENIZER_PATH_OR_NAME \
--endpoint-type multimodal \
--random-seed 123 \
--image-width-mean 64 \
Expand Down
Loading