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 69501bf commit 7be3208Copy full SHA for 7be3208
.github/scripts/run_vllm_profiling.sh
@@ -39,8 +39,12 @@ install_dependencies() {
39
}
40
41
setup_workspace() {
42
- # Ensure we're in the right directory (mounted workspace)
43
- cd /tmp/workspace/vllm
+ # Ensure we're in the workspace directory, but don't go into vllm source
+ # The Docker container has vLLM pre-installed, we shouldn't run from source
44
+ cd /tmp/workspace
45
+
46
+ # Create the profiling directory if it doesn't exist
47
+ mkdir -p "$(dirname "${VLLM_TORCH_PROFILER_DIR/#\~/$HOME}")" 2>/dev/null || true
48
49
50
wait_for_server() {
0 commit comments