Commit 57b2ee1a authored by Paul's avatar Paul
Browse files

Lower threshold

parent bacd8466
......@@ -174,7 +174,7 @@ auto is_mlir_dot(mlir_mode mode)
return false;
auto ratio = std::sqrt(g) * m * n / k;
std::cout << "gemm_ratio: " << ratio << std::endl;
if(ratio < 128 * 1024)
if(ratio < 2048)
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