Commit 802aec93 authored by Paul's avatar Paul
Browse files

Formatting

parent 05e60c54
...@@ -14,9 +14,9 @@ void transform_convolutions(module& m) ...@@ -14,9 +14,9 @@ void transform_convolutions(module& m)
{ {
for(auto ins : iterator_for(m)) for(auto ins : iterator_for(m))
{ {
if (ins->name() != "convolution") if(ins->name() != "convolution")
continue; continue;
if (ins->get_shape().lens().size() != 4) if(ins->get_shape().lens().size() != 4)
continue; continue;
auto args = ins->inputs(); auto args = ins->inputs();
std::transform(args.begin(), args.end(), args.begin(), [&](auto& i) { std::transform(args.begin(), args.end(), args.begin(), [&](auto& i) {
......
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