mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
12 lines
566 B
Markdown
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)
|