Skip to content

Commit 4d23df0

Browse files
committed
fix
1 parent e62e116 commit 4d23df0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csrc/jit_kernels/impls/sm90_fp8_gemm_1d1d.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ static void sm90_fp8_gemm_1d1d(const torch::Tensor& a, const torch::Tensor& sfa,
131131
const auto& code = SM90FP8Gemm1D1DRuntime::generate(args);
132132
const auto& runtime = compiler->build("sm90_fp8_gemm_1d1d", code);
133133

134-
SM90FP8Gemm1D1DRuntime::launch(runtime, args);
134+
MAYBE_LAUNCH(SM90FP8Gemm1D1DRuntime::launch(runtime, args));
135135
}
136136

137137
static void sm90_fp8_k_grouped_gemm_1d1d(const torch::Tensor& a, const torch::Tensor& sfa,
@@ -206,7 +206,7 @@ static void sm90_fp8_k_grouped_gemm_1d1d(const torch::Tensor& a, const torch::Te
206206
const auto& code = SM90FP8Gemm1D1DRuntime::generate(args);
207207
const auto& runtime = compiler->build("sm90_fp8_gemm_1d1d", code);
208208

209-
SM90FP8Gemm1D1DRuntime::launch(runtime, args);
209+
MAYBE_LAUNCH(SM90FP8Gemm1D1DRuntime::launch(runtime, args));
210210
}
211211

212212
} // namespace deep_gemm

0 commit comments

Comments
 (0)