mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-07-11 01:27:34 +00:00
Fix 8 waves operator to use Problem defined dispatching for hot loop and tail
This commit is contained in:
@@ -248,12 +248,13 @@ struct GemmPipelineAgBgCrCompAsyncEightWaves : public BaseGemmPipelineAgBgCrComp
|
||||
index_t num_loop,
|
||||
void* p_smem) const
|
||||
{
|
||||
return operator()(ck_tile::make_tuple(a_dram_block_window_tmp),
|
||||
ck_tile::element_wise::PassThrough{},
|
||||
ck_tile::make_tuple(b_dram_block_window_tmp),
|
||||
ck_tile::element_wise::PassThrough{},
|
||||
num_loop,
|
||||
p_smem);
|
||||
return PipelineImpl<Scheduler>{}.template operator()<Problem::HasHotLoop, Problem::TailNum>(
|
||||
a_dram_block_window_tmp,
|
||||
ck_tile::element_wise::PassThrough{},
|
||||
b_dram_block_window_tmp,
|
||||
ck_tile::element_wise::PassThrough{},
|
||||
num_loop,
|
||||
p_smem);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user