"examples/trials/vscode:/vscode.git/clone" did not exist on "5bb544ff191bdae99be6837c7d8d19fc00f9c3ac"
Commit 2cb101ef authored by Paul's avatar Paul
Browse files

Format

parent 7309f43a
...@@ -169,10 +169,10 @@ auto is_mlir_dot(mlir_mode mode) ...@@ -169,10 +169,10 @@ auto is_mlir_dot(mlir_mode mode)
float m = a.lens()[a.lens().size() - 2]; float m = a.lens()[a.lens().size() - 2];
float n = b.lens().back(); float n = b.lens().back();
float k = a.lens().back(); float k = a.lens().back();
if (k > 1024) if(k > 1024)
return false; return false;
auto ratio = m*n/k; auto ratio = m * n / k;
if (ratio < 16384) if(ratio < 16384)
return false; return false;
return true; return true;
// // Skipping GEMMs with a K dimension greater than 2048 is a course-grained strategy // // 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