Commit 76a0e185 authored by Nick Korovaiko's avatar Nick Korovaiko Committed by Robert Kimball

switch error to debug msg (#1635)

parent 0fa17649
......@@ -1373,7 +1373,8 @@ void ngraph::runtime::cpu::pass::CPUFusion::construct_bounded_relu()
auto pattern_map = m.get_pattern_map();
if (!std::dynamic_pointer_cast<op::Constant>(pattern_map[alpha]))
{
throw ngraph_error("alpha must be constant for bounded relu");
NGRAPH_DEBUG << "alpha must be constant for bounded relu";
return false;
}
// we wont fuse if the alpha and the Relu output element type are not same
......
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