mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-07-12 18:17:58 +00:00
block_shape fixes
This commit is contained in:
@@ -850,11 +850,11 @@ struct UnifiedAttentionPipeline
|
||||
{
|
||||
gemm_1(o_acc,
|
||||
get_slice_tile(sp(sp_reg_idx).p,
|
||||
sequence<0, (k1_loops - 1) * HEAD_SIZE_PADDED>{},
|
||||
sequence<BLOCK_M, k1_loops * HEAD_SIZE_PADDED>{}),
|
||||
sequence<0, (k1_loops - 1) * BLOCK_SIZE>{},
|
||||
sequence<BLOCK_M, k1_loops * BLOCK_SIZE>{}),
|
||||
get_slice_tile(kv_tile.v_tile,
|
||||
sequence<0, (k1_loops - 1) * HEAD_SIZE_PADDED>{},
|
||||
sequence<BLOCK_SIZE, k1_loops * HEAD_SIZE_PADDED>{}));
|
||||
sequence<0, (k1_loops - 1) * BLOCK_SIZE>{},
|
||||
sequence<BLOCK_SIZE, k1_loops * BLOCK_SIZE>{}));
|
||||
fmha_alu0(number<1>{} - sp_reg_idx);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user