"examples/vscode:/vscode.git/clone" did not exist on "1873dc007bc8147aa255f4d01b24d0ab11121c44"
Commit bf3e958d authored by Paul's avatar Paul
Browse files

Format

parent 2bba1c7c
...@@ -61,9 +61,9 @@ struct find_conv_pointwise ...@@ -61,9 +61,9 @@ struct find_conv_pointwise
})) }))
return; return;
// Only fuse with fp32 for now // Only fuse with fp32 for now
if (std::any_of(ins->inputs().begin(), ins->inputs().end(), [&](auto i) { if(std::any_of(ins->inputs().begin(), ins->inputs().end(), [&](auto i) {
return i->get_shape().type() != shape::type_t::float_type; return i->get_shape().type() != shape::type_t::float_type;
})) }))
return; return;
std::sort(names.begin(), names.end()); std::sort(names.begin(), names.end());
module_ref mm = mpm.create_module("mlir_" + pm->name()); module_ref mm = mpm.create_module("mlir_" + pm->name());
......
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