We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1108efa commit 336d526Copy full SHA for 336d526
onnxruntime/core/providers/openvino/backend_manager.cc
@@ -331,6 +331,7 @@ static void DumpOpenVINOEPModel(const std::filesystem::path& onnx_model_path_nam
331
if (dash != std::string::npos) {
332
auto new_name = model_name.stem().string() + subgraph_name.substr(dash, std::string::npos);
333
model_name.replace_filename(new_name);
334
+ model_name.replace_extension(".onnx");
335
}
336
337
std::fstream dump(model_name, std::ios::out | std::ios::trunc | std::ios::binary);
0 commit comments