Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dcaballe authored Nov 16, 2023
1 parent 6c41f47 commit 9e3d7c4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ enumerateMatmulTileX86_64(EncodingUser user, TypeRange elementTypes,
TileMxNxK{1, 16, 1}, // Truncation of the above.
};
} else {
// Code generation tile sizes.
// Code generation tile sizes. We try to keep certain level of unrolling
// on the N dimension when the M dimension is too narrow for it.
return {
TileMxNxK{16, 16, 1}, // Aim to use VFMADD* (zmm).
TileMxNxK{8, 32, 1}, // Truncation of the above.
Expand Down

0 comments on commit 9e3d7c4

Please sign in to comment.