-
Notifications
You must be signed in to change notification settings - Fork 833
[Perf][Feature] Add SM103-specific schedulers for NVFP4 CUTLASS kernels #2303
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
bkryu
merged 4 commits into
flashinfer-ai:main
from
LopezCastroRoberto:feature/sm103_specific_schedulers
Feb 3, 2026
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,193 @@ | ||
| /* | ||
| * Copyright (c) 2020-2023, NVIDIA CORPORATION. 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 <cuda_fp16.h> | ||
|
|
||
| #include <cstddef> | ||
| #include <cstdint> | ||
| #include <functional> | ||
| #include <type_traits> | ||
| #include <vector> | ||
|
|
||
| #include "flashinfer/gemm/cutlass_gemm_configs.h" | ||
| #include "flashinfer/gemm/fp4_gemm_cutlass.h" | ||
| #include "flashinfer/gemm/fp4_gemm_cutlass_template_sm103.h" | ||
| #include "tvm_ffi_utils.h" | ||
|
|
||
| using flashinfer::gemm::ClusterShape; | ||
| using flashinfer::gemm::CutlassFp4GemmRunner; | ||
| using flashinfer::gemm::CutlassFp4GemmRunnerInterface; | ||
| using flashinfer::gemm::CutlassGemmConfig; | ||
| using flashinfer::gemm::CutlassTileConfigSM100; | ||
| using flashinfer::gemm::EpilogueScheduleType; | ||
| using flashinfer::gemm::FP4GemmType; | ||
| using flashinfer::gemm::MainloopScheduleType; | ||
|
|
||
| namespace flashinfer { | ||
| namespace gemm { | ||
| template class CutlassFp4GemmRunner<__nv_bfloat16, FP4GemmType::W4A4_NVFP4_NVFP4>; | ||
| template class CutlassFp4GemmRunner<half, FP4GemmType::W4A4_NVFP4_NVFP4>; | ||
| } // namespace gemm | ||
| } // namespace flashinfer | ||
|
|
||
| namespace torch_ext { | ||
|
|
||
| namespace { | ||
|
|
||
| CutlassGemmConfig getFp4GemmConfig(int64_t m, int64_t n, int64_t k, int64_t tactic) { | ||
| auto getCutlassFp4GemmConfigs = []() { | ||
| CutlassFp4GemmRunner<__nv_bfloat16, FP4GemmType::W4A4_NVFP4_NVFP4> gemmRunner; | ||
| return gemmRunner.getConfigs(); | ||
| }; | ||
| static std::vector<CutlassGemmConfig> globalConfigs = getCutlassFp4GemmConfigs(); | ||
| TVM_FFI_ICHECK(tactic >= 0 && tactic < globalConfigs.size()) | ||
| << "tactic must be between 0 and " << globalConfigs.size(); | ||
| return globalConfigs[tactic]; | ||
| } | ||
|
|
||
| template <typename T> | ||
| void runGemm(TensorView out, TensorView mat1, TensorView mat2, TensorView mat1Scale, | ||
| TensorView mat2Scale, TensorView globalScale, int64_t m, int64_t n, int64_t k, | ||
| int64_t batch_count, CutlassGemmConfig const& gemmConfig, | ||
| TensorView workspace_buffer) { | ||
| CutlassFp4GemmRunner<T, FP4GemmType::W4A4_NVFP4_NVFP4> gemmRunner; | ||
|
|
||
| int64_t const required_workspace_size = gemmRunner.getWorkspaceSize(m, n, k, batch_count); | ||
| int64_t const provided_workspace_size = | ||
| workspace_buffer.numel() * get_element_size(workspace_buffer); | ||
|
|
||
| auto runKernel = [&](void* workspace) { | ||
| gemmRunner.gemm(out.data_ptr(), mat1.data_ptr(), mat2.data_ptr(), mat1Scale.data_ptr(), | ||
| mat2Scale.data_ptr(), static_cast<float*>(globalScale.data_ptr()), m, n, k, | ||
| batch_count, gemmConfig, reinterpret_cast<char*>(workspace), | ||
| required_workspace_size, get_stream(mat1.device())); | ||
| }; | ||
|
|
||
| if (provided_workspace_size < required_workspace_size) { | ||
| Tensor new_workspace = | ||
| alloc_tensor({required_workspace_size}, DLDataType{kDLInt, 8, 1}, mat1.device()); | ||
| runKernel(new_workspace.data_ptr()); | ||
| } else { | ||
| runKernel(workspace_buffer.data_ptr()); | ||
| } | ||
| } | ||
|
|
||
| constexpr auto FLOAT4_E2M1X2 = dl_uint8; // uint8_t | ||
| constexpr auto SF_DTYPE = dl_uint8; // uint8_t | ||
|
|
||
| // mat1: [B, M, K / 2], FLOAT4_E2M1X2 or [B, M, K], FLOAT8_E4M3FN | ||
| // mat2: [B, N, K / 2], FLOAT4_E2M1X2 | ||
| // out: [B, M, N], fp16/bf16/fp32 | ||
| // mat1Scale: ceil(M / 128) * 128 * ceil(K / sfVecSize / 4) * 4, SF_DTYPE (UE4M3 or UE8M0) | ||
| // mat2Scale: ceil(N / 128) * 128 * ceil(K / sfVecSize / 4) * 4, SF_DTYPE (UE4M3 or UE8M0) | ||
| // globalScale: [1], 1 / (((448 * 6) / mat1.abs().max()) * ((448 * 6) / mat2.abs().max())) | ||
| // B = 1 for GEMM op as a special case | ||
| void fp4_bmm_impl(TensorView mat1, TensorView mat2, TensorView mat1Scale, TensorView mat2Scale, | ||
| TensorView globalScale, TensorView out, TensorView workspace_buffer, | ||
| int64_t tactic) { | ||
| CHECK_INPUT_AND_TYPE(mat1, FLOAT4_E2M1X2); | ||
| CHECK_INPUT_AND_TYPE(mat2, FLOAT4_E2M1X2); | ||
|
|
||
| int mat2_k_scale = 1; | ||
|
|
||
| CHECK_INPUT_AND_TYPE(mat1Scale, SF_DTYPE); | ||
| CHECK_INPUT_AND_TYPE(mat2Scale, SF_DTYPE); | ||
|
|
||
| CHECK_INPUT_AND_TYPE(globalScale, dl_float32); | ||
|
|
||
| int64_t m, n, k, b; | ||
| if (mat1.ndim() == 2) { | ||
| TVM_FFI_ICHECK_EQ(mat2.ndim(), 2) << "mat2 must be a matrix"; | ||
| TVM_FFI_ICHECK_EQ(mat1.size(1), mat2.size(1) * mat2_k_scale) | ||
| << "mat1 and mat2 shapes cannot be multiplied (" << mat1.size(0) << "x" << mat1.size(1) | ||
| << " and " << mat2.size(0) << "x" << mat2.size(1) << ")"; | ||
| m = mat1.size(0); | ||
| n = mat2.size(0); | ||
| k = mat2.size(1) * 2; | ||
| b = 1; | ||
| } else if (mat1.ndim() == 3) { | ||
| TVM_FFI_ICHECK_EQ(mat2.ndim(), 3) << "mat2 must be a batch of matrices"; | ||
| TVM_FFI_ICHECK_EQ(mat1.size(0), mat2.size(0)) << "mat1 and mat2 must have the same batch size (" | ||
| << mat1.size(0) << " and " << mat2.size(0) << ")"; | ||
| TVM_FFI_ICHECK_EQ(mat1.size(2), mat2.size(2) * mat2_k_scale) | ||
| << "mat1 and mat2 shapes cannot be multiplied (" << mat1.size(1) << "x" << mat1.size(2) | ||
| << " and " << mat2.size(1) << "x" << mat2.size(2) << ")"; | ||
| m = mat1.size(1); | ||
| n = mat2.size(1); | ||
| k = mat2.size(2) * 2; | ||
| b = mat1.size(0); | ||
| } else { | ||
| TVM_FFI_LOG_AND_THROW(NotImplementedError) << "mat1 must be a matrix or a batch of matrices"; | ||
| } | ||
|
|
||
| // No heuristic for now, we rely on the autotuner to select the best tactic. | ||
| if (tactic == -1) { | ||
| tactic = 0; | ||
| } | ||
| auto config = getFp4GemmConfig(m, n, k, tactic); | ||
|
|
||
| constexpr int alignment = 32; | ||
| TVM_FFI_ICHECK_EQ(k % alignment, 0) | ||
| << "Expected k to be divisible by " << alignment << ", but got mat1 shape: (" << mat1.size(0) | ||
| << "x" << mat1.size(1) << "), k: " << k << "."; | ||
| TVM_FFI_ICHECK_EQ(n % alignment, 0) | ||
| << "Expected n to be divisible by " << alignment << ", but got mat2 shape: (" << mat2.size(0) | ||
| << "x" << mat2.size(1) << ")."; | ||
|
|
||
| // Validate out dimensions | ||
| std::vector<int64_t> out_shape = | ||
| mat1.ndim() == 2 ? std::vector<int64_t>{m, n} : std::vector<int64_t>{b, m, n}; | ||
| TVM_FFI_ICHECK_EQ(out.ndim(), out_shape.size()) | ||
| << "out must have " << out_shape.size() << " dimensions, but got " << out.ndim(); | ||
| for (int i = 0; i < out_shape.size(); ++i) { | ||
| TVM_FFI_ICHECK_EQ(out.size(i), out_shape[i]) | ||
| << "out shape mismatch at dimension " << i << ": expected " << out_shape[i] << ", got " | ||
| << out.size(i); | ||
| } | ||
|
|
||
| switch (encode_dlpack_dtype(out.dtype())) { | ||
| case float16_code: | ||
| runGemm<half>(out, mat1, mat2, mat1Scale, mat2Scale, globalScale, m, n, k, b, config, | ||
| workspace_buffer); | ||
| break; | ||
| case bfloat16_code: | ||
| runGemm<__nv_bfloat16>(out, mat1, mat2, mat1Scale, mat2Scale, globalScale, m, n, k, b, config, | ||
| workspace_buffer); | ||
| break; | ||
| default: | ||
| TVM_FFI_ICHECK(false) << "out_dtype must be one of fp16/bf16."; | ||
| } | ||
| } | ||
|
|
||
| } // namespace | ||
|
|
||
| void fp4_gemm(TensorView mat1, TensorView mat2, TensorView mat1Scale, TensorView mat2Scale, | ||
| TensorView globalScale, TensorView out, TensorView workspace_buffer, int64_t tactic) { | ||
| fp4_bmm_impl(mat1, mat2, mat1Scale, mat2Scale, globalScale, out, workspace_buffer, tactic); | ||
| } | ||
|
|
||
| int64_t fp4_gemm_tactic_num() { | ||
| auto getCutlassConfigs = []() { | ||
| CutlassFp4GemmRunner<__nv_bfloat16, FP4GemmType::W4A4_NVFP4_NVFP4> gemmRunner; | ||
| return gemmRunner.getConfigs(); | ||
| }; | ||
| static int64_t totalTactics = getCutlassConfigs().size(); | ||
| return totalTactics; | ||
| } | ||
|
|
||
| } // namespace torch_ext | ||
|
|
||
| TVM_FFI_DLL_EXPORT_TYPED_FUNC(fp4_gemm, torch_ext::fp4_gemm); | ||
| TVM_FFI_DLL_EXPORT_TYPED_FUNC(fp4_gemm_tactic_num, torch_ext::fp4_gemm_tactic_num); |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| /* | ||
| * Copyright (c) 2020-2023, NVIDIA CORPORATION. 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 "flashinfer/gemm/fp4_gemm_cutlass_template_sm103.h" | ||
|
|
||
| namespace flashinfer { | ||
| namespace gemm { | ||
| INSTANTIATE_FP4_ULTRA_GEMM_KERNEL_LAUNCHER({{ type }}, {{ cta_m }}, {{ cta_n }}, {{ cta_k }}, 1, 1, 1, _1SM_sm103) | ||
| INSTANTIATE_FP4_ULTRA_GEMM_KERNEL_LAUNCHER({{ type }}, {{ cta_m }}, {{ cta_n }}, {{ cta_k }}, 1, 2, 1, _1SM_sm103) | ||
| INSTANTIATE_FP4_ULTRA_GEMM_KERNEL_LAUNCHER({{ type }}, {{ cta_m }}, {{ cta_n }}, {{ cta_k }}, 1, 4, 1, _1SM_sm103) | ||
| INSTANTIATE_FP4_ULTRA_GEMM_KERNEL_LAUNCHER({{ type }}, {{ cta_m }}, {{ cta_n }}, {{ cta_k }}, 2, 1, 1, _2SM_sm103) | ||
| INSTANTIATE_FP4_ULTRA_GEMM_KERNEL_LAUNCHER({{ type }}, {{ cta_m }}, {{ cta_n }}, {{ cta_k }}, 2, 2, 1, _2SM_sm103) | ||
| INSTANTIATE_FP4_ULTRA_GEMM_KERNEL_LAUNCHER({{ type }}, {{ cta_m }}, {{ cta_n }}, {{ cta_k }}, 2, 4, 1, _2SM_sm103) | ||
| INSTANTIATE_FP4_ULTRA_GEMM_KERNEL_LAUNCHER({{ type }}, {{ cta_m }}, {{ cta_n }}, {{ cta_k }}, 4, 2, 1, _2SM_sm103) | ||
| INSTANTIATE_FP4_ULTRA_GEMM_KERNEL_LAUNCHER({{ type }}, {{ cta_m }}, {{ cta_n }}, {{ cta_k }}, 4, 4, 1, _2SM_sm103) | ||
| INSTANTIATE_FP4_ULTRA_GEMM_KERNEL_LAUNCHER({{ type }}, {{ cta_m }}, {{ cta_n }}, {{ cta_k }}, 4, 1, 1, _2SM_sm103) | ||
|
|
||
| } // namespace gemm | ||
| } // namespace flashinfer |
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.