You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I compiled openvino and onnxruntime from source code.
onnxruntime was build with --use_openvino. Build done successfully and *.so generated.
when I run command "grep -r "CreateExecutionProviderFactory_OpenVINO" *"in the my libdir, shows:
Binary file libonnxruntime.so matches
Binary file libonnxruntime.so.1.3.0 matches
Does the complie success == the openvino is used?
How can I check whether the current provider is OpenVINO, is there any C/C++ api like "get_the_current_provider"?
And How can I clearly specified the provider I used. is there any C/C++ api like "set_provider"?
I see this function "GetExecutionProviderType", is this usefull for me? how to use it ? Is there is any example?