feat: update blackwell setup (#7119)

This commit is contained in:
Yineng Zhang
2025-06-12 01:54:40 -07:00
committed by GitHub
parent 930746d93c
commit 7046e0fab7
6 changed files with 16 additions and 8 deletions

View File

@@ -39,6 +39,14 @@ find_package(Torch REQUIRED)
# clean Torch Flag
clear_cuda_arches(CMAKE_FLAG)
if("${CUDA_VERSION}" VERSION_EQUAL "12.8")
set(DeepGEMM_REPO "https://github.com/sgl-project/DeepGEMM")
set(DeepGEMM_TAG "blackwell")
else()
set(DeepGEMM_REPO "https://github.com/deepseek-ai/DeepGEMM")
set(DeepGEMM_TAG "8dfa3298274bfe6b242f6f8a3e6f3eff2707dd9f")
endif()
include(FetchContent)
# cutlass
@@ -52,8 +60,8 @@ FetchContent_Populate(repo-cutlass)
# DeepGEMM
FetchContent_Declare(
repo-deepgemm
GIT_REPOSITORY https://github.com/deepseek-ai/DeepGEMM
GIT_TAG 8dfa3298274bfe6b242f6f8a3e6f3eff2707dd9f
GIT_REPOSITORY ${DeepGEMM_REPO}
GIT_TAG ${DeepGEMM_TAG}
GIT_SHALLOW OFF
)
FetchContent_Populate(repo-deepgemm)

View File

@@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build"
[project]
name = "sgl-kernel"
version = "0.1.7"
version = "0.1.8"
description = "Kernel Library for SGLang"
readme = "README.md"
requires-python = ">=3.9"

View File

@@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build"
[project]
name = "sgl-kernel"
version = "0.1.7"
version = "0.1.8"
description = "Kernel Library for SGLang"
readme = "README.md"
requires-python = ">=3.9"

View File

@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "sgl-kernel"
version = "0.1.7"
version = "0.1.8"
description = "Kernel Library for SGLang"
readme = "README.md"
requires-python = ">=3.9"

View File

@@ -1 +1 @@
__version__ = "0.1.7"
__version__ = "0.1.8"