Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9ee53c7
delt
Jul 7, 2026
b27a07c
Apply pre-commit formatting (black, clang-format) to fp8 blockwise ge…
Jul 7, 2026
a89ef7f
unslop
Jul 7, 2026
68aca8d
more
Jul 7, 2026
bb4ca4b
delt
Jul 7, 2026
753ce39
Merge branch 'main' into brayden/conslidate-fp8-blockwise
b8zhong Jul 7, 2026
f257891
fix
Jul 7, 2026
8c99188
fix: remove duplicate getSMVersion causing ambiguous overload
Jul 7, 2026
368c416
fix: remove duplicate getSMVersion in nvfp4 kernels causing ambiguous…
Jul 8, 2026
c48e3ff
fix: deprecate cutlass fp8 gemm backend off-SM120, move blockwise gem…
Jul 8, 2026
fa9b214
Merge branch 'main' into brayden/conslidate-fp8-blockwise
Jul 8, 2026
0716c23
fix main conflicts
Jul 8, 2026
fd9c577
Merge branch 'main' into brayden/conslidate-fp8-blockwise
b8zhong Jul 9, 2026
73a8b99
Fix false DeepGemm ue8m0 warning on non-block-quantized checkpoints, …
Jul 9, 2026
8d1a331
Merge remote-tracking branch 'origin/main' into brayden/conslidate-fp…
Jul 9, 2026
2720e5f
Revert "Fix false DeepGemm ue8m0 warning on non-block-quantized check…
Jul 9, 2026
9c3b8c2
Whitespace: match origin/main exactly in utils/common.py after revert
Jul 9, 2026
0082753
Merge branch 'main' into brayden/conslidate-fp8-blockwise
b8zhong Jul 9, 2026
fe82f85
Merge branch 'main' into brayden/conslidate-fp8-blockwise
b8zhong Jul 9, 2026
b81a3ff
Merge branch 'main' into brayden/conslidate-fp8-blockwise
Jul 13, 2026
07260e5
Merge branch 'main' into brayden/conslidate-fp8-blockwise
b8zhong Jul 13, 2026
2f1d440
Merge branch 'main' into brayden/conslidate-fp8-blockwise
Jul 13, 2026
e12c3cf
Fix stale fp8_kernel import path after kernels migration
Jul 13, 2026
598497f
Merge remote-tracking branch 'origin/main' into brayden/conslidate-fp…
Jul 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/* Copyright 2026 SGLang Team. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/

#include "fp8_blockwise_scaled_mm_sm120.cuh"

void fp8_blockwise_scaled_mm(
tvm::ffi::TensorView out,
tvm::ffi::TensorView mat_a,
tvm::ffi::TensorView mat_b,
tvm::ffi::TensorView scales_a,
tvm::ffi::TensorView scales_b) {
fp8_blockwise_scaled_mm_sm120(out, mat_a, mat_b, scales_a, scales_b);
}
Loading
Loading