Skip to content

Commit

Permalink
* re-enable scheduleGlobalLoadLocalStore for Matmul kernels
Browse files Browse the repository at this point in the history
  • Loading branch information
sjw36 committed Nov 15, 2024
1 parent 7578863 commit b789a7f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -366,10 +366,10 @@ struct TritonAMDGPUReorderInstructionsPass

moveUpTranspose(funcOp);

if (isPureMatmulProblem(funcOp))
sinkSecondLoad(funcOp);
else
if (isPureMatmulProblem(funcOp)) {
scheduleGlobalLoadLocalStore(funcOp);
sinkSecondLoad(funcOp);
}
}
}
};
Expand Down

0 comments on commit b789a7f

Please sign in to comment.