mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-08 23:38:11 +00:00
Fix wrong LDS indexing logics
This commit is contained in:
@@ -172,11 +172,11 @@ struct BlockFmhaFwdSplitKVCombinePipeline
|
||||
#if defined(PRINT_LSE_ACCUM)
|
||||
DEBUG_STMTS
|
||||
{
|
||||
printf("\n");
|
||||
printf("(%2d, %2d)\n", num_splits, kM0);
|
||||
for(index_t row = 0; row < num_splits; ++row)
|
||||
{
|
||||
printf("[POYENC][DEVICE] lse_acc[%2d] = ", row);
|
||||
for(index_t col = 0; col < real_seqlen_q; ++col)
|
||||
for(index_t col = 0; col < kM0; ++col)
|
||||
{
|
||||
printf("%11.7f", lse_acc_lds_ptr[row + col * kMaxSplits]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user