How to use parallel execution mode on CUDA Execution Provider, while executing onnxruntime session in multiprocessing #8984
Unanswered
AbhijitManepatil
asked this question in
Other Q&A
Replies: 1 comment 7 replies
-
Please do not use the parallel executor as it's unreliable. The error message clearly says that parallel execution mode is not supported for CUDA EP. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to execute onnx runtime session in multiprocessing on cuda using, onnxruntime.ExecutionMode.ORT_PARALLEL but while executing in parallel on cuda getting the following issue.
[W:onnxruntime:, inference_session.cc:421 RegisterExecutionProvider]
Parallel execution mode does not support the CUDA Execution Provider. So making the execution mode sequential for this session since it uses the CUDA Execution Provider.
Beta Was this translation helpful? Give feedback.
All reactions