onnxruntime/docs/execution-providers/ACL-ExecutionProvider.md

1.2 KiB

title parent nav_order
ARM Compute Library Execution Providers 4

ACL Execution Provider

{: .no_toc }

Arm Compute Library{:target="_blank"} 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.

Contents

{: .no_toc }

  • TOC placeholder {:toc}

Build

For build instructions, please see the build page.

Usage

C/C++

{: .no_toc }

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

The C API details are here.

Performance Tuning

For performance tuning, please see guidance on this page: ONNX Runtime Perf Tuning

When/if using onnxruntime_perf_test{:target="_blank"}, use the flag -e acl