This fork is maintained by dividiti Limited.
To install a particular version of ArmNN we have to combine three kinds of tags:
-
Frontend-related tags (based on supported ArmNN parsers):
tf
,tflite
,onnx
. These can be combined. -
Backend-related tags (based on a specific build of ArmCL):
neon
,opencl
. These can be combined or both missing (reference). -
Version/Release-related tags:
rel.20.08
(a particular frozen release),release
(the latest stable release),dev
(the live development branch). These are mutually exclusive. Exactly one Version/Release tag must be present.
The live development version supporting the TFLite frontend and Neon backend:
$ ck install package --tags=lib,armnn,tflite,neon,dev
The latest stable release supporting the TensorFlow frontend and OpenCL backend:
$ ck install package --tags=lib,armnn,tf,opencl,release
The 20.08 release supporting the TFLite and ONNX frontends and no optimized backends (i.e. reference):
$ ck install package --tags=lib,armnn,tflite,onnx,rel.20.08