There was an error while loading. Please reload this page.
1 parent c9c1b31 commit b58b25cCopy full SHA for b58b25c
1 file changed
.github/scripts/run_vllm_profiling.sh
@@ -16,6 +16,11 @@ echo " Port: ${PORT:-8000}"
16
echo " Num Prompts: ${NUM_PROMPTS:-100}"
17
echo " VLLM_USE_V1: ${VLLM_USE_V1:-1}"
18
19
+# Install required dependencies
20
+echo "Installing required dependencies..."
21
+(which curl) || (apt-get update && apt-get install -y curl)
22
+(which lsof) || (apt-get update && apt-get install -y lsof)
23
+
24
# Ensure we're in the right directory (mounted workspace)
25
cd /tmp/workspace/vllm
26
0 commit comments