diff --git a/modules/dnn/src/net_impl_fuse.cpp b/modules/dnn/src/net_impl_fuse.cpp index 4570d2b360..dfa542bd41 100644 --- a/modules/dnn/src/net_impl_fuse.cpp +++ b/modules/dnn/src/net_impl_fuse.cpp @@ -210,7 +210,7 @@ void Net::Impl::fuseLayers(const std::vector& blobsToKeep_) if (!nextData->params.has("operation") || toLowerCase(nextData->params.get("operation")) != "add") { CV_LOG_DEBUG(NULL, "DNN/CPU: fusion with NaryEltwise or Eltwise Layer operation is not supported: " - << nextData->params.get("operation")); + << toLowerCase(nextData->params.get("operation", "sum"))); break; }