Skip to content

Commit

Permalink
fix ci issues
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabhkale17 committed Jan 22, 2025
1 parent e9f9a42 commit 7678bf8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion onnxruntime/core/providers/openvino/backend_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@ Status BackendManager::ExportCompiledBlobAsEPCtxNode(const onnxruntime::GraphVie
if (blob_filename.empty()) {
blob_filename = session_context_.onnx_model_path_name;
}
// const auto name{std::format("{}_{}", graph_body_viewer.ModelPath().stem().string(), subgraph_context_.subgraph_name)};
const auto name = graph_body_viewer.ModelPath().stem().string() + "_" + subgraph_context_.subgraph_name;
blob_filename = blob_filename.parent_path() / name;
blob_filename.replace_extension("blob");
Expand Down
1 change: 0 additions & 1 deletion onnxruntime/core/providers/openvino/contexts.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ struct SessionContext : ProviderInfo {
std::filesystem::path onnx_model_path_name;
uint32_t onnx_opset_version{0};
const std::vector<uint32_t> OpenVINO_Version = {OPENVINO_VERSION_MAJOR, OPENVINO_VERSION_MINOR};
// const std::string openvino_sdk_version = std::format("{}.{}", OPENVINO_VERSION_MAJOR, OPENVINO_VERSION_MINOR);
const std::string openvino_sdk_version = std::to_string(OPENVINO_VERSION_MAJOR) + "." + std::to_string(OPENVINO_VERSION_MINOR);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include <string>
#include <memory>
#include <vector>
// #include <format>
#include "core/providers/shared_library/provider_api.h"
#include "core/providers/openvino/openvino_execution_provider.h"
#include "core/providers/openvino/contexts.h"
Expand Down

0 comments on commit 7678bf8

Please sign in to comment.