mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-18 12:00:07 +00:00
Fix in GetTileRangeAlongX
This commit is contained in:
@@ -64,7 +64,7 @@ struct HstuBlockMaskWithLocal
|
||||
index_t x_start = max(0, i_y - max_attn_len);
|
||||
index_t x_end = min(i_y + YTile, max_uih_len);
|
||||
|
||||
return ck_tile::make_tuple(x_start, x_end);
|
||||
return ck_tile::make_tuple(x_start - x_start % XTile, x_end);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user