Skip to content

Commit

Permalink
Tidy up max_alignment TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
joeatodd committed Dec 3, 2024
1 parent 792e777 commit 482bf0e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/gemm/device/gemm_testbed_3x.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1808,7 +1808,8 @@ bool TestXe(
// For M & N we test a small and a big size
// For K, we currently only support K = TileShapeK
// We set L = 1 throughout
int max_alignment = 4; //std::max(Gemm::kAlignmentA, Gemm::kAlignmentB);
// TODO(codeplay): unhardcode max_alignment
int max_alignment = 4;
std::vector<int> problem_size_m{max_alignment, 512 - 3 * max_alignment};
std::vector<int> problem_size_n{max_alignment, 512 - 2 * max_alignment};

Expand Down

0 comments on commit 482bf0e

Please sign in to comment.