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
a22f60a3
Unverified
Commit
a22f60a3
authored
Jan 24, 2025
by
Ke Bao
Committed by
GitHub
Jan 24, 2025
Browse files
Add workflow for sgl-kernel cu118 release (#3109)
parent
04f0b4cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
66 additions
and
1 deletion
+66
-1
.github/workflows/release-whl-kernel.yml
.github/workflows/release-whl-kernel.yml
+59
-0
sgl-kernel/build.sh
sgl-kernel/build.sh
+7
-1
No files found.
.github/workflows/release-whl-kernel.yml
0 → 100644
View file @
a22f60a3
name
:
Release SGLang Kernel Wheel (cu118)
on
:
workflow_dispatch
:
inputs
:
tag_name
:
required
:
true
type
:
string
jobs
:
build-wheels
:
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
ubuntu-latest
strategy
:
matrix
:
python-version
:
[
'
3.9'
,
'
3.10'
,
'
3.11'
,
'
3.12'
]
cuda-version
:
[
'
11.8'
]
steps
:
-
uses
:
actions/checkout@v4
with
:
submodules
:
'
recursive'
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v5
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Build wheels for Python ${{ matrix.python-version }} and CUDA ${{ matrix.cuda-version }}
run
:
|
cd sgl-kernel
chmod +x ./build.sh
./build.sh "${{ matrix.python-version }}" "${{ matrix.cuda-version }}"
-
name
:
Upload artifacts
uses
:
actions/upload-artifact@v4
with
:
name
:
wheel-python${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
path
:
sgl-kernel/dist/*
release
:
needs
:
build-wheels
runs-on
:
ubuntu-latest
steps
:
-
name
:
Download artifacts
uses
:
actions/download-artifact@v4
with
:
path
:
sgl-kernel/dist/
merge-multiple
:
true
pattern
:
wheel-*
-
name
:
Release
uses
:
softprops/action-gh-release@v2
with
:
tag_name
:
${{ inputs.tag_name }}
repository
:
sgl-project/whl
token
:
${{ secrets.WHL_TOKEN }}
files
:
|
sgl-kernel/dist/*
sgl-kernel/build.sh
View file @
a22f60a3
...
...
@@ -4,6 +4,12 @@ PYTHON_VERSION=$1
CUDA_VERSION
=
$2
PYTHON_ROOT_PATH
=
/opt/python/cp
${
PYTHON_VERSION
//.
}
-cp
${
PYTHON_VERSION
//.
}
if
((
${
CUDA_VERSION
%.*
}
< 12
))
;
then
ENABLE_SM90A
=
0
else
ENABLE_SM90A
=
1
fi
docker run
--rm
\
-v
"
$(
pwd
)
"
:/sgl-kernel
\
pytorch/manylinux-builder:cuda
${
CUDA_VERSION
}
\
...
...
@@ -13,7 +19,7 @@ docker run --rm \
export CUDA_VERSION=
${
CUDA_VERSION
}
&&
\
export SGL_KERNEL_ENABLE_BF16=1 &&
\
export SGL_KERNEL_ENABLE_FP8=1 &&
\
export SGL_KERNEL_ENABLE_SM90A=
1
&&
\
export SGL_KERNEL_ENABLE_SM90A=
${
ENABLE_SM90A
}
&&
\
mkdir -p /usr/lib/x86_64-linux-gnu/ &&
\
ln -s /usr/local/cuda-
${
CUDA_VERSION
}
/targets/x86_64-linux/lib/stubs/libcuda.so /usr/lib/x86_64-linux-gnu/libcuda.so &&
\
cd /sgl-kernel &&
\
...
...
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