Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Spring <rspring@nvidia.com>
  • Loading branch information
jacobhinkle and rdspring1 authored Jan 29, 2025
1 parent fce996d commit 99248f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions csrc/scheduler/matmul_heuristic.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ class MatmulParams : public HeuristicParams {

std::string toString() const {
std::stringstream ss;
ss << x << " " << y << " " << z;
ss << "__cluster_dims__(" << x << ", " << "Y" << ", " << "Z" << ")";
return ss.str();
}

Expand Down Expand Up @@ -241,7 +241,7 @@ class MatmulParams : public HeuristicParams {
: "column-major")
<< "\n"
<< "Grid swizzle factor: " << grid_swizzle_factor << "\n"
<< "Cluster dimensions: " << cluster_dims.toString() << "\n"
<< cluster_dims.toString() << "\n"
<< "Use shared memory epilogue: " << use_smem_epilogue << "\n"
<< "Promote re-use of prologue shared memory: "
<< promote_prologue_smem_reuse << "\n"
Expand Down

0 comments on commit 99248f7

Please sign in to comment.