Commit b35f6188 authored by Paul's avatar Paul
Browse files

Fix compile error

parent 0e64d364
...@@ -488,8 +488,8 @@ struct mlir_program ...@@ -488,8 +488,8 @@ struct mlir_program
ops.add_attribute_value(get_operator_value(ins->get_operator())); ops.add_attribute_value(get_operator_value(ins->get_operator()));
if(ins->name() != "@return") if(ins->name() != "@return")
ops.add_results({get_shape(ins)}); ops.add_results({get_shape(ins)});
if(ins->name()) if(ins->name() == "convolution")
pp = {ins->get_operator(), ins->inputs(), ins->get_shape()}; pp = problem_params{ins->get_operator(), to_shapes(ins->inputs()), ins->get_shape()};
std::vector<MlirValue> inputs; std::vector<MlirValue> inputs;
transform( transform(
......
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