2020-10-12 17:28:20 +00:00
---
2021-11-18 19:00:48 +00:00
title: ARM Compute Library (ACL)
description: Instructions to execute ONNX Runtime with the ACL Execution Provider
2020-10-12 17:28:20 +00:00
parent: Execution Providers
2021-09-15 21:23:42 +00:00
nav_order: 4
2021-11-18 19:00:48 +00:00
redirect_from: /docs/reference/execution-providers/ACL-ExecutionProvider
2020-10-12 17:28:20 +00:00
---
# ACL Execution Provider
2021-05-10 22:19:37 +00:00
{: .no_toc }
2020-10-12 17:28:20 +00:00
2021-11-18 19:00:48 +00:00
The integration of ACL as an execution provider (EP) into ONNX Runtime accelerates performance of ONNX model workloads across Armv8 cores. [Arm Compute Library ](https://github.com/ARM-software/ComputeLibrary ){:target="_blank"} is an open source inference engine maintained by Arm and Linaro companies.
2020-10-12 17:28:20 +00:00
2021-05-10 22:19:37 +00:00
## Contents
{: .no_toc }
* TOC placeholder
{:toc}
## Build
2021-10-27 17:43:10 +00:00
For build instructions, please see the [build page ](../build/eps.md#arm-compute-library ).
2021-05-10 22:19:37 +00:00
## Usage
2020-10-12 17:28:20 +00:00
### C/C++
2021-05-10 22:19:37 +00:00
{: .no_toc }
2020-10-12 17:28:20 +00:00
```
2020-12-02 00:10:58 +00:00
Ort::Env env = Ort::Env{ORT_LOGGING_LEVEL_ERROR, "Default"};
Ort::SessionOptions sf;
bool enable_cpu_mem_arena = true;
Ort::ThrowOnError(OrtSessionOptionsAppendExecutionProvider_ACL(sf, enable_cpu_mem_arena));
```
2021-09-15 21:23:42 +00:00
The C API details are [here ](../get-started/with-c.html ).
2020-10-12 17:28:20 +00:00
## Performance Tuning
2021-10-27 17:43:10 +00:00
For performance tuning, please see guidance on this page: [ONNX Runtime Perf Tuning ](../performance/tune-performance.md )
2020-10-12 17:28:20 +00:00
2021-09-15 21:23:42 +00:00
When/if using [onnxruntime_perf_test ](https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/perftest ){:target="_blank"}, use the flag -e acl