From 840f896c5fffbed6d71a1383f68e0cc0554acb59 Mon Sep 17 00:00:00 2001 From: Javier Martinez Date: Thu, 5 Sep 2024 08:34:55 -0700 Subject: [PATCH] Uncomment line in OVEP that was commented out in error (#21973) ### Description One line change to re-enable a line incorrectly commented out in an earlier commit ### Motivation and Context Fix issue introduced with [PR 21872](https://github.com/microsoft/onnxruntime/pull/21872#discussion_r1736744441) --- onnxruntime/core/providers/openvino/backends/basic_backend.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxruntime/core/providers/openvino/backends/basic_backend.cc b/onnxruntime/core/providers/openvino/backends/basic_backend.cc index 3595c8a06d..8d340e2daf 100644 --- a/onnxruntime/core/providers/openvino/backends/basic_backend.cc +++ b/onnxruntime/core/providers/openvino/backends/basic_backend.cc @@ -89,7 +89,7 @@ BasicBackend::BasicBackend(std::unique_ptr& model_pr device_config, global_context_.ep_context_embed_mode, subgraph_context_.subgraph_name); - // ie_cnn_network_ = exe_network_.Get().get_runtime_model(); + ie_cnn_network_ = exe_network_.Get().get_runtime_model(); } else if (global_context_.export_ep_ctx_blob && hw_target.find("NPU") != std::string::npos) { std::shared_ptr ov_model;