From df84ab2a5b87f4e8490049beb74fab6e67bbe3df Mon Sep 17 00:00:00 2001 From: Yineng Zhang Date: Sun, 9 Mar 2025 01:16:05 -0800 Subject: [PATCH] update sgl-kernel 3rdparty (#4228) --- .gitmodules | 3 --- sgl-kernel/3rdparty/cutlass | 2 +- sgl-kernel/3rdparty/turbomind | 1 - sgl-kernel/README.md | 1 - sgl-kernel/setup.py | 3 --- 5 files changed, 1 insertion(+), 9 deletions(-) delete mode 160000 sgl-kernel/3rdparty/turbomind diff --git a/.gitmodules b/.gitmodules index 97f342144..ed7603bfd 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,6 +7,3 @@ [submodule "sgl-kernel/3rdparty/flashinfer"] path = sgl-kernel/3rdparty/flashinfer url = https://github.com/flashinfer-ai/flashinfer.git -[submodule "sgl-kernel/3rdparty/turbomind"] - path = sgl-kernel/3rdparty/turbomind - url = https://github.com/InternLM/turbomind diff --git a/sgl-kernel/3rdparty/cutlass b/sgl-kernel/3rdparty/cutlass index ca4fdbea7..df18f5e4f 160000 --- a/sgl-kernel/3rdparty/cutlass +++ b/sgl-kernel/3rdparty/cutlass @@ -1 +1 @@ -Subproject commit ca4fdbea708ad940c905359788372b8add9f85e0 +Subproject commit df18f5e4f5de76bed8be1de8e4c245f2f5ec3020 diff --git a/sgl-kernel/3rdparty/turbomind b/sgl-kernel/3rdparty/turbomind deleted file mode 160000 index 0c9d0c724..000000000 --- a/sgl-kernel/3rdparty/turbomind +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 0c9d0c724a99974ca3af0c12b24ef8a0444c4fd9 diff --git a/sgl-kernel/README.md b/sgl-kernel/README.md index 689f34be0..e86c26259 100644 --- a/sgl-kernel/README.md +++ b/sgl-kernel/README.md @@ -39,7 +39,6 @@ Third-party libraries: - [CCCL](https://github.com/NVIDIA/cccl) - [CUTLASS](https://github.com/NVIDIA/cutlass) - [FlashInfer](https://github.com/flashinfer-ai/flashinfer) -- [TurboMind](https://github.com/InternLM/turbomind) ### Kernel Development diff --git a/sgl-kernel/setup.py b/sgl-kernel/setup.py index 72d710b3d..d76a2668a 100644 --- a/sgl-kernel/setup.py +++ b/sgl-kernel/setup.py @@ -52,7 +52,6 @@ operator_namespace = "sgl_kernel" cutlass_default = root / "3rdparty" / "cutlass" cutlass = Path(os.environ.get("CUSTOM_CUTLASS_SRC_DIR", default=cutlass_default)) flashinfer = root / "3rdparty" / "flashinfer" -turbomind = root / "3rdparty" / "turbomind" include_dirs = [ root / "include", root / "csrc", @@ -62,8 +61,6 @@ include_dirs = [ flashinfer.resolve() / "include" / "gemm", flashinfer.resolve() / "csrc", "cublas", - turbomind.resolve(), - turbomind.resolve() / "src", ] nvcc_flags = [