"...resnet50_tensorflow.git" did not exist on "836d599fa181d0c89c3ffc8c2177f567a3bbedfb"
Commit 4a59be12 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

fix a bug in the quantization function.

parent 37c46aa3
...@@ -88,10 +88,10 @@ void quantize(program& prog, const std::vector<std::string>& ins_names) ...@@ -88,10 +88,10 @@ void quantize(program& prog, const std::vector<std::string>& ins_names)
} }
} }
// no change for the input, return directly // no change for the input, go to the next instruction
if(inputs == converted_inputs) if(inputs == converted_inputs)
{ {
return; continue;
} }
auto op = ins->get_operator(); auto op = ins->get_operator();
......
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