Skip to content

Commit b58b25c

Browse files
committed
added missing import statements
1 parent c9c1b31 commit b58b25c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/scripts/run_vllm_profiling.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ echo " Port: ${PORT:-8000}"
1616
echo " Num Prompts: ${NUM_PROMPTS:-100}"
1717
echo " VLLM_USE_V1: ${VLLM_USE_V1:-1}"
1818

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+
1924
# Ensure we're in the right directory (mounted workspace)
2025
cd /tmp/workspace/vllm
2126

0 commit comments

Comments
 (0)