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

update sgl-kernel 3rdparty (#4228)

parent 34c88987
...@@ -7,6 +7,3 @@ ...@@ -7,6 +7,3 @@
[submodule "sgl-kernel/3rdparty/flashinfer"] [submodule "sgl-kernel/3rdparty/flashinfer"]
path = sgl-kernel/3rdparty/flashinfer path = sgl-kernel/3rdparty/flashinfer
url = https://github.com/flashinfer-ai/flashinfer.git url = https://github.com/flashinfer-ai/flashinfer.git
[submodule "sgl-kernel/3rdparty/turbomind"]
path = sgl-kernel/3rdparty/turbomind
url = https://github.com/InternLM/turbomind
Subproject commit ca4fdbea708ad940c905359788372b8add9f85e0 Subproject commit df18f5e4f5de76bed8be1de8e4c245f2f5ec3020
Subproject commit 0c9d0c724a99974ca3af0c12b24ef8a0444c4fd9
...@@ -39,7 +39,6 @@ Third-party libraries: ...@@ -39,7 +39,6 @@ Third-party libraries:
- [CCCL](https://github.com/NVIDIA/cccl) - [CCCL](https://github.com/NVIDIA/cccl)
- [CUTLASS](https://github.com/NVIDIA/cutlass) - [CUTLASS](https://github.com/NVIDIA/cutlass)
- [FlashInfer](https://github.com/flashinfer-ai/flashinfer) - [FlashInfer](https://github.com/flashinfer-ai/flashinfer)
- [TurboMind](https://github.com/InternLM/turbomind)
### Kernel Development ### Kernel Development
......
...@@ -52,7 +52,6 @@ operator_namespace = "sgl_kernel" ...@@ -52,7 +52,6 @@ operator_namespace = "sgl_kernel"
cutlass_default = root / "3rdparty" / "cutlass" cutlass_default = root / "3rdparty" / "cutlass"
cutlass = Path(os.environ.get("CUSTOM_CUTLASS_SRC_DIR", default=cutlass_default)) cutlass = Path(os.environ.get("CUSTOM_CUTLASS_SRC_DIR", default=cutlass_default))
flashinfer = root / "3rdparty" / "flashinfer" flashinfer = root / "3rdparty" / "flashinfer"
turbomind = root / "3rdparty" / "turbomind"
include_dirs = [ include_dirs = [
root / "include", root / "include",
root / "csrc", root / "csrc",
...@@ -62,8 +61,6 @@ include_dirs = [ ...@@ -62,8 +61,6 @@ include_dirs = [
flashinfer.resolve() / "include" / "gemm", flashinfer.resolve() / "include" / "gemm",
flashinfer.resolve() / "csrc", flashinfer.resolve() / "csrc",
"cublas", "cublas",
turbomind.resolve(),
turbomind.resolve() / "src",
] ]
nvcc_flags = [ nvcc_flags = [
......
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