Unverified Commit 3f287b85 authored by Yineng Zhang's avatar Yineng Zhang Committed by GitHub
Browse files

support sgl-kernel on blackwell (#5074)

parent 7ed77d6b
#!/bin/bash #!/bin/bash
set -ex set -ex
PYTHON_VERSION=$1 PYTHON_VERSION=$1
CUDA_VERSION=$2 CUDA_VERSION=$2
PYTHON_ROOT_PATH=/opt/python/cp${PYTHON_VERSION//.}-cp${PYTHON_VERSION//.} PYTHON_ROOT_PATH=/opt/python/cp${PYTHON_VERSION//.}-cp${PYTHON_VERSION//.}
ENABLE_SM90A=$(( ${CUDA_VERSION%.*} >= 12 ? ON : OFF ))
if (( ${CUDA_VERSION%.*} < 12 )); then if [ ${CUDA_VERSION} = "12.8" ]; then
ENABLE_SM90A=0 DOCKER_IMAGE="pytorch/manylinux2_28-builder:cuda${CUDA_VERSION}"
TORCH_INSTALL="pip install --no-cache-dir --pre torch --index-url https://download.pytorch.org/whl/nightly/cu${CUDA_VERSION//.}"
else else
ENABLE_SM90A=1 DOCKER_IMAGE="pytorch/manylinux-builder:cuda${CUDA_VERSION}"
TORCH_INSTALL="pip install --no-cache-dir torch==2.5.1 --index-url https://download.pytorch.org/whl/cu${CUDA_VERSION//.}"
fi fi
docker run --rm \ docker run --rm \
-v $(pwd):/sgl-kernel \ -v $(pwd):/sgl-kernel \
pytorch/manylinux-builder:cuda${CUDA_VERSION} \ ${DOCKER_IMAGE} \
bash -c " bash -c "
${PYTHON_ROOT_PATH}/bin/pip install --no-cache-dir torch==2.5.1 --index-url https://download.pytorch.org/whl/cu${CUDA_VERSION//.} && \ ${PYTHON_ROOT_PATH}/bin/${TORCH_INSTALL} && \
${PYTHON_ROOT_PATH}/bin/pip install --no-cache-dir ninja setuptools==75.0.0 wheel==0.41.0 numpy uv && \ ${PYTHON_ROOT_PATH}/bin/pip install --no-cache-dir ninja setuptools==75.0.0 wheel==0.41.0 numpy uv && \
export TORCH_CUDA_ARCH_LIST='7.5 8.0 8.9 9.0+PTX' && \ export TORCH_CUDA_ARCH_LIST='7.5 8.0 8.9 9.0+PTX' && \
export CUDA_VERSION=${CUDA_VERSION} && \ export CUDA_VERSION=${CUDA_VERSION} && \
export SGL_KERNEL_ENABLE_BF16=1 && \ mkdir -p /usr/lib/x86_64-linux-gnu/ && \
export SGL_KERNEL_ENABLE_FP8=1 && \ ln -s /usr/local/cuda-${CUDA_VERSION}/targets/x86_64-linux/lib/stubs/libcuda.so /usr/lib/x86_64-linux-gnu/libcuda.so && \
export SGL_KERNEL_ENABLE_SM90A=${ENABLE_SM90A} && \ cd /sgl-kernel && \
mkdir -p /usr/lib/x86_64-linux-gnu/ && \ ls -la ${PYTHON_ROOT_PATH}/lib/python${PYTHON_VERSION}/site-packages/wheel/ && \
ln -s /usr/local/cuda-${CUDA_VERSION}/targets/x86_64-linux/lib/stubs/libcuda.so /usr/lib/x86_64-linux-gnu/libcuda.so && \ PYTHONPATH=${PYTHON_ROOT_PATH}/lib/python${PYTHON_VERSION}/site-packages ${PYTHON_ROOT_PATH}/bin/python -m uv build --wheel -Cbuild-dir=build . --color=always && \
cd /sgl-kernel && \ ./rename_wheels.sh
ls -la ${PYTHON_ROOT_PATH}/lib/python${PYTHON_VERSION}/site-packages/wheel/ && \ "
PYTHONPATH=${PYTHON_ROOT_PATH}/lib/python${PYTHON_VERSION}/site-packages ${PYTHON_ROOT_PATH}/bin/python -m uv build --wheel -Cbuild-dir=build . --color=always && \
./rename_wheels.sh
"
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment