Commit 8e486cf6 authored by Paul's avatar Paul
Browse files

Fix type

parent 2cb101ef
...@@ -164,8 +164,8 @@ auto is_mlir_dot(mlir_mode mode) ...@@ -164,8 +164,8 @@ auto is_mlir_dot(mlir_mode mode)
return false; return false;
if(mode != mlir_mode::fast) if(mode != mlir_mode::fast)
return true; return true;
float a = ins->inputs().front()->get_shape(); auto a = ins->inputs().front()->get_shape();
float b = ins->inputs().back()->get_shape(); auto b = ins->inputs().back()->get_shape();
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();
......
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