onnxruntime/docs/AddingExecutionProvider.md

13 lines
566 B
Markdown
Raw Normal View History

2018-11-20 00:48:22 +00:00
# Adding a new execution provider
* All execution providers inherit from
[IExecutionProvider](../include/onnxruntime/core/framework/execution_provider.h)
* The best way to start adding a provider is to start with examples already
added in ONNXRuntime
* [CPU Execution
Provider](../onnxruntime/core/providers/cpu/cpu_execution_provider.h)
* [CUDA Execution
Provider](../onnxruntime/core/providers/cuda/cuda_execution_provider.h)
* [MKL-DNN Execution
Provider](../onnxruntime/core/providers/mkldnn/mkldnn_execution_provider.h)