Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
a30d5d75
Unverified
Commit
a30d5d75
authored
Jul 30, 2024
by
Yineng Zhang
Committed by
GitHub
Jul 30, 2024
Browse files
feat: add pr e2e test (#822)
parent
17af39c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
13 deletions
+30
-13
.github/workflows/pr-e2e-test.yml
.github/workflows/pr-e2e-test.yml
+30
-13
No files found.
.github/workflows/pr-e2e-test.yml
View file @
a30d5d75
...
...
@@ -12,19 +12,36 @@ jobs:
runs-on
:
self-hosted
env
:
CUDA_VISIBLE_DEVICES
:
6
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Check GPU
run
:
|
if ! command -v nvidia-smi &> /dev/null; then
echo "nvidia-smi not found. Is CUDA installed?"
exit 1
fi
nvidia-smi || exit 1
-
name
:
Environment Info
-
name
:
Checkout code
uses
:
actions/checkout@v3
-
name
:
Install dependencies
run
:
|
echo "Working directory: $(pwd)"
echo "CUDA_VISIBLE_DEVICES: $CUDA_VISIBLE_DEVICES"
-
name
:
Run Tests
pip install --upgrade pip
pip install -e "python[all]"
pip install flashinfer -i https://flashinfer.ai/whl/cu121/torch2.3/ --force-reinstall
pip install --upgrade transformers
-
name
:
Launch server and run benchmark
run
:
|
echo "Running tests..."
python3 -m sglang.launch_server --model /home/lmzheng/zhyncs/Meta-Llama-3.1-8B-Instruct --port 8413 &
echo "Waiting for server to start..."
for i in {1..60}; do
if curl -s http://127.0.0.1:8413/health; then
echo "Server is up!"
break
fi
if [ $i -eq 60 ]; then
echo "Server failed to start within 60 seconds"
exit 1
fi
sleep 1
done
python3 -m sglang.bench_serving --backend sglang --port 8413
echo "Stopping server..."
kill -9 $(ps aux | grep sglang | grep Meta-Llama-3.1-8B-Instruct | grep -v grep | awk '{print $2}')
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment