2019-10-31 19:25:36 +00:00
## ACL Execution Provider
[Arm Compute Library ](https://github.com/ARM-software/ComputeLibrary ) is an open source inference engine maintained by Arm and Linaro companies. The integration of ACL as an execution provider (EP) into ONNX Runtime accelerates performance of ONNX model workloads across Armv8 cores.
### Build ACL execution provider
2019-12-19 21:40:34 +00:00
For build instructions, please see the [BUILD page ](../../BUILD.md#ARM-Compute-Library ).
2019-10-31 19:25:36 +00:00
### Using the ACL execution provider
#### C/C++
To use ACL as execution provider for inferencing, please register it as below.
```
2020-03-18 22:42:46 +00:00
string log_id = "Foo";
auto logging_manager = std::make_unique< LoggingManager >
(std::unique_ptr< ISink > {new CLogSink{}},
static_cast< Severity > (lm_info.default_warning_level),
false,
LoggingManager::InstanceType::Default,
& log_id)
Environment::Create(std::move(logging_manager), env)
InferenceSession session_object{so, env};
2019-10-31 19:25:36 +00:00
session_object.RegisterExecutionProvider(std::make_unique< ::onnxruntime::ACLExecutionProvider > ());
status = session_object.Load(model_file_name);
```
The C API details are [here ](../C_API.md#c-api ).
### Performance Tuning
For performance tuning, please see guidance on this page: [ONNX Runtime Perf Tuning ](../ONNX_Runtime_Perf_Tuning.md )
When/if using [onnxruntime_perf_test ](../../onnxruntime/test/perftest ), use the flag -e acl