Commit 2cb101ef authored by Paul's avatar Paul
Browse files

Format

parent 7309f43a
......@@ -169,10 +169,10 @@ auto is_mlir_dot(mlir_mode mode)
float m = a.lens()[a.lens().size() - 2];
float n = b.lens().back();
float k = a.lens().back();
if (k > 1024)
if(k > 1024)
return false;
auto ratio = m*n/k;
if (ratio < 16384)
auto ratio = m * n / k;
if(ratio < 16384)
return false;
return true;
// // Skipping GEMMs with a K dimension greater than 2048 is a course-grained strategy
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment