Skip to content

Commit c1ffbd0

Browse files
authored
Fix missing namespace qualifier (#1731)
1 parent 1e95001 commit c1ffbd0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

3rdparty/cutlass

Submodule cutlass updated 384 files

include/flashinfer/trtllm/fmha/fmhaKernels.cuh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@ class TllmGenFmhaKernel {
254254
cuErrCheck(cuLaunchKernelEx(&launch_config, func, kernelParamsList, nullptr));
255255

256256
// Run the separate reduction kernel if needed.
257-
runFmhaReduction(kernelMeta, kernelParams, params.mMultiProcessorCount, params.enable_pdl,
258-
params.stream);
257+
tensorrt_llm::kernels::runFmhaReduction(kernelMeta, kernelParams, params.mMultiProcessorCount,
258+
params.enable_pdl, params.stream);
259259

260260
if (params.lsePtr != nullptr) {
261261
flashinfer::ComputeLSEFromMD(params.softmaxStatsPtr, params.lsePtr,

0 commit comments

Comments
 (0)