Commit 015d1ac4 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

clang format

parent c2898ca7
...@@ -486,7 +486,8 @@ struct onnx_parser ...@@ -486,7 +486,8 @@ struct onnx_parser
auto out_lens = l1->get_shape().lens(); auto out_lens = l1->get_shape().lens();
out_lens.back() = l2->get_shape().lens().back(); out_lens.back() = l2->get_shape().lens().back();
auto l3 = args[2]; auto l3 = args[2];
if (!std::equal(out_lens.begin(), out_lens.end(), args[2]->get_shape().lens().begin())) if(!std::equal(
out_lens.begin(), out_lens.end(), args[2]->get_shape().lens().begin()))
{ {
l3 = prog.add_instruction(op::multibroadcast{out_lens}, args[2]); l3 = prog.add_instruction(op::multibroadcast{out_lens}, args[2]);
} }
......
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