Commit d6000754 authored by Jayaram Bobba's avatar Jayaram Bobba

Fix copy/paste error on batchnorm op assignment

parent 9af9031e
...@@ -230,7 +230,7 @@ namespace ngraph ...@@ -230,7 +230,7 @@ namespace ngraph
template <> template <>
void CPUAssignment::ASSIGN_DECL(ngraph::op::BatchNorm) void CPUAssignment::ASSIGN_DECL(ngraph::op::BatchNorm)
{ {
auto batchnorm = static_cast<op::ReluBackprop*>(node); auto batchnorm = static_cast<op::BatchNorm*>(node);
auto op_annotations = auto op_annotations =
std::make_shared<ngraph::runtime::cpu::CPUOpAnnotations>(); std::make_shared<ngraph::runtime::cpu::CPUOpAnnotations>();
op_annotations->set_mkldnn_op(true); op_annotations->set_mkldnn_op(true);
......
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