Update docs (#1839)

This commit is contained in:
Lianmin Zheng
2024-10-30 02:49:08 -07:00
committed by GitHub
parent 539df95d2c
commit b548801ddb
11 changed files with 165 additions and 198 deletions

View File

@@ -1,3 +1,7 @@
"""
Install the dependency in CI.
"""
pip install --upgrade pip
pip install -e "python[all]"
pip install transformers==4.45.2

View File

@@ -1,2 +1,6 @@
"""
Kill all SGLang processes and free the GPU memory.
"""
kill -9 $(ps aux | grep 'multiprocessing.spawn' | grep -v 'grep' | awk '{print $2}')
kill -9 $(ps aux | grep 'sglang.launch_server' | grep -v 'grep' | awk '{print $2}')

View File

@@ -1,6 +1,7 @@
#!/bin/bash
# This script tags all remote branches starting with 'v' with the same name as the branch,
# This script is used for release.
# It tags all remote branches starting with 'v' with the same name as the branch,
# deletes the corresponding branches from the remote, and pushes the tags to the remote repository.
git fetch origin --prune