Skip to content

Commit

Permalink
increase k=64
Browse files Browse the repository at this point in the history
  • Loading branch information
rdspring1 committed Jan 31, 2025
1 parent 8b399d2 commit e68f85c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion csrc/scheduler/matmul_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,11 @@ bool fillDefaultHopperHeuristic(

// TODO: it might be advantageous in some cases to issue multiple wgmma
// instructions per warp group
warp_tile = instruction_tile;
constexpr int64_t k_ratio = 4;
warp_tile = {
instruction_tile.m,
instruction_tile.n,
instruction_tile.k * k_ratio};

// The MmaOp output is a 32-bit float which requires one register per value

Expand Down

0 comments on commit e68f85c

Please sign in to comment.