Skip to content

Commit 9e09828

Browse files
committed
Merge pull request opencv#17390 from l-bat:fix_ngraph_multiply
2 parents 1bec7ca + b236f10 commit 9e09828

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)