Skip to content

Commit

Permalink
gpu: jit: gemm: omit unwanted m/n blocking for single wave sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
petercad committed May 19, 2023
1 parent cf73e4e commit 276cc21
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gpu/jit/gemm/gen_gemm_kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ status_t gen_gemm_kernel_desc_t::finalize() {
if (thread_count <= thread_gpu) {
strategy_.persistent = false;
strategy_.cWalkOrder = WalkOrder::HW2D;
strategy_.blocking[LoopM] = 16777216;
strategy_.blocking[LoopN] = 16777216;
}
}
}
Expand Down

0 comments on commit 276cc21

Please sign in to comment.