Skip to content

Commit

Permalink
Disable one set of tuning parameter for f16 XDLOPS kernel performance. (
Browse files Browse the repository at this point in the history
  • Loading branch information
whchung authored Jun 5, 2021
1 parent 7eb562f commit b755661
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mlir/include/mlir/Dialect/MIOpen/Tuning/GridwiseGemmParams.h
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,9 @@ class PopulateParamsXDL : public PopulateParamsBase {
private:
llvm::SmallVector<InitParamsXDL, 4> initParameters = {
// M/block N/block K/block M/wave N/wave kPack aCopyMore bCopyMore
{256, 128, 16, 128, 64, 0, false, false},
// FIXME. Temporarily disable this config to restrict MRepeats/NRepeats
// to 1 to reduce potential AGPR spills.
//{256, 128, 16, 128, 64, 0, false, false},
{128, 128, 16, 64, 64, 0, false, false},
{8, 64, 8, 8, 64, 0, false, false},
{4, 64, 16, 4, 64, 0, false, false},
Expand Down

0 comments on commit b755661

Please sign in to comment.