Support SM121 (NVIDIA GB10 / DGX Spark) via SM120 kernels - #33
Open
zhachar14h-cell wants to merge 1 commit into
Open
Support SM121 (NVIDIA GB10 / DGX Spark) via SM120 kernels#33zhachar14h-cell wants to merge 1 commit into
zhachar14h-cell wants to merge 1 commit into
Conversation
Route compute version "12.1" (NVIDIA GB10, DGX Spark) to the existing SM120 Blackwell kernels. GB10 (sm_121a) belongs to the same consumer Blackwell SM family as SM120; the TileLang kernels JIT-compile and run correctly on it. Validated on a DGX Spark (GB10, CUDA 13.0, PyTorch 2.11, tilelang 0.1.9): - tests/test_gdr_unit.py forward cases pass against the float64 reference (53 passed), including auto_cp and cp_cache variants - tests/test_sm120_backward_disabled.py passes (backward stays gated) - deployed in vLLM 0.25 serving Qwen3.6-35B-A3B (hybrid GDN) as the GDN chunked-prefill kernel: numerics match the FLA Triton reference (max abs diff 7e-4 on outputs, 5e-3 on final states), T=8192 varlen kernel latency 7.19ms -> 1.62ms (4.45x), end-to-end TTFT -10% Also skip the backward-dependent mixed-CP test on SM120/SM121 (backward is disabled there by design) and fix stale supported-arch messages in cp_context.py which predated SM120 support.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Route compute version "12.1" (NVIDIA GB10, DGX Spark) to the existing SM120 Blackwell kernels. GB10 (sm_121a) belongs to the same consumer Blackwell SM family as SM120; the TileLang kernels JIT-compile and run correctly on it.
Validated on a DGX Spark (GB10, CUDA 13.0, PyTorch 2.11, tilelang 0.1.9):
Also skip the backward-dependent mixed-CP test on SM120/SM121 (backward is disabled there by design) and fix stale supported-arch messages in cp_context.py which predated SM120 support.