mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-06 15:54:31 +00:00
Fix wrong loop counter step logic
This commit is contained in:
@@ -562,7 +562,7 @@ struct BlockFmhaFwdSplitKVPipelineQRKSVS
|
||||
}
|
||||
};
|
||||
|
||||
while(++i_total_loops < num_total_loop - 1)
|
||||
while(i_total_loops++ < num_total_loop - 1)
|
||||
{
|
||||
loop_body(std::false_type{});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user