We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 334fe3f commit 4576e63Copy full SHA for 4576e63
.github/scripts/run_vllm_profiling.sh
@@ -108,7 +108,8 @@ run_profiling_tests() {
108
# Create a profiling sub-directory for each test case to isolate the
109
# generated traces using the S3 path structure
110
MODEL_NAME=$(echo "$server_params" | jq -r '.model')
111
- local sanitized_model_name="${MODEL_NAME// /_}"
+ # Sanitize model name: Replace / with _
112
+ local sanitized_model_name="${MODEL_NAME//\//_}"
113
114
# Build the directory path following S3 structure
115
local model_name_directory="${base_profiler_dir}"
0 commit comments