Skip to content

Commit ca40baf

Browse files
committed
Fix benchmark
1 parent 2fca0b6 commit ca40baf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

benchmarks/flash_attention/flash_attention_decode/benchmark_runner.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ template <class FMHADecodeConfiguration> struct BenchmarkRunnerFMHADecode {
630630
sycl::ext::oneapi::experimental::sub_group_size<FMHADecodeKernel::DispatchPolicy::SubgroupSize>
631631
};
632632
cutlasscompat::experimental::launch_policy policy{sycl_grid, sycl_block, launch_props, kernel_props};
633-
auto event = cutlasscompat::experimental::launch<cutlass::device_kernel<FMHADecodeKernel>>(policy, params);
633+
auto event = cutlasscompat::experimental::launch<cutlass::device_kernel<FMHADecodeKernel>, FMHADecodeKernel>(policy, params);
634634
#endif
635635

636636
EventManager::getInstance().addEvent(event);

benchmarks/flash_attention/flash_attention_prefill/benchmark_runner.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ template <class FMHAPrefillConfiguration> struct BenchmarkRunnerFMHA {
490490
sycl::ext::oneapi::experimental::sub_group_size<GemmKernel::DispatchPolicy::SubgroupSize>
491491
};
492492
cutlasscompat::experimental::launch_policy policy{sycl_grid, sycl_block, launch_props, kernel_props};
493-
auto event = cutlasscompat::experimental::launch<cutlass::device_kernel<GemmKernel>>(policy, params);
493+
auto event = cutlasscompat::experimental::launch<cutlass::device_kernel<GemmKernel>, GemmKernel>(policy, params);
494494
#endif
495495

496496
EventManager::getInstance().addEvent(event);

benchmarks/flash_attention/flash_attention_prefill_cachedKV/benchmark_runner.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ template <class FMHAPrefillConfiguration> struct BenchmarkRunnerFMHA {
583583
sycl::ext::oneapi::experimental::sub_group_size<GemmKernel::DispatchPolicy::SubgroupSize>
584584
};
585585
cutlasscompat::experimental::launch_policy policy{sycl_grid, sycl_block, launch_props, kernel_props};
586-
auto event = cutlasscompat::experimental::launch<cutlass::device_kernel<GemmKernel>>(policy, params);
586+
auto event = cutlasscompat::experimental::launch<cutlass::device_kernel<GemmKernel>, GemmKernel>(policy, params);
587587
#endif
588588

589589
EventManager::getInstance().addEvent(event);

0 commit comments

Comments
 (0)