Replies: 1 comment
-
Hoping for the return of openvino packages |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am currently working on a project that involves integrating the ONNX Runtime into a C# application, and I need to support multiple execution providers (EPs) such as CUDA, DirectML (DML), and CPU. My aim is to package these configurations into a single NuGet package to simplify deployment and management.
I understand that ONNX Runtime supports various EPs and can be built with support for multiple EPs. However, I am unsure how to configure the build process to include multiple EPs in a single NuGet package effectively.
This is the command I use:
.\build.bat --use_cuda --cudnn_home "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDNN\8.x" --cuda_home "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2" --use_dml --use_openvino CPU --build_shared_lib --build_nuget --config RelWithDebInfo
But it seems to only build openvino package for me.
Beta Was this translation helpful? Give feedback.
All reactions