Skip to content

Commit b236f10

Browse files
committed
Switch ngraph::op::v1::Multiply to v0
1 parent 1bec7ca commit b236f10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/dnn/src/layers/normalize_bbox_layer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ class NormalizeBBoxLayerImpl CV_FINAL : public NormalizeBBoxLayer
345345
weight = std::make_shared<ngraph::op::Constant>(
346346
ngraph::element::f32, ngraph::Shape(shape), blobs[0].data);
347347
}
348-
auto mul = std::make_shared<ngraph::op::v1::Multiply>(norm, weight, ngraph::op::AutoBroadcastType::NUMPY);
348+
auto mul = std::make_shared<ngraph::op::v0::Multiply>(norm, weight, ngraph::op::AutoBroadcastType::NUMPY);
349349
return Ptr<BackendNode>(new InfEngineNgraphNode(mul));
350350
}
351351
#endif // HAVE_DNN_NGRAPH

0 commit comments

Comments
 (0)