onnxruntime/docs/AddingExecutionProvider.md
2018-11-19 16:48:22 -08:00

12 lines
566 B
Markdown

# 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)