-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Closed
Labels
ep:OpenVINOissues related to OpenVINO execution providerissues related to OpenVINO execution providerplatform:windowsissues related to the Windows platformissues related to the Windows platformstaleissues that have not been addressed in a while; categorized by a botissues that have not been addressed in a while; categorized by a bot
Description
Describe the issue
Facing issues with StableDiffusionPipeline in diffusers, trying to inference with OpenvinoEP using the following snippet
options = SessionOptions()
options.graph_optimization_level = GraphOptimizationLevel.ORT_DISABLE_ALL
OnnxStableDiffusionPipeline.from_pretrained(self.model, revision="onnx", provider="OpenVINOExecutionProvider", provider_options=[{'device_type' : 'CPU_FP32'}], sess_options = options)
And facing the following issue with the same, issue is specific to WSL/Ubuntu systems and not receiving the same when inferenced via Windows
onnxruntime.capi.onnxruntime_pybind11_state.Fail: [ONNXRuntimeError] : 1 : FAIL : Non-zero status code returned while running OpenVINO-EP-subgraph_4 node. Name:'OpenVINOExecutionProvider_OpenVINO-EP-subgraph_4_0' Status Message: /home/onnxruntimedev/onnxruntime/onnxruntime/core/providers/openvino/ov_interface.cc:53 onnxruntime::openvino_ep::OVExeNetwork onnxruntime::openvino_ep::OVCore::LoadNetwork(const string&, std::string&, ov::AnyMap&, std::string) [OpenVINO-EP] Exception while Loading Network for graph: OpenVINOExecutionProvider_OpenVINO-EP-subgraph_4_0Check 'false' failed at src/inference/src/core.cpp:149:
invalid external data: ExternalDataInfo(data_full_path: weights.pb, offset: 46080, data_length: 1280)
To reproduce
options = SessionOptions()
options.graph_optimization_level = GraphOptimizationLevel.ORT_DISABLE_ALL
OnnxStableDiffusionPipeline.from_pretrained(self.model, revision="onnx", provider="OpenVINOExecutionProvider", provider_options=[{'device_type' : 'CPU_FP32'}], sess_options = options)
Urgency
Planning to test the performance of Openvino EP with InvokeAI pipeline and provide a PR for the same
Platform
Linux
OS Version
20.04
ONNX Runtime Installation
Released Package
ONNX Runtime Version or Commit ID
1.15.1
ONNX Runtime API
Python
Architecture
X64
Execution Provider
OpenVINO
Execution Provider Library Version
Onnxruntime-openvino == 1.15.0 & openvino == 2023.0
Metadata
Metadata
Assignees
Labels
ep:OpenVINOissues related to OpenVINO execution providerissues related to OpenVINO execution providerplatform:windowsissues related to the Windows platformissues related to the Windows platformstaleissues that have not been addressed in a while; categorized by a botissues that have not been addressed in a while; categorized by a bot