[XPU] xpu kernel release workflow (#33679)
This commit is contained in:
@@ -0,0 +1,148 @@
|
||||
name: Release SGLang XPU Kernel
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tag_name:
|
||||
description: "Version number, must be in the form of vX.Y.Z (e.g. v0.1.0)"
|
||||
type: string
|
||||
required: true
|
||||
pr_number:
|
||||
description: "PR number to build from (e.g. 12345)"
|
||||
type: string
|
||||
required: false
|
||||
|
||||
concurrency:
|
||||
group: release-sglang-xpu-kernel-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build-xpu:
|
||||
if: github.repository == 'sgl-project/sglang'
|
||||
runs-on: x64-docker-build-node
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.10"]
|
||||
steps:
|
||||
# Self-hosted build nodes retain the workspace across jobs. Prior builds
|
||||
# can leave root-owned artifacts that actions/checkout cannot remove.
|
||||
- name: Clean workspace (remove root-owned files from prior runs)
|
||||
run: |
|
||||
docker run --rm -v "${{ github.workspace }}:/workspace" alpine:3 \
|
||||
sh -c 'rm -rf /workspace/..?* /workspace/.[!.]* /workspace/*' || true
|
||||
|
||||
- name: Checkout SGLang
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ inputs.pr_number && format('refs/pull/{0}/head', inputs.pr_number) || '' }}
|
||||
|
||||
- name: Set XPU kernel release metadata
|
||||
id: xpu_meta
|
||||
run: |
|
||||
set -euo pipefail
|
||||
TAG_NAME="${{ inputs.tag_name }}"
|
||||
VERSION="${TAG_NAME#v}"
|
||||
BRANCH="release/${TAG_NAME}"
|
||||
echo "tag_name=${TAG_NAME}" >> "$GITHUB_OUTPUT"
|
||||
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
|
||||
echo "branch=${BRANCH}" >> "$GITHUB_OUTPUT"
|
||||
echo "Building sgl-kernel-xpu ${TAG_NAME} from ${BRANCH}"
|
||||
|
||||
- name: Checkout SGLang XPU kernel
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: sgl-project/sgl-kernel-xpu
|
||||
ref: ${{ steps.xpu_meta.outputs.branch }}
|
||||
path: sgl-kernel-xpu
|
||||
|
||||
- name: Build native XPU Docker image
|
||||
run: |
|
||||
set -euo pipefail
|
||||
IMAGE="sglang-xpu-kernel-release:${{ steps.xpu_meta.outputs.version }}"
|
||||
docker build sgl-kernel-xpu \
|
||||
-f sgl-kernel-xpu/Dockerfile.xpu_kernel \
|
||||
--build-arg PYTHON_VERSION=${{ matrix.python-version }} \
|
||||
--build-arg SG_LANG_REPO=https://github.com/sgl-project/sglang.git \
|
||||
--build-arg SG_LANG_BRANCH=main \
|
||||
--build-arg SG_LANG_KERNEL_REPO=https://github.com/sgl-project/sgl-kernel-xpu.git \
|
||||
--build-arg SG_LANG_KERNEL_BRANCH=${{ steps.xpu_meta.outputs.branch }} \
|
||||
--no-cache --progress=plain \
|
||||
-t "${IMAGE}"
|
||||
echo "XPU_IMAGE=${IMAGE}" >> "$GITHUB_ENV"
|
||||
|
||||
- name: Build and export XPU kernel wheels
|
||||
run: |
|
||||
set -euo pipefail
|
||||
docker rm -f sgl_kernel_xpu_release_build || true
|
||||
docker run -dt \
|
||||
--device /dev/dri/ \
|
||||
--name sgl_kernel_xpu_release_build \
|
||||
-e CMAKE_BUILD_PARALLEL_LEVEL=64 \
|
||||
-e MAX_JOBS=64 \
|
||||
"${XPU_IMAGE}" \
|
||||
/bin/bash -lc 'sleep infinity'
|
||||
docker exec \
|
||||
-w /root/sglang/sgl-kernel-xpu \
|
||||
sgl_kernel_xpu_release_build \
|
||||
/bin/bash -lc '
|
||||
set -exo pipefail
|
||||
source /opt/intel/oneapi/setvars.sh --force
|
||||
command -v patchelf || (apt-get update && apt-get install -y patchelf)
|
||||
python scripts/build_rel_wheel.py
|
||||
ls -lh dist
|
||||
'
|
||||
mkdir -p python/sglang/kernels/aot/dist
|
||||
docker cp sgl_kernel_xpu_release_build:/root/sglang/sgl-kernel-xpu/dist/. python/sglang/kernels/aot/dist/
|
||||
ls -lh python/sglang/kernels/aot/dist/sglang_kernel_xpu-*.whl
|
||||
|
||||
- name: Cleanup XPU kernel build container
|
||||
if: always()
|
||||
run: docker rm -f sgl_kernel_xpu_release_build || true
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: wheel-python${{ matrix.python-version }}-xpu
|
||||
path: python/sglang/kernels/aot/dist/sglang_kernel_xpu-*.whl
|
||||
|
||||
release-xpu:
|
||||
if: github.repository == 'sgl-project/sglang'
|
||||
needs: build-xpu
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ inputs.pr_number && format('refs/pull/{0}/head', inputs.pr_number) || '' }}
|
||||
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: python/sglang/kernels/aot/dist/
|
||||
merge-multiple: true
|
||||
pattern: wheel-*-xpu
|
||||
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
tag_name: ${{ inputs.tag_name }}
|
||||
repository: sgl-project/whl
|
||||
token: ${{ secrets.GH_PAT_FOR_WHL_RELEASE }}
|
||||
files: |
|
||||
python/sglang/kernels/aot/dist/sglang_kernel_xpu-*.whl
|
||||
|
||||
- name: Clone wheel index
|
||||
run: git clone https://oauth2:${WHL_TOKEN}@github.com/sgl-project/whl.git sgl-whl
|
||||
env:
|
||||
WHL_TOKEN: ${{ secrets.GH_PAT_FOR_WHL_RELEASE }}
|
||||
|
||||
- name: Update wheel index
|
||||
run: python3 scripts/update_kernel_whl_index.py --xpu
|
||||
|
||||
- name: Push wheel index
|
||||
run: |
|
||||
cd sgl-whl
|
||||
git config --local user.name "sglang-bot"
|
||||
git config --local user.email "sglangbot@gmail.com"
|
||||
git add -A
|
||||
git commit -m "update whl index"
|
||||
git push
|
||||
@@ -11,10 +11,12 @@ DEFAULT_CUDA_VERSION = "130"
|
||||
|
||||
|
||||
def check_wheel_cuda_version(path_name, target_cuda_version):
|
||||
# Skip non-CUDA backend wheels (rocm, musa, ...). Their +<backend><ver>
|
||||
# local-version tags don't match the CUDA wheel regex below, and they are
|
||||
# published by the dedicated release-rocm*/release-musa* jobs.
|
||||
if re.search(r"\+(rocm|musa)", path_name):
|
||||
# Skip non-CUDA backend wheels. ROCm/MUSA encode the backend in the
|
||||
# local-version tag (for example +rocm720), while XPU uses a dedicated
|
||||
# package name (sglang_kernel_xpu-*).
|
||||
if re.search(r"\+(rocm|musa)", path_name) or path_name.startswith(
|
||||
"sglang_kernel_xpu-"
|
||||
):
|
||||
return False
|
||||
|
||||
# For other CUDA versions, the wheel path name will contain the cuda version suffix, e.g. sglang_kernel-0.4.0+cu130-cp310-abi3-manylinux2014_x86_64.whl
|
||||
@@ -48,8 +50,14 @@ def update_wheel_index(cuda_version=DEFAULT_CUDA_VERSION, rocm_version=None):
|
||||
f.write(f'<a href="{full_url}">{path.name}</a><br>\n')
|
||||
|
||||
|
||||
def _update_non_cuda_wheel_index(backend, version):
|
||||
index_dir = pathlib.Path(f"sgl-whl/{backend}{version}/sglang-kernel")
|
||||
def _update_non_cuda_wheel_index(
|
||||
backend,
|
||||
version=None,
|
||||
package_name="sglang_kernel",
|
||||
index_package_name="sglang-kernel",
|
||||
):
|
||||
backend_dir = f"{backend}{version or ''}"
|
||||
index_dir = pathlib.Path(f"sgl-whl/{backend_dir}/{index_package_name}")
|
||||
index_dir.mkdir(exist_ok=True, parents=True)
|
||||
base_url = "https://github.com/sgl-project/whl/releases/download"
|
||||
|
||||
@@ -60,7 +68,7 @@ def _update_non_cuda_wheel_index(backend, version):
|
||||
with open(path, "rb") as f:
|
||||
sha256 = hashlib.sha256(f.read()).hexdigest()
|
||||
ver = re.findall(
|
||||
rf"sglang_kernel-([0-9.]+(?:\.post[0-9]+)?)(?:\+{backend}[0-9]+)?-",
|
||||
rf"{re.escape(package_name)}-([0-9.]+(?:\.post[0-9]+)?)(?:\+{backend}[0-9]+)?-",
|
||||
path.name,
|
||||
)[0]
|
||||
full_url = f"{base_url}/v{ver}/{path.name}#sha256={sha256}"
|
||||
@@ -68,6 +76,14 @@ def _update_non_cuda_wheel_index(backend, version):
|
||||
f.write(f'<a href="{full_url}">{path.name}</a><br>\n')
|
||||
|
||||
|
||||
def update_wheel_index_xpu():
|
||||
_update_non_cuda_wheel_index(
|
||||
"xpu",
|
||||
package_name="sglang_kernel_xpu",
|
||||
index_package_name="sglang-kernel-xpu",
|
||||
)
|
||||
|
||||
|
||||
def update_wheel_index_rocm(rocm_version):
|
||||
_update_non_cuda_wheel_index("rocm", rocm_version)
|
||||
|
||||
@@ -81,8 +97,11 @@ def main():
|
||||
parser.add_argument("--cuda", type=str, default=DEFAULT_CUDA_VERSION)
|
||||
parser.add_argument("--rocm", type=str, default=None)
|
||||
parser.add_argument("--musa", type=str, default=None)
|
||||
parser.add_argument("--xpu", action="store_true")
|
||||
args = parser.parse_args()
|
||||
if args.musa is not None:
|
||||
if args.xpu:
|
||||
update_wheel_index_xpu()
|
||||
elif args.musa is not None:
|
||||
update_wheel_index_musa(args.musa)
|
||||
elif args.rocm is not None:
|
||||
update_wheel_index_rocm(args.rocm)
|
||||
|
||||
Reference in New Issue
Block a user