Commit 4b7bcf8f authored by Tim Zerrell's avatar Tim Zerrell

Fix extraneous if with no body

parent 2ddcb3be
...@@ -211,9 +211,6 @@ void ngraph::runtime::plaidml::ImplQuantize::Apply() ...@@ -211,9 +211,6 @@ void ngraph::runtime::plaidml::ImplQuantize::Apply()
q_max = (1 << (8 * type.size())) - 1; q_max = (1 << (8 * type.size())) - 1;
q_min = 0; q_min = 0;
} }
if (!type.is_signed())
{
}
clamp_formula << "Uncast < " << q_min << " ? " << q_min << " : " clamp_formula << "Uncast < " << q_min << " ? " << q_min << " : "
<< "(Uncast > " << q_max << " ? " << q_max << " : Uncast)"; << "(Uncast > " << q_max << " ? " << q_max << " : Uncast)";
} }
......
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