-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenVINO EP not able to use CPU device #24208
Comments
@CristianCerasuoloo There was a fix introduced for this error in Release 1.21. The issue is not reproducible.
|
Thanks for the help @preetha-intel. I got this error with g++/gcc 9
This using g++/gcc 10
This error with g++/gcc 11
Again, thanks for all. |
Describe the issue
Hi, I am trying to integrate in my application the use of onnxruntime with OpenVINO EP using the C++ API.
To do this, I followed the directions in the documentation so:
./build.sh --config RelWithDebInfo --use_openvino CPU --parallel 4 --build_shared_lib --update --build
I compiled my application by integrating the libraries produced in build/Linux/RelWithDebInfo and the headers in onnxruntime/core/session and produced the application code that would load the provider:
When starting the application, the available providers appear to be (correctly) OpenVINOExecutionProvider and CPUExecutionProvider. However, when loading OpenVINOExecutionProvider, I get the following error:
OpenVINO is trying to use the NPU device even though it has not been specified!
To probe all the options I recompiled the library specifying NPU as a device as well, then with the following command
./build.sh --config RelWithDebInfo --use_openvino HETERO:CPU,NPU --parallel 4 --build_shared_lib --update --build
However, specifying NPU as the device I got the device unavailability error (as it should be)
onnxruntime::OpenVINOExecutionProvider::OpenVINOExecutionProvider(const onnxruntime::OpenVINOExecutionProviderInfo&) [ERROR] [OpenVINO] Specified device - NPU is not available
Instead, specifying as device HETERO:CPU,NPU I get the same initial error
On the OpenVINO library side, running the HelloQueryDevice sample I get the following output:
hello_query_device
therefore the device is correctly recognized and identified as CPU. The sample benchmark_app also correctly performs inference on the provided onnx model.
I want to to clarify that the very same problem happens with different append methods. Since the documentation of
AppendExecutionProvider
says to not be available for OpenVINO but only QNN, SNPE and XNNPACK I also tried:Appending OV with the v1 API (as specified in inference sample)
Appending OV with the v2 API:
Also, the previous without specifying any options
state->session_options->AppendExecutionProvider_OpenVINO(OrtOpenVINOProviderOptions ());
or
Moreover, since I didn't specify it before, the error seems to born in the Session creation and so, after the provider creation:
Lastly, here the informations about my machine
Ubuntu20.04 x86_64
CPU: Intel(R) Xeon(R) Silver 4210 CPU @ 2.20GHz
GPU: Not available
NPU: Not available
Onnxruntime v1.20.0
OpenVINO 2024.4.0
CMake 3.26.6
g++ (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0
I've also asked the very same question into the intel/onnxruntime fork but still no answer.
To reproduce
Urgency
Solving this issue is very important in order to put this new feature in the new release of my application (coming in few days).
So, the urgency is very high. Please help me as soon as possible.
Platform
Linux
OS Version
Ubuntu20.04
ONNX Runtime Installation
Built from Source
ONNX Runtime Version or Commit ID
v1.20.0
ONNX Runtime API
C++
Architecture
X64
Execution Provider
OpenVINO
Execution Provider Library Version
OpenVINO 2024.4.0
The text was updated successfully, but these errors were encountered: