Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
4a59be12
"...resnet50_tensorflow.git" did not exist on "836d599fa181d0c89c3ffc8c2177f567a3bbedfb"
Commit
4a59be12
authored
Apr 23, 2019
by
Shucai Xiao
Browse files
fix a bug in the quantization function.
parent
37c46aa3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/quantization.cpp
src/quantization.cpp
+2
-2
No files found.
src/quantization.cpp
View file @
4a59be12
...
@@ -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
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment