"git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "7e58b6212592cbd896ae0161bc1e10e8de303def"
Commit b987fca9 authored by Paul's avatar Paul
Browse files

Flip the direction

parent 409d13cf
...@@ -172,7 +172,7 @@ auto is_mlir_dot(mlir_mode mode) ...@@ -172,7 +172,7 @@ auto is_mlir_dot(mlir_mode mode)
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