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 579c719 commit 4a7f7a2Copy full SHA for 4a7f7a2
.github/workflows/sglang-benchmark.yml
@@ -88,7 +88,7 @@ jobs:
88
with:
89
repository: sgl-project/sglang
90
path: sglang-benchmarks/sglang
91
- ref: ${{ inputs.sglang_branch || 'v0.5.1.post2' }}
+ ref: ${{ inputs.sglang_branch || 'main' }}
92
fetch-depth: 0
93
94
- uses: actions/setup-python@v5
@@ -126,6 +126,8 @@ jobs:
126
127
if [[ "${DEVICE_NAME}" == "cuda" ]]; then
128
DEVICE_TYPE=$(nvidia-smi -i 0 --query-gpu=name --format=csv,noheader | awk '{print $2}')
129
+ CUDA_HOME="/usr/local/cuda"
130
+ echo "CUDA_HOME=$CUDA_HOME" >> $GITHUB_ENV
131
elif [[ "${DEVICE_NAME}" == "rocm" ]]; then
132
DEVICE_TYPE=$(rocminfo | grep "Marketing Name" | tail -n1 | awk -F':' '{print $2}' | xargs)
133
elif [[ "${DEVICE_NAME}" == "cpu" ]]; then
0 commit comments