Skip to content

Commit 4576e63

Browse files
committed
fix name
1 parent 334fe3f commit 4576e63

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/scripts/run_vllm_profiling.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ run_profiling_tests() {
108108
# Create a profiling sub-directory for each test case to isolate the
109109
# generated traces using the S3 path structure
110110
MODEL_NAME=$(echo "$server_params" | jq -r '.model')
111-
local sanitized_model_name="${MODEL_NAME// /_}"
111+
# Sanitize model name: Replace / with _
112+
local sanitized_model_name="${MODEL_NAME//\//_}"
112113

113114
# Build the directory path following S3 structure
114115
local model_name_directory="${base_profiler_dir}"

0 commit comments

Comments
 (0)