Skip to content

Commit

Permalink
Update types
Browse files Browse the repository at this point in the history
  • Loading branch information
jagrit06 committed Oct 25, 2024
1 parent f4e7044 commit 066a9e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mlx/backend/metal/kernels/steel/gemm/mma.h
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,9 @@ struct MMATile {
template <typename U, int w_x, int w_y>
METAL_FUNC void store(device U* dst, const int ld) const {
STEEL_PRAGMA_UNROLL
for (int i = 0; i < kTileRows; ++i) {
for (short i = 0; i < kTileRows; ++i) {
STEEL_PRAGMA_UNROLL
for (int j = 0; j < kTileCols; ++j) {
for (short j = 0; j < kTileCols; ++j) {
MMAFrag_t::store(
frag_at(i, j),
&(dst[(i * kFragRows) * w_x * ld + (j * kFragCols) * w_y]),
Expand Down

0 comments on commit 066a9e6

Please # to comment.