diff --git a/inference-engine/src/mkldnn_plugin/mkldnn_exec_network.cpp b/inference-engine/src/mkldnn_plugin/mkldnn_exec_network.cpp index 69a4bc1721a8b2..ff154f4dee4199 100644 --- a/inference-engine/src/mkldnn_plugin/mkldnn_exec_network.cpp +++ b/inference-engine/src/mkldnn_plugin/mkldnn_exec_network.cpp @@ -91,13 +91,6 @@ MKLDNNExecNetwork::MKLDNNExecNetwork(const InferenceEngine::CNNNetwork &network, _callbackExecutor = _taskExecutor; } - // Workaround for initializing friendly names for all the OPs - // Otherwise they are initialized concurrently without thread safety. - // TODO: Can be removed after 57069 is done. - for (const auto& op : _network.getFunction()->get_ops()) { - op->get_friendly_name(); - } - int streams = std::max(1, _cfg.streamExecutorConfig._streams); std::vector tasks; tasks.resize(streams); _graphs.resize(streams);