blob: e221f7dc0023aa2346a6ad50e04028931cb4a8a9 [file] [log] [blame]
Anthony Barbier3762e742018-03-02 11:49:33 +00001namespace arm_compute
2{
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003/** @mainpage Introduction
4
5@tableofcontents
6
7The Computer Vision and Machine Learning library is a set of functions optimised for both ARM CPUs and GPUs using SIMD technologies.
8
9Several builds of the library are available using various configurations:
10 - OS: Linux, Android or bare metal.
11 - Architecture: armv7a (32bit) or arm64-v8a (64bit)
Anthony Barbier20dbb822017-12-13 21:19:39 +000012 - Technology: NEON / OpenCL / GLES_COMPUTE / NEON and OpenCL and GLES_COMPUTE
Anthony Barbier6ff3b192017-09-04 18:44:23 +010013 - Debug / Asserts / Release: Use a build with asserts enabled to debug your application and enable extra validation. Once you are sure your application works as expected you can switch to a release build of the library for maximum performance.
14
15@section S0_1_contact Contact / Support
16
17Please email developer@arm.com
18
19In order to facilitate the work of the support team please provide the build information of the library you are using. To get the version of the library you are using simply run:
20
21 $ strings android-armv7a-cl-asserts/libarm_compute.so | grep arm_compute_version
22 arm_compute_version=v16.12 Build options: {'embed_kernels': '1', 'opencl': '1', 'arch': 'armv7a', 'neon': '0', 'asserts': '1', 'debug': '0', 'os': 'android', 'Werror': '1'} Git hash=f51a545d4ea12a9059fe4e598a092f1fd06dc858
23
Anthony Barbier14c86a92017-12-14 16:27:41 +000024@section S0_2_prebuilt_binaries Pre-built binaries
25
26For each release we provide some pre-built binaries of the library [here](https://github.com/ARM-software/ComputeLibrary/releases)
27
28These binaries have been built using the following toolchains:
29 - Linux armv7a: gcc-linaro-arm-linux-gnueabihf-4.9-2014.07_linux
30 - Linux arm64-v8a: gcc-linaro-4.9-2016.02-x86_64_aarch64-linux-gnu
Anthony Barbierd51ea0a2018-08-07 17:48:03 +010031 - Android armv7a: clang++ / libc++ NDK r17b
32 - Android am64-v8a: clang++ / libc++ NDK r17b
Anthony Barbier14c86a92017-12-14 16:27:41 +000033
34@warning Make sure to use a compatible toolchain to build your application or you will get some std::bad_alloc errors at runtime.
35
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036@section S1_file_organisation File organisation
37
38This archive contains:
39 - The arm_compute header and source files
40 - The latest Khronos OpenCL 1.2 C headers from the <a href="https://www.khronos.org/registry/cl/">Khronos OpenCL registry</a>
41 - The latest Khronos cl2.hpp from the <a href="https://www.khronos.org/registry/cl/">Khronos OpenCL registry</a> (API version 2.1 when this document was written)
Anthony Barbier20dbb822017-12-13 21:19:39 +000042 - The latest Khronos OpenGL ES 3.1 C headers from the <a href="https://www.khronos.org/registry/gles/">Khronos OpenGL ES registry</a>
43 - The latest Khronos EGL 1.5 C headers from the <a href="https://www.khronos.org/registry/gles/">Khronos EGL registry</a>
44 - The sources for a stub version of libOpenCL.so, libGLESv1_CM.so, libGLESv2.so and libEGL.so to help you build your application.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045 - An examples folder containing a few examples to compile and link against the library.
46 - A @ref utils folder containing headers with some boiler plate code used by the examples.
47 - This documentation.
48
49You should have the following file organisation:
50
51 .
52 ├── arm_compute --> All the arm_compute headers
53 │   ├── core
54 │   │   ├── CL
Anthony Barbier6a5627a2017-09-26 14:42:02 +010055 │   │   │   ├── CLKernelLibrary.h --> Manages all the OpenCL kernels compilation and caching, provides accessors for the OpenCL Context.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 │   │   │   ├── CLKernels.h --> Includes all the OpenCL kernels at once
57 │   │   │   ├── CL specialisation of all the generic objects interfaces (ICLTensor, ICLImage, etc.)
58 │   │   │   ├── kernels --> Folder containing all the OpenCL kernels
59 │   │   │   │   └── CL*Kernel.h
60 │   │   │   └── OpenCL.h --> Wrapper to configure the Khronos OpenCL C++ header
61 │   │ ├── CPP
Anthony Barbier6a5627a2017-09-26 14:42:02 +010062 │   │   │   ├── CPPKernels.h --> Includes all the CPP kernels at once
Anthony Barbier6ff3b192017-09-04 18:44:23 +010063 │   │ │   └── kernels --> Folder containing all the CPP kernels
Anthony Barbier6a5627a2017-09-26 14:42:02 +010064 │   │   │      └── CPP*Kernel.h
Anthony Barbier20dbb822017-12-13 21:19:39 +000065 │   │   ├── GLES_COMPUTE
66 │   │   │   ├── GCKernelLibrary.h --> Manages all the GLES kernels compilation and caching, provides accessors for the GLES Context.
67 │   │   │   ├── GCKernels.h --> Includes all the GLES kernels at once
68 │   │   │   ├── GLES specialisation of all the generic objects interfaces (IGCTensor, IGCImage, etc.)
69 │   │   │   ├── kernels --> Folder containing all the GLES kernels
70 │   │   │   │   └── GC*Kernel.h
71 │   │   │   └── OpenGLES.h --> Wrapper to configure the Khronos EGL and OpenGL ES C header
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072 │   │   ├── NEON
73 │   │   │   ├── kernels --> Folder containing all the NEON kernels
Anthony Barbier38e7f1f2018-05-21 13:37:47 +010074 │   │   │   │ ├── assembly --> headers for assembly optimised NEON kernels.
75 │   │   │   │ ├── convolution --> headers for convolution assembly optimised NEON kernels.
76 │   │   │   │   │   ├── common --> headers for code which is common to several convolution implementations.
77 │   │   │   │   │   ├── depthwise --> headers for Depthwise convolultion assembly implementation
78 │   │   │   │   │   └── winograd --> headers for Winograd convolution assembly implementation
79 │   │   │   │ ├── detail --> Common code for several intrinsics implementations.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010080 │   │   │   │   └── NE*Kernel.h
81 │   │   │   └── NEKernels.h --> Includes all the NEON kernels at once
82 │   │   ├── All common basic types (Types.h, Window, Coordinates, Iterator, etc.)
83 │   │   ├── All generic objects interfaces (ITensor, IImage, etc.)
84 │   │   └── Objects metadata classes (ImageInfo, TensorInfo, MultiImageInfo)
Anthony Barbier6a5627a2017-09-26 14:42:02 +010085 │   ├── graph
Anthony Barbier38e7f1f2018-05-21 13:37:47 +010086 │   │   ├── algorithms
87 │   │   │   └── Generic algorithms used by the graph backend (e.g Order of traversal)
88 │   │   ├── backends --> The backend specific code
89 │   │   │   ├── CL --> OpenCL specific operations
90 │   │   │   ├── GLES --> OpenGLES Compute Shaders specific operations
91 │   │   │   └── NEON --> NEON specific operations
92 │   │   ├── detail
93 │   │   │   └── Collection of internal utilities.
94 │   │   ├── frontend
95 │   │   │   └── Code related to the stream frontend interface.
96 │   │   ├── mutators
97 │   │   │   └── Used to modify / optimise the Graph intermediate representation(Operator fusion, in place operations, etc.)
Anthony Barbier6a5627a2017-09-26 14:42:02 +010098 │   │   ├── nodes
99 │   │   │   └── The various nodes supported by the graph API
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100100 │   │   ├── printers
101 │   │   │   └── Debug printers
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100102 │   │   └── Graph objects ( INode, ITensorAccessor, Graph, etc.)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100103 │   └── runtime
104 │   ├── CL
105 │   │   ├── CL objects & allocators (CLArray, CLImage, CLTensor, etc.)
106 │   │   ├── functions --> Folder containing all the OpenCL functions
107 │   │   │   └── CL*.h
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100108 │   │   ├── CLScheduler.h --> Interface to enqueue OpenCL kernels and get/set the OpenCL CommandQueue and ICLTuner.
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100109 │   │   ├── CLFunctions.h --> Includes all the OpenCL functions at once
110 │   │   └── tuners
111 │   │      └── Local workgroup size tuners for specific architectures / GPUs
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112 │   ├── CPP
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100113 │      │   ├── CPPKernels.h --> Includes all the CPP functions at once.
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100114 │   │   ├── CPPScheduler.h --> Basic pool of threads to execute CPP/NEON code on several cores in parallel
115 │   │   └── functions --> Folder containing all the CPP functions
116 │   │      └── CPP*.h
Anthony Barbier20dbb822017-12-13 21:19:39 +0000117 │   ├── GLES_COMPUTE
118 │   │   ├── GLES objects & allocators (GCArray, GCImage, GCTensor, etc.)
119 │   │   ├── functions --> Folder containing all the GLES functions
120 │   │   │   └── GC*.h
121 │   │   ├── GCScheduler.h --> Interface to enqueue GLES kernels and get/set the GLES CommandQueue.
122 │   │   └── GCFunctions.h --> Includes all the GLES functions at once
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100123 │   ├── NEON
124 │   │ ├── functions --> Folder containing all the NEON functions
125 │   │ │   └── NE*.h
126 │   │ └── NEFunctions.h --> Includes all the NEON functions at once
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100127 │   ├── OMP
128 │   │   └── OMPScheduler.h --> OpenMP scheduler (Alternative to the CPPScheduler)
129 │ ├── Memory manager files (LifetimeManager, PoolManager, etc.)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130 │   └── Basic implementations of the generic object interfaces (Array, Image, Tensor, etc.)
Anthony Barbiera8a28f62018-02-26 19:16:32 +0000131 ├── data -> Contains test images and reference data dumps used by validation tests
132 ├── docs -> Contains Doxyfile and Doxygen sources used to generate the HTML pages in the documentation folder.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100133 ├── documentation
134 │   ├── index.xhtml
135 │   └── ...
136 ├── documentation.xhtml -> documentation/index.xhtml
137 ├── examples
Anthony Barbier20dbb822017-12-13 21:19:39 +0000138 │   ├── cl_*.cpp --> OpenCL examples
Anthony Barbier14c86a92017-12-14 16:27:41 +0000139 │   ├── gc_*.cpp --> GLES compute shaders examples
Anthony Barbier20dbb822017-12-13 21:19:39 +0000140 │   ├── graph_*.cpp --> Graph examples
141 │   ├── neoncl_*.cpp --> NEON / OpenCL interoperability examples
142 │   └── neon_*.cpp --> NEON examples
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100143 ├── graph.h --> Includes all the Graph headers at once.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100144 ├── include
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100145 │   ├── CL
146 │   │ └── Khronos OpenCL C headers and C++ wrapper
147 │   ├── half --> FP16 library available from http://half.sourceforge.net
Anthony Barbier14c86a92017-12-14 16:27:41 +0000148 │   ├── libnpy --> Library to load / write npy buffers, available from https://github.com/llohse/libnpy
149 │  └── linux --> Headers only needed for Linux builds
150 │   └── Khronos EGL and OpenGLES headers
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151 ├── opencl-1.2-stubs
Anthony Barbier14c86a92017-12-14 16:27:41 +0000152 │ └── opencl_stubs.c --> OpenCL stubs implementation
153 ├── opengles-3.1-stubs
154 │   ├── EGL.c --> EGL stubs implementation
155 │   └── GLESv2.c --> GLESv2 stubs implementation
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100156 ├── scripts
157 │   ├── caffe_data_extractor.py --> Basic script to export weights from Caffe to npy files
158 │   └── tensorflow_data_extractor.py --> Basic script to export weights from Tensor Flow to npy files
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100159 ├── src
160 │   ├── core
161 │ │ └── ... (Same structure as headers)
Anthony Barbier20dbb822017-12-13 21:19:39 +0000162 │   │ ├── CL
163 │   │ │ └── cl_kernels --> All the OpenCL kernels
164 │   │ └── GLES_COMPUTE
165 │   │ └── cs_shaders --> All the OpenGL ES Compute Shaders
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100166 │   ├── graph
167 │ │ └── ... (Same structure as headers)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100168 │ └── runtime
169 │ └── ... (Same structure as headers)
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100170 ├── support
171 │ └── Various headers to work around toolchains / platform issues.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100172 ├── tests
173 │   ├── All test related files shared between validation and benchmark
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100174 │   ├── benchmark --> Sources for benchmarking
175 │ │ ├── Benchmark specific files
176 │   │ ├── fixtures
177 │ │ │ └── Backend agnostic fixtures to initialise and run the functions to test.
178 │ │ ├── CL --> OpenCL benchmarking tests
179 │ │ ├── GLES_COMPUTE --> GLES benchmarking tests
180 │ │ └── NEON --> NEON benchmarking tests
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100181 │   ├── CL --> OpenCL accessors
Anthony Barbier20dbb822017-12-13 21:19:39 +0000182 │   ├── GLES_COMPUTE --> GLES accessors
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100183 │   ├── NEON --> NEON accessors
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100184 │   ├── datasets
185 │ │ └── Datasets for all the validation / benchmark tests, layer configurations for various networks, etc.
186 │   ├── framework
187 │ │ └── Boiler plate code for both validation and benchmark test suites (Command line parsers, instruments, output loggers, etc.)
188 │   ├── networks
189 │ │ └── Examples of how to instantiate networks.
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100190 │   └── validation --> Sources for validation
191 │ ├── Validation specific files
192 │   ├── fixtures
193 │ │ └── Backend agnostic fixtures to initialise and run the functions to test.
194 │   ├── reference
195 │ │ └── Reference implementation used to validate the results of the various backends.
196 │ ├── CL --> OpenCL validation tests
197 │ ├── GLES_COMPUTE --> GLES validation tests
198 │ ├── CPP --> C++ reference implementations
199 │ └── NEON --> NEON validation tests
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100200 └── utils --> Boiler plate code used by examples
Anthony Barbier20dbb822017-12-13 21:19:39 +0000201 └── Various utilities to print types, load / store assets, etc.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100202
203@section S2_versions_changelog Release versions and changelog
204
205@subsection S2_1_versions Release versions
206
207All releases are numbered vYY.MM Where YY are the last two digits of the year, and MM the month number.
208If there is more than one release in a month then an extra sequential number is appended at the end:
209
210 v17.03 (First release of March 2017)
211 v17.03.1 (Second release of March 2017)
212 v17.04 (First release of April 2017)
213
214@note We're aiming at releasing one major public release with new features per quarter. All releases in between will only contain bug fixes.
215
216@subsection S2_2_changelog Changelog
217
Anthony Barbierd51ea0a2018-08-07 17:48:03 +0100218v18.08 Public major release
219 - Various bug fixes.
220 - Updated recommended NDK version to r17b.
221
222v18.05 Public major release
Pablo Tellob5cc95b2018-05-15 11:49:33 +0100223 - Various bug fixes.
224 - Various optimisations.
Pablo Telloeb82fd22018-02-23 13:43:50 +0000225 - Major redesign in the interface for the neon kernels implemented in assembly.
226 - Removed arm_compute::NEGEMMLowpAArch64A53Kernel / arm_compute::NEGEMMLowpAArch64Kernel / arm_compute::NEGEMMLowpAArch64V8P4Kernel / arm_compute::NEGEMMInterleavedBlockedKernel / arm_compute::NEGEMMLowpAssemblyMatrixMultiplyCore / arm_compute::NEHGEMMAArch64FP16Kernel
227 - Added NEGEMMAssemblyWrapper and AssemblyKernelGlue which are used to execute assembly kernels in neon functions.
228 - Minor changes to the CPUInfo type to make it compatible with the new assembly gemm interface.
Pablo Tellob5cc95b2018-05-15 11:49:33 +0100229 - Moved neon assembly kernels to the folder src/core/NEON/kernels/arm_gemm.
230 - Improved doxygen documentation.
231 - Improved memory management for layer's transitions.
232 - Added support for NHWC data layout in tensors.
233 - Added NHWC data layout support to:
234 - @ref NEGEMMConvolutionLayer
235 - @ref NEDirectConvolutionLayer
236 - @ref NEPoolingLayer / @ref CLPoolingLayer
237 - @ref NEBatchNormalizationLayer / @ref CLBatchNormalizationLayer
238 - @ref NEDepthwiseConvolutionLayer
239 - @ref NEScale
240 - @ref NEIm2Col
241 - Added support for dilated convolutions in @ref NEConvolutionLayer and @ref CLConvolutionLayer.
242 - New OpenCL kernels / functions:
243 - @ref CLChannelShuffleLayer / @ref CLChannelShuffleLayerKernel
244 - @ref CLConvertFullyConnectedWeightsKernel / @ref CLConvertFullyConnectedWeights
245 - @ref CLCopy / @ref CLCopyKernel
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100246 - @ref CLLSTMLayer
Pablo Tellob5cc95b2018-05-15 11:49:33 +0100247 - @ref CLRNNLayer
248 - @ref CLWidthConcatenateLayer / @ref CLWidthConcatenateLayerKernel
249 - @ref CLWinogradFilterTransformKernel / @ref CLWinogradInputTransformKernel / @ref CLWinogradConvolutionLayer
250 - @ref CLWinogradInputTransformKernel / @ref CLWinogradInputTransform
251 - New Neon kernels / functions:
252 - @ref CLRNNLayer
253 - @ref NEConvertFullyConnectedWeightsKernel / @ref NEConvertFullyConnectedWeights.
254 - Created the validate method in @ref CLDepthwiseConvolutionLayer.
255 - Beta and gamma are no longer mandatory arguments in @ref NEBatchNormalizationLayer and @ref CLBatchNormalizationLayer.
256 - Added depth multiplier support in @ref NEDepthwiseConvolutionLayer and @ref CLDepthwiseConvolutionLayer.
257 - Added broadcast multiply support in @ref NEPixelWiseMultiplication / @ref NEPixelWiseMultiplicationKernel.
258 - Port mobilenet example to NHWC data layout.
259 - Enabled Winograd method in @ref CLConvolutionLayer.
260 - Renamed NEWinogradLayer to @ref NEWinogradConvolutionLayer.
261 - Updated @ref NEWinogradConvolutionLayer to use highly optimised assembly kernels in src/core/NEON/kernels/arm_gemm.
262 - Added memory manager support in GLES functions.
263 - Major refactoring of the graph API.
264 - Added GLES backend in the graph API.
265 - Added support for the memory manager in the graph API.
266 - Enabled Winograd Convolution method in the graph API.
267 - Added support for grouped convolutions in the graph API.
268 - Replaced NEDeconvolutionLayerUpsampleKernel with @ref NEScaleKernel in @ref NEDeconvolutionLayer.
269 - Added fast maths flag in @ref CLConvolutionLayer.
270 - Added new tests and benchmarks in validation and benchmark frameworks
271 - Merge Activation layer with Convolution Layer (NEON. CL, GLES)
272 - Added support to OpenCL 2.0 SVM
273 - Added support to import memory in OpenCL tensors.
274 - Added the prepare() method to perform any one off pre-processing before running the function.
275 - Added new examples:
276 - graph_inception_v4.cpp
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100277 - graph_resnext50.cpp
Pablo Tellob5cc95b2018-05-15 11:49:33 +0100278 - Added memory measurement instrument for CL.
Pablo Telloeb82fd22018-02-23 13:43:50 +0000279
Anthony Barbier577fbdf2018-03-01 15:17:54 +0000280v18.03 Public maintenance release
281 - Various bug fixes.
Anthony Barbier3762e742018-03-02 11:49:33 +0000282 - Fixed bug in @ref NEActivationLayer
283 - Fix in @ref CLTuner when using batches.
Anthony Barbier577fbdf2018-03-01 15:17:54 +0000284 - Updated recommended NDK version to r16b (And fixed warnings).
285 - Fixed bug in validation code.
286 - Added Inception v4 graph example.
Georgios Pinitas9fb11592018-04-26 20:34:58 +0100287 - Renamed NEWinogradLayer.cpp to @ref NEWinogradConvolutionLayer
Anthony Barbier577fbdf2018-03-01 15:17:54 +0000288
Anthony Barbier2d0ce772018-02-21 15:35:36 +0000289v18.02 Public major release
290 - Various NEON / OpenCL / GLES optimisations.
291 - Various bug fixes.
292 - Changed default number of threads on big LITTLE systems.
293 - Refactored examples and added:
294 - graph_mobilenet_qassym8
295 - graph_resnet
296 - graph_squeezenet_v1_1
Anthony Barbier3762e742018-03-02 11:49:33 +0000297 - Renamed @ref CLConvolutionLayer into @ref CLGEMMConvolutionLayer and created a new @ref CLConvolutionLayer to select the fastest convolution method.
298 - Renamed @ref NEConvolutionLayer into @ref NEGEMMConvolutionLayer and created a new @ref NEConvolutionLayer to select the fastest convolution method.
Anthony Barbier2d0ce772018-02-21 15:35:36 +0000299 - Added in place support to:
Anthony Barbier3762e742018-03-02 11:49:33 +0000300 - @ref CLActivationLayer
301 - @ref CLBatchNormalizationLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +0000302 - Added QASYMM8 support to:
Anthony Barbier3762e742018-03-02 11:49:33 +0000303 - @ref CLActivationLayer
304 - @ref CLDepthwiseConvolutionLayer
305 - @ref NEDepthwiseConvolutionLayer
306 - @ref NESoftmaxLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +0000307 - Added FP16 support to:
Anthony Barbier3762e742018-03-02 11:49:33 +0000308 - @ref CLDepthwiseConvolutionLayer3x3
309 - @ref CLDepthwiseConvolutionLayer
310 - Added broadcasting support to @ref NEArithmeticAddition / @ref CLArithmeticAddition / @ref CLPixelWiseMultiplication
311 - Added fused batched normalization and activation to @ref CLBatchNormalizationLayer and @ref NEBatchNormalizationLayer
312 - Added support for non-square pooling to @ref NEPoolingLayer and @ref CLPoolingLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +0000313 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000314 - @ref CLDirectConvolutionLayerOutputStageKernel
Pablo Tellof6c572c2018-02-14 12:47:30 +0000315 - New NEON kernels / functions
Anthony Barbier2d0ce772018-02-21 15:35:36 +0000316 - Added name() method to all kernels.
317 - Added support for Winograd 5x5.
Anthony Barbier3762e742018-03-02 11:49:33 +0000318 - @ref NEPermuteKernel / @ref NEPermute
Georgios Pinitas9fb11592018-04-26 20:34:58 +0100319 - @ref NEWinogradLayerTransformInputKernel / NEWinogradLayer
320 - @ref NEWinogradLayerTransformOutputKernel / NEWinogradLayer
321 - @ref NEWinogradLayerTransformWeightsKernel / NEWinogradLayer
Anthony Barbiere1553372018-07-16 18:53:52 +0100322 - Renamed NEWinogradLayerKernel into NEWinogradLayerBatchedGEMMKernel
Anthony Barbier2d0ce772018-02-21 15:35:36 +0000323 - New GLES kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000324 - @ref GCTensorShiftKernel / @ref GCTensorShift
Pablo Tellof6c572c2018-02-14 12:47:30 +0000325
Anthony Barbier64c95a02018-01-22 18:48:55 +0000326v18.01 Public maintenance release
327 - Various bug fixes
328 - Added some of the missing validate() methods
Anthony Barbier3762e742018-03-02 11:49:33 +0000329 - Added @ref CLDeconvolutionLayerUpsampleKernel / @ref CLDeconvolutionLayer @ref CLDeconvolutionLayerUpsample
330 - Added @ref CLPermuteKernel / @ref CLPermute
Anthony Barbier64c95a02018-01-22 18:48:55 +0000331 - Added method to clean the programs cache in the CL Kernel library.
Anthony Barbier3762e742018-03-02 11:49:33 +0000332 - Added @ref GCArithmeticAdditionKernel / @ref GCArithmeticAddition
333 - Added @ref GCDepthwiseConvolutionLayer3x3Kernel / @ref GCDepthwiseConvolutionLayer3x3
334 - Added @ref GCNormalizePlanarYUVLayerKernel / @ref GCNormalizePlanarYUVLayer
335 - Added @ref GCScaleKernel / @ref GCScale
336 - Added @ref GCWeightsReshapeKernel / @ref GCConvolutionLayer
Anthony Barbier64c95a02018-01-22 18:48:55 +0000337 - Added FP16 support to the following GLES compute kernels:
Anthony Barbier3762e742018-03-02 11:49:33 +0000338 - @ref GCCol2ImKernel
339 - @ref GCGEMMInterleave4x4Kernel
340 - @ref GCGEMMTranspose1xWKernel
341 - @ref GCIm2ColKernel
342 - Refactored NEON Winograd (NEWinogradLayerKernel)
343 - Added @ref NEDirectConvolutionLayerOutputStageKernel
Anthony Barbier64c95a02018-01-22 18:48:55 +0000344 - Added QASYMM8 support to the following NEON kernels:
Anthony Barbier3762e742018-03-02 11:49:33 +0000345 - @ref NEDepthwiseConvolutionLayer3x3Kernel
346 - @ref NEFillBorderKernel
347 - @ref NEPoolingLayerKernel
Anthony Barbier64c95a02018-01-22 18:48:55 +0000348 - Added new examples:
349 - graph_cl_mobilenet_qasymm8.cpp
350 - graph_inception_v3.cpp
351 - gc_dc.cpp
352 - More tests added to both validation and benchmarking suites.
353
Gian Marcoff850932017-12-11 12:37:17 +0000354v17.12 Public major release
355 - Most machine learning functions on OpenCL support the new data type QASYMM8
356 - Introduced logging interface
357 - Introduced opencl timer
358 - Reworked GEMMLowp interface
359 - Added new NEON assembly kernels for GEMMLowp, SGEMM and HGEMM
360 - Added validation method for most Machine Learning kernels / functions
361 - Added new graph examples such as googlenet, mobilenet, squeezenet, vgg16 and vgg19
362 - Added sgemm example for OpenCL
363 - Added absolute difference example for GLES compute
364 - Added new tests and benchmarks in validation and benchmark frameworks
365 - Added new kernels / functions for GLES compute
366
367 - New OpenGL ES kernels / functions
Anthony Barbier3762e742018-03-02 11:49:33 +0000368 - @ref GCAbsoluteDifferenceKernel / @ref GCAbsoluteDifference
369 - @ref GCActivationLayerKernel / @ref GCActivationLayer
370 - @ref GCBatchNormalizationLayerKernel / @ref GCBatchNormalizationLayer
371 - @ref GCCol2ImKernel
372 - @ref GCDepthConcatenateLayerKernel / @ref GCDepthConcatenateLayer
373 - @ref GCDirectConvolutionLayerKernel / @ref GCDirectConvolutionLayer
374 - @ref GCDropoutLayerKernel / @ref GCDropoutLayer
375 - @ref GCFillBorderKernel / @ref GCFillBorder
376 - @ref GCGEMMInterleave4x4Kernel / @ref GCGEMMInterleave4x4
377 - @ref GCGEMMMatrixAccumulateBiasesKernel / @ref GCGEMMMatrixAdditionKernel / @ref GCGEMMMatrixMultiplyKernel / @ref GCGEMM
378 - @ref GCGEMMTranspose1xWKernel / @ref GCGEMMTranspose1xW
379 - @ref GCIm2ColKernel
380 - @ref GCNormalizationLayerKernel / @ref GCNormalizationLayer
381 - @ref GCPixelWiseMultiplicationKernel / @ref GCPixelWiseMultiplication
382 - @ref GCPoolingLayerKernel / @ref GCPoolingLayer
383 - @ref GCLogits1DMaxKernel / @ref GCLogits1DShiftExpSumKernel / @ref GCLogits1DNormKernel / @ref GCSoftmaxLayer
384 - @ref GCTransposeKernel / @ref GCTranspose
Gian Marcoff850932017-12-11 12:37:17 +0000385
386 - New NEON kernels / functions
Pablo Telloeb82fd22018-02-23 13:43:50 +0000387 - arm_compute::NEGEMMLowpAArch64A53Kernel / arm_compute::NEGEMMLowpAArch64Kernel / arm_compute::NEGEMMLowpAArch64V8P4Kernel / arm_compute::NEGEMMInterleavedBlockedKernel / arm_compute::NEGEMMLowpAssemblyMatrixMultiplyCore
388 - arm_compute::NEHGEMMAArch64FP16Kernel
Anthony Barbier3762e742018-03-02 11:49:33 +0000389 - @ref NEDepthwiseConvolutionLayer3x3Kernel / @ref NEDepthwiseIm2ColKernel / @ref NEGEMMMatrixVectorMultiplyKernel / @ref NEDepthwiseVectorToTensorKernel / @ref NEDepthwiseConvolutionLayer
390 - @ref NEGEMMLowpOffsetContributionKernel / @ref NEGEMMLowpMatrixAReductionKernel / @ref NEGEMMLowpMatrixBReductionKernel / @ref NEGEMMLowpMatrixMultiplyCore
391 - @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
392 - @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleKernel / @ref NEGEMMLowpQuantizeDownInt32ToUint8Scale
Georgios Pinitas9fb11592018-04-26 20:34:58 +0100393 - NEWinogradLayer / NEWinogradLayerKernel
Gian Marcoff850932017-12-11 12:37:17 +0000394
395 - New OpenCL kernels / functions
Anthony Barbier3762e742018-03-02 11:49:33 +0000396 - @ref CLGEMMLowpOffsetContributionKernel / @ref CLGEMMLowpMatrixAReductionKernel / @ref CLGEMMLowpMatrixBReductionKernel / @ref CLGEMMLowpMatrixMultiplyCore
397 - @ref CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / @ref CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
398 - @ref CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel / @ref CLGEMMLowpQuantizeDownInt32ToUint8Scale
Gian Marcoff850932017-12-11 12:37:17 +0000399
400 - New graph nodes for NEON and OpenCL
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100401 - graph::BranchLayer
402 - graph::DepthConvertLayer
403 - graph::DepthwiseConvolutionLayer
404 - graph::DequantizationLayer
405 - graph::FlattenLayer
406 - graph::QuantizationLayer
407 - graph::ReshapeLayer
Gian Marcoff850932017-12-11 12:37:17 +0000408
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +0100409v17.10 Public maintenance release
410 - Bug fixes:
411 - Check the maximum local workgroup size supported by OpenCL devices
412 - Minor documentation updates (Fixed instructions to build the examples)
Anthony Barbier3762e742018-03-02 11:49:33 +0000413 - Introduced a graph::GraphContext
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +0100414 - Added a few new Graph nodes, support for branches and grouping.
415 - Automatically enable cl_printf in debug builds
416 - Fixed bare metal builds for armv7a
417 - Added AlexNet and cartoon effect examples
418 - Fixed library builds: libraries are no longer built as supersets of each other.(It means application using the Runtime part of the library now need to link against both libarm_compute_core and libarm_compute)
419
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100420v17.09 Public major release
421 - Experimental Graph support: initial implementation of a simple stream API to easily chain machine learning layers.
Anthony Barbier3762e742018-03-02 11:49:33 +0000422 - Memory Manager (@ref BlobLifetimeManager, @ref BlobMemoryPool, @ref ILifetimeManager, @ref IMemoryGroup, @ref IMemoryManager, @ref IMemoryPool, @ref IPoolManager, @ref MemoryManagerOnDemand, @ref PoolManager)
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100423 - New validation and benchmark frameworks (Boost and Google frameworks replaced by homemade framework).
424 - Most machine learning functions support both fixed point 8 and 16 bit (QS8, QS16) for both NEON and OpenCL.
425 - New NEON kernels / functions:
Pablo Telloeb82fd22018-02-23 13:43:50 +0000426 - arm_compute::NEGEMMAssemblyBaseKernel arm_compute::NEGEMMAArch64Kernel
Anthony Barbier3762e742018-03-02 11:49:33 +0000427 - @ref NEDequantizationLayerKernel / @ref NEDequantizationLayer
428 - @ref NEFloorKernel / @ref NEFloor
429 - @ref NEL2NormalizeLayerKernel / @ref NEL2NormalizeLayer
430 - @ref NEQuantizationLayerKernel @ref NEMinMaxLayerKernel / @ref NEQuantizationLayer
431 - @ref NEROIPoolingLayerKernel / @ref NEROIPoolingLayer
432 - @ref NEReductionOperationKernel / @ref NEReductionOperation
433 - @ref NEReshapeLayerKernel / @ref NEReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100434
435 - New OpenCL kernels / functions:
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000436 - @ref CLDepthwiseConvolutionLayer3x3NCHWKernel @ref CLDepthwiseConvolutionLayer3x3NHWCKernel @ref CLDepthwiseIm2ColKernel @ref CLDepthwiseVectorToTensorKernel @ref CLDepthwiseWeightsReshapeKernel / @ref CLDepthwiseConvolutionLayer3x3 @ref CLDepthwiseConvolutionLayer @ref CLDepthwiseSeparableConvolutionLayer
Anthony Barbier3762e742018-03-02 11:49:33 +0000437 - @ref CLDequantizationLayerKernel / @ref CLDequantizationLayer
438 - @ref CLDirectConvolutionLayerKernel / @ref CLDirectConvolutionLayer
439 - @ref CLFlattenLayer
440 - @ref CLFloorKernel / @ref CLFloor
441 - @ref CLGEMMTranspose1xW
442 - @ref CLGEMMMatrixVectorMultiplyKernel
443 - @ref CLL2NormalizeLayerKernel / @ref CLL2NormalizeLayer
444 - @ref CLQuantizationLayerKernel @ref CLMinMaxLayerKernel / @ref CLQuantizationLayer
445 - @ref CLROIPoolingLayerKernel / @ref CLROIPoolingLayer
446 - @ref CLReductionOperationKernel / @ref CLReductionOperation
447 - @ref CLReshapeLayerKernel / @ref CLReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100448
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100449v17.06 Public major release
450 - Various bug fixes
451 - Added support for fixed point 8 bit (QS8) to the various NEON machine learning kernels.
452 - Added unit tests and benchmarks (AlexNet, LeNet)
453 - Added support for sub tensors.
454 - Added infrastructure to provide GPU specific optimisation for some OpenCL kernels.
Anthony Barbier3762e742018-03-02 11:49:33 +0000455 - Added @ref OMPScheduler (OpenMP) scheduler for NEON
456 - Added @ref SingleThreadScheduler scheduler for NEON (For bare metal)
457 - User can specify his own scheduler by implementing the @ref IScheduler interface.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100458 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000459 - @ref CLBatchNormalizationLayerKernel / @ref CLBatchNormalizationLayer
460 - @ref CLDepthConcatenateLayerKernel / @ref CLDepthConcatenateLayer
461 - @ref CLHOGOrientationBinningKernel @ref CLHOGBlockNormalizationKernel, @ref CLHOGDetectorKernel / @ref CLHOGDescriptor @ref CLHOGDetector @ref CLHOGGradient @ref CLHOGMultiDetection
462 - @ref CLLocallyConnectedMatrixMultiplyKernel / @ref CLLocallyConnectedLayer
463 - @ref CLWeightsReshapeKernel / @ref CLConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100464 - New C++ kernels:
Anthony Barbier3762e742018-03-02 11:49:33 +0000465 - @ref CPPDetectionWindowNonMaximaSuppressionKernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100466 - New NEON kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000467 - @ref NEBatchNormalizationLayerKernel / @ref NEBatchNormalizationLayer
468 - @ref NEDepthConcatenateLayerKernel / @ref NEDepthConcatenateLayer
469 - @ref NEDirectConvolutionLayerKernel / @ref NEDirectConvolutionLayer
470 - @ref NELocallyConnectedMatrixMultiplyKernel / @ref NELocallyConnectedLayer
471 - @ref NEWeightsReshapeKernel / @ref NEConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100472
473v17.05 Public bug fixes release
474 - Various bug fixes
475 - Remaining of the functions ported to use accurate padding.
476 - Library does not link against OpenCL anymore (It uses dlopen / dlsym at runtime instead to determine whether or not OpenCL is available).
477 - Added "free" method to allocator.
478 - Minimum version of g++ required for armv7 Linux changed from 4.8 to 4.9
479
480v17.04 Public bug fixes release
481
482 The following functions have been ported to use the new accurate padding:
Anthony Barbier3762e742018-03-02 11:49:33 +0000483 - @ref CLColorConvertKernel
484 - @ref CLEdgeNonMaxSuppressionKernel
485 - @ref CLEdgeTraceKernel
486 - @ref CLGaussianPyramidHorKernel
487 - @ref CLGaussianPyramidVertKernel
488 - @ref CLGradientKernel
489 - @ref NEChannelCombineKernel
490 - @ref NEFillArrayKernel
491 - @ref NEGaussianPyramidHorKernel
492 - @ref NEGaussianPyramidVertKernel
493 - @ref NEHarrisScoreFP16Kernel
494 - @ref NEHarrisScoreKernel
495 - @ref NEHOGDetectorKernel
496 - @ref NELogits1DMaxKernel
497 - NELogits1DShiftExpSumKernel
498 - NELogits1DNormKernel
499 - @ref NENonMaximaSuppression3x3FP16Kernel
500 - @ref NENonMaximaSuppression3x3Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100501
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100502v17.03.1 First Major public release of the sources
503 - Renamed the library to arm_compute
504 - New CPP target introduced for C++ kernels shared between NEON and CL functions.
505 - New padding calculation interface introduced and ported most kernels / functions to use it.
506 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000507 - @ref CLGEMMLowpMatrixMultiplyKernel / CLGEMMLowp
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100508 - New NEON kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000509 - @ref NENormalizationLayerKernel / @ref NENormalizationLayer
510 - @ref NETransposeKernel / @ref NETranspose
511 - @ref NELogits1DMaxKernel, NELogits1DShiftExpSumKernel, NELogits1DNormKernel / @ref NESoftmaxLayer
512 - @ref NEIm2ColKernel, @ref NECol2ImKernel, NEConvolutionLayerWeightsReshapeKernel / @ref NEConvolutionLayer
513 - @ref NEGEMMMatrixAccumulateBiasesKernel / @ref NEFullyConnectedLayer
514 - @ref NEGEMMLowpMatrixMultiplyKernel / NEGEMMLowp
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100515
516v17.03 Sources preview
517 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000518 - @ref CLGradientKernel, @ref CLEdgeNonMaxSuppressionKernel, @ref CLEdgeTraceKernel / @ref CLCannyEdge
519 - GEMM refactoring + FP16 support: @ref CLGEMMInterleave4x4Kernel, @ref CLGEMMTranspose1xWKernel, @ref CLGEMMMatrixMultiplyKernel, @ref CLGEMMMatrixAdditionKernel / @ref CLGEMM
520 - @ref CLGEMMMatrixAccumulateBiasesKernel / @ref CLFullyConnectedLayer
521 - @ref CLTransposeKernel / @ref CLTranspose
522 - @ref CLLKTrackerInitKernel, @ref CLLKTrackerStage0Kernel, @ref CLLKTrackerStage1Kernel, @ref CLLKTrackerFinalizeKernel / @ref CLOpticalFlow
523 - @ref CLNormalizationLayerKernel / @ref CLNormalizationLayer
524 - @ref CLLaplacianPyramid, @ref CLLaplacianReconstruct
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100525 - New NEON kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000526 - @ref NEActivationLayerKernel / @ref NEActivationLayer
527 - GEMM refactoring + FP16 support (Requires armv8.2 CPU): @ref NEGEMMInterleave4x4Kernel, @ref NEGEMMTranspose1xWKernel, @ref NEGEMMMatrixMultiplyKernel, @ref NEGEMMMatrixAdditionKernel / @ref NEGEMM
528 - @ref NEPoolingLayerKernel / @ref NEPoolingLayer
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100529
530v17.02.1 Sources preview
531 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000532 - @ref CLLogits1DMaxKernel, @ref CLLogits1DShiftExpSumKernel, @ref CLLogits1DNormKernel / @ref CLSoftmaxLayer
533 - @ref CLPoolingLayerKernel / @ref CLPoolingLayer
534 - @ref CLIm2ColKernel, @ref CLCol2ImKernel, CLConvolutionLayerWeightsReshapeKernel / @ref CLConvolutionLayer
535 - @ref CLRemapKernel / @ref CLRemap
536 - @ref CLGaussianPyramidHorKernel, @ref CLGaussianPyramidVertKernel / @ref CLGaussianPyramid, @ref CLGaussianPyramidHalf, @ref CLGaussianPyramidOrb
537 - @ref CLMinMaxKernel, @ref CLMinMaxLocationKernel / @ref CLMinMaxLocation
538 - @ref CLNonLinearFilterKernel / @ref CLNonLinearFilter
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100539 - New NEON FP16 kernels (Requires armv8.2 CPU)
Anthony Barbier3762e742018-03-02 11:49:33 +0000540 - @ref NEAccumulateWeightedFP16Kernel
541 - @ref NEBox3x3FP16Kernel
542 - @ref NENonMaximaSuppression3x3FP16Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100543
544v17.02 Sources preview
545 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000546 - @ref CLActivationLayerKernel / @ref CLActivationLayer
547 - @ref CLChannelCombineKernel / @ref CLChannelCombine
548 - @ref CLDerivativeKernel / @ref CLChannelExtract
549 - @ref CLFastCornersKernel / @ref CLFastCorners
550 - @ref CLMeanStdDevKernel / @ref CLMeanStdDev
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100551 - New NEON kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +0000552 - HOG / SVM: @ref NEHOGOrientationBinningKernel, @ref NEHOGBlockNormalizationKernel, @ref NEHOGDetectorKernel, NEHOGNonMaximaSuppressionKernel / @ref NEHOGDescriptor, @ref NEHOGDetector, @ref NEHOGGradient, @ref NEHOGMultiDetection
553 - @ref NENonLinearFilterKernel / @ref NENonLinearFilter
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100554 - Introduced a CLScheduler to manage the default context and command queue used by the runtime library and create synchronisation events.
555 - Switched all the kernels / functions to use tensors instead of images.
556 - Updated documentation to include instructions to build the library from sources.
557
558v16.12 Binary preview release
559 - Original release
560
561@section S3_how_to_build How to build the library and the examples
562
563@subsection S3_1_build_options Build options
564
565scons 2.3 or above is required to build the library.
566To see the build options available simply run ```scons -h```:
567
Anthony Barbier79c61782017-06-23 11:48:24 +0100568 debug: Debug (yes|no)
569 default: False
570 actual: False
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100571
Anthony Barbier79c61782017-06-23 11:48:24 +0100572 asserts: Enable asserts (this flag is forced to 1 for debug=1) (yes|no)
573 default: False
574 actual: False
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100575
Anthony Barbier79c61782017-06-23 11:48:24 +0100576 arch: Target Architecture (armv7a|arm64-v8a|arm64-v8.2-a|x86_32|x86_64)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100577 default: armv7a
578 actual: armv7a
579
Anthony Barbier79c61782017-06-23 11:48:24 +0100580 os: Target OS (linux|android|bare_metal)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100581 default: linux
582 actual: linux
583
Anthony Barbier2d0ce772018-02-21 15:35:36 +0000584 build: Build type (native|cross_compile|embed_only)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100585 default: cross_compile
586 actual: cross_compile
587
Anthony Barbier79c61782017-06-23 11:48:24 +0100588 examples: Build example programs (yes|no)
589 default: True
590 actual: True
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100591
Anthony Barbier79c61782017-06-23 11:48:24 +0100592 Werror: Enable/disable the -Werror compilation flag (yes|no)
593 default: True
594 actual: True
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100595
Anthony Barbier79c61782017-06-23 11:48:24 +0100596 opencl: Enable OpenCL support (yes|no)
597 default: True
598 actual: True
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100599
Anthony Barbier79c61782017-06-23 11:48:24 +0100600 neon: Enable Neon support (yes|no)
601 default: False
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100602 actual: False
603
Anthony Barbier20dbb822017-12-13 21:19:39 +0000604 gles_compute: Enable OpenGL ES Compute Shader support (yes|no)
605 default: False
606 actual: False
607
608 embed_kernels: Embed OpenCL kernels and OpenGL ES compute shader in library binary (yes|no)
Anthony Barbiercc0a80b2017-12-15 11:37:29 +0000609 default: True
610 actual: True
Anthony Barbier79c61782017-06-23 11:48:24 +0100611
612 set_soname: Set the library's soname and shlibversion (requires SCons 2.4 or above) (yes|no)
613 default: False
614 actual: False
615
616 openmp: Enable OpenMP backend (yes|no)
617 default: False
618 actual: False
619
620 cppthreads: Enable C++11 threads backend (yes|no)
621 default: True
622 actual: True
623
624 build_dir: Specify sub-folder for the build ( /path/to/build_dir )
625 default: .
626 actual: .
627
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100628 extra_cxx_flags: Extra CXX flags to be appended to the build command
629 default:
630 actual:
631
Anthony Barbier79c61782017-06-23 11:48:24 +0100632 pmu: Enable PMU counters (yes|no)
633 default: False
634 actual: False
635
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100636 mali: Enable Mali hardware counters (yes|no)
637 default: False
638 actual: False
639
Anthony Barbier79c61782017-06-23 11:48:24 +0100640 validation_tests: Build validation test programs (yes|no)
641 default: False
642 actual: False
643
644 benchmark_tests: Build benchmark test programs (yes|no)
645 default: False
646 actual: False
647
648@b debug / @b asserts:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100649 - With debug=1 asserts are enabled, and the library is built with symbols and no optimisations enabled.
650 - With debug=0 and asserts=1: Optimisations are enabled and symbols are removed, however all the asserts are still present (This is about 20% slower than the release build)
651 - With debug=0 and asserts=0: All optimisations are enable and no validation is performed, if the application misuses the library it is likely to result in a crash. (Only use this mode once you are sure your application is working as expected).
652
Anthony Barbier79c61782017-06-23 11:48:24 +0100653@b arch: The x86_32 and x86_64 targets can only be used with neon=0 and opencl=1.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100654
Anthony Barbier79c61782017-06-23 11:48:24 +0100655@b os: Choose the operating system you are targeting: Linux, Android or bare metal.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100656@note bare metal can only be used for NEON (not OpenCL), only static libraries get built and NEON's multi-threading support is disabled.
657
Anthony Barbier79c61782017-06-23 11:48:24 +0100658@b build: you can either build directly on your device (native) or cross compile from your desktop machine (cross-compile). In both cases make sure the compiler is available in your path.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100659
Anthony Barbier79c61782017-06-23 11:48:24 +0100660@note If you want to natively compile for 32bit on a 64bit ARM device running a 64bit OS then you will have to use cross-compile too.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100661
Anthony Barbier2d0ce772018-02-21 15:35:36 +0000662There is also an 'embed_only' option which will generate all the .embed files for the OpenCL kernels and / or OpenGLES compute shaders. This might be useful if using a different build system to compile the library.
663
Anthony Barbier79c61782017-06-23 11:48:24 +0100664@b Werror: If you are compiling using the same toolchains as the ones used in this guide then there shouldn't be any warning and therefore you should be able to keep Werror=1. If with a different compiler version the library fails to build because of warnings interpreted as errors then, if you are sure the warnings are not important, you might want to try to build with Werror=0 (But please do report the issue either on Github or by an email to developer@arm.com so that the issue can be addressed).
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100665
Anthony Barbier20dbb822017-12-13 21:19:39 +0000666@b opencl / @b neon / @b gles_compute: Choose which SIMD technology you want to target. (NEON for ARM Cortex-A CPUs or OpenCL / GLES_COMPUTE for ARM Mali GPUs)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100667
Anthony Barbier20dbb822017-12-13 21:19:39 +0000668@b embed_kernels: For OpenCL / GLES_COMPUTE only: set embed_kernels=1 if you want the OpenCL / GLES_COMPUTE kernels to be built in the library's binaries instead of being read from separate ".cl" / ".cs" files. If embed_kernels is set to 0 then the application can set the path to the folder containing the OpenCL / GLES_COMPUTE kernel files by calling CLKernelLibrary::init() / GCKernelLibrary::init(). By default the path is set to "./cl_kernels" / "./cs_shaders".
Anthony Barbier79c61782017-06-23 11:48:24 +0100669
670@b set_soname: Do you want to build the versioned version of the library ?
671
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100672If enabled the library will contain a SONAME and SHLIBVERSION and some symlinks will automatically be created between the objects.
673Example:
674 libarm_compute_core.so -> libarm_compute_core.so.1.0.0
675 libarm_compute_core.so.1 -> libarm_compute_core.so.1.0.0
676 libarm_compute_core.so.1.0.0
677
678@note This options is disabled by default as it requires SCons version 2.4 or above.
679
Anthony Barbier79c61782017-06-23 11:48:24 +0100680@b extra_cxx_flags: Custom CXX flags which will be appended to the end of the build command.
681
682@b build_dir: Build the library in a subfolder of the "build" folder. (Allows to build several configurations in parallel).
683
684@b examples: Build or not the examples
685
686@b validation_tests: Enable the build of the validation suite.
687
Anthony Barbier79c61782017-06-23 11:48:24 +0100688@b benchmark_tests: Enable the build of the benchmark tests
689
690@b pmu: Enable the PMU cycle counter to measure execution time in benchmark tests. (Your device needs to support it)
691
Anthony Barbier6a5627a2017-09-26 14:42:02 +0100692@b mali: Enable the collection of Mali hardware counters to measure execution time in benchmark tests. (Your device needs to have a Mali driver that supports it)
693
Anthony Barbier79c61782017-06-23 11:48:24 +0100694@b openmp Build in the OpenMP scheduler for NEON.
695
696@note Only works when building with g++ not clang++
697
698@b cppthreads Build in the C++11 scheduler for NEON.
699
Anthony Barbier3762e742018-03-02 11:49:33 +0000700@sa Scheduler::set
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100701
Moritz Pflanzer07674de2017-07-21 09:39:36 +0100702@subsection S3_2_linux Building for Linux
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100703
704@subsubsection S3_2_1_library How to build the library ?
705
706For Linux, the library was successfully built and tested using the following Linaro GCC toolchain:
707
708 - gcc-linaro-arm-linux-gnueabihf-4.9-2014.07_linux
709 - gcc-linaro-4.9-2016.02-x86_64_aarch64-linux-gnu
710 - gcc-linaro-6.3.1-2017.02-i686_aarch64-linux-gnu
711
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100712To cross-compile the library in debug mode, with NEON only support, for Linux 32bit:
713
714 scons Werror=1 -j8 debug=1 neon=1 opencl=0 os=linux arch=armv7a
715
716To cross-compile the library in asserts mode, with OpenCL only support, for Linux 64bit:
717
718 scons Werror=1 -j8 debug=0 asserts=1 neon=0 opencl=1 embed_kernels=1 os=linux arch=arm64-v8a
719
Anthony Barbier20dbb822017-12-13 21:19:39 +0000720To cross-compile the library in asserts mode, with GLES_COMPUTE only support, for Linux 64bit:
721
722 scons Werror=1 -j8 debug=0 asserts=1 neon=0 opencl=0 gles_compute=1 embed_kernels=1 os=linux arch=arm64-v8a
723
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100724You can also compile the library natively on an ARM device by using <b>build=native</b>:
725
726 scons Werror=1 -j8 debug=0 neon=1 opencl=0 os=linux arch=arm64-v8a build=native
727 scons Werror=1 -j8 debug=0 neon=1 opencl=0 os=linux arch=armv7a build=native
728
729@note g++ for ARM is mono-arch, therefore if you want to compile for Linux 32bit on a Linux 64bit platform you will have to use a cross compiler.
730
731For example on a 64bit Debian based system you would have to install <b>g++-arm-linux-gnueabihf</b>
732
733 apt-get install g++-arm-linux-gnueabihf
734
735Then run
736
737 scons Werror=1 -j8 debug=0 neon=1 opencl=0 os=linux arch=armv7a build=cross_compile
738
739or simply remove the build parameter as build=cross_compile is the default value:
740
741 scons Werror=1 -j8 debug=0 neon=1 opencl=0 os=linux arch=armv7a
742
743@attention To cross compile with opencl=1 you need to make sure to have a version of libOpenCL matching your target architecture.
744
745@subsubsection S3_2_2_examples How to manually build the examples ?
746
747The examples get automatically built by scons as part of the build process of the library described above. This section just describes how you can build and link your own application against our library.
748
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100749@note The following command lines assume the arm_compute binaries are present in the current directory or in the system library path. If this is not the case you can specify the location of the pre-built library with the compiler option -L. When building the OpenCL example the commands below assume that the CL headers are located in the include folder where the command is executed.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100750
751To cross compile a NEON example for Linux 32bit:
752
Anthony Barbierb2881fc2017-09-29 17:12:12 +0100753 arm-linux-gnueabihf-g++ examples/neon_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -mfpu=neon -L. -larm_compute -larm_compute_core -o neon_convolution
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100754
755To cross compile a NEON example for Linux 64bit:
756
Anthony Barbierb2881fc2017-09-29 17:12:12 +0100757 aarch64-linux-gnu-g++ examples/neon_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -L. -larm_compute -larm_compute_core -o neon_convolution
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100758
759(notice the only difference with the 32 bit command is that we don't need the -mfpu option and the compiler's name is different)
760
761To cross compile an OpenCL example for Linux 32bit:
762
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100763 arm-linux-gnueabihf-g++ examples/cl_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -mfpu=neon -L. -larm_compute -larm_compute_core -o cl_convolution -DARM_COMPUTE_CL
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100764
765To cross compile an OpenCL example for Linux 64bit:
766
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100767 aarch64-linux-gnu-g++ examples/cl_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -L. -larm_compute -larm_compute_core -o cl_convolution -DARM_COMPUTE_CL
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100768
Anthony Barbier14c86a92017-12-14 16:27:41 +0000769To cross compile a GLES example for Linux 32bit:
770
771 arm-linux-gnueabihf-g++ examples/gc_absdiff.cpp utils/Utils.cpp -I. -Iinclude/ -L. -larm_compute -larm_compute_core -std=c++11 -mfpu=neon -DARM_COMPUTE_GC -Iinclude/linux/ -o gc_absdiff
772
773To cross compile a GLES example for Linux 64bit:
774
775 aarch64-linux-gnu-g++ examples/gc_absdiff.cpp utils/Utils.cpp -I. -Iinclude/ -L. -larm_compute -larm_compute_core -std=c++11 -DARM_COMPUTE_GC -Iinclude/linux/ -o gc_absdiff
776
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100777(notice the only difference with the 32 bit command is that we don't need the -mfpu option and the compiler's name is different)
778
Anthony Barbier14c86a92017-12-14 16:27:41 +0000779To cross compile the examples with the Graph API, such as graph_lenet.cpp, you need to link the examples against arm_compute_graph.so too.
780
781@note The compute library must currently be built with both neon and opencl enabled - neon=1 and opencl=1
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100782
783i.e. to cross compile the "graph_lenet" example for Linux 32bit:
784
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100785 arm-linux-gnueabihf-g++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++11 -mfpu=neon -L. -larm_compute_graph -larm_compute -larm_compute_core -Wl,--allow-shlib-undefined -o graph_lenet
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100786
787i.e. to cross compile the "graph_lenet" example for Linux 64bit:
788
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100789 aarch64-linux-gnu-g++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++11 -L. -larm_compute_graph -larm_compute -larm_compute_core -Wl,--allow-shlib-undefined -o graph_lenet
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100790
791(notice the only difference with the 32 bit command is that we don't need the -mfpu option and the compiler's name is different)
792
Anthony Barbiere5007472017-10-27 15:01:44 +0100793@note If compiling using static libraries, this order must be followed when linking: arm_compute_graph_static, arm_compute, arm_compute_core
794
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100795To compile natively (i.e directly on an ARM device) for NEON for Linux 32bit:
796
Anthony Barbierb2881fc2017-09-29 17:12:12 +0100797 g++ examples/neon_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -mfpu=neon -larm_compute -larm_compute_core -o neon_convolution
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100798
799To compile natively (i.e directly on an ARM device) for NEON for Linux 64bit:
800
Anthony Barbierb2881fc2017-09-29 17:12:12 +0100801 g++ examples/neon_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -larm_compute -larm_compute_core -o neon_convolution
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100802
803(notice the only difference with the 32 bit command is that we don't need the -mfpu option)
804
805To compile natively (i.e directly on an ARM device) for OpenCL for Linux 32bit or Linux 64bit:
806
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100807 g++ examples/cl_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -larm_compute -larm_compute_core -o cl_convolution -DARM_COMPUTE_CL
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100808
Anthony Barbier14c86a92017-12-14 16:27:41 +0000809To compile natively (i.e directly on an ARM device) for GLES for Linux 32bit or Linux 64bit:
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100810
Anthony Barbier14c86a92017-12-14 16:27:41 +0000811 g++ examples/gc_absdiff.cpp utils/Utils.cpp -I. -Iinclude/ -L. -larm_compute -larm_compute_core -std=c++11 -DARM_COMPUTE_GC -Iinclude/linux/ -o gc_absdiff
812
813To compile natively the examples with the Graph API, such as graph_lenet.cpp, you need to link the examples against arm_compute_graph.so too.
814@note The compute library must currently be built with both neon and opencl enabled - neon=1 and opencl=1
815
816i.e. to natively compile the "graph_lenet" example for Linux 32bit:
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100817
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100818 g++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++11 -mfpu=neon -L. -larm_compute_graph -larm_compute -larm_compute_core -Wl,--allow-shlib-undefined -o graph_lenet
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100819
Anthony Barbier14c86a92017-12-14 16:27:41 +0000820i.e. to natively compile the "graph_lenet" example for Linux 64bit:
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100821
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100822 g++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++11 L. -larm_compute_graph -larm_compute -larm_compute_core -Wl,--allow-shlib-undefined -o graph_lenet
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100823
824(notice the only difference with the 32 bit command is that we don't need the -mfpu option)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100825
Anthony Barbiere5007472017-10-27 15:01:44 +0100826@note If compiling using static libraries, this order must be followed when linking: arm_compute_graph_static, arm_compute, arm_compute_core
827
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100828@note These two commands assume libarm_compute.so is available in your library path, if not add the path to it using -L
829
830To run the built executable simply run:
831
832 LD_LIBRARY_PATH=build ./neon_convolution
833
834or
835
836 LD_LIBRARY_PATH=build ./cl_convolution
837
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100838@note Examples accept different types of arguments, to find out what they are run the example with \a --help as an argument. If no arguments are specified then random values will be used to execute the graph.
Anthony Barbier3762e742018-03-02 11:49:33 +0000839
840For example:
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100841
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100842 LD_LIBRARY_PATH=. ./graph_lenet --help
Anthony Barbier3762e742018-03-02 11:49:33 +0000843
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100844Below is a list of the common parameters among the graph examples :
845@snippet utils/CommonGraphOptions.h Common graph examples parameters
Anthony Barbier3762e742018-03-02 11:49:33 +0000846
Moritz Pflanzer07674de2017-07-21 09:39:36 +0100847@subsection S3_3_android Building for Android
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100848
849For Android, the library was successfully built and tested using Google's standalone toolchains:
Anthony Barbierd51ea0a2018-08-07 17:48:03 +0100850 - clang++ from NDK r17b for armv7a
851 - clang++ from NDK r17b for arm64-v8a
Anthony Barbier3a6163e2018-08-10 17:36:36 +0100852 - clang++ from NDK r18-beta1 for arm64-v8.2-a with FP16 support
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100853
854Here is a guide to <a href="https://developer.android.com/ndk/guides/standalone_toolchain.html">create your Android standalone toolchains from the NDK</a>
855
Anthony Barbierd51ea0a2018-08-07 17:48:03 +0100856- Download the NDK r17b from here: https://developer.android.com/ndk/downloads/index.html
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100857- Make sure you have Python 2 installed on your machine.
858- Generate the 32 and/or 64 toolchains by running the following commands:
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100859<!-- Leave 2 blank lines here or the formatting of the commands below gets messed up --!>
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100860
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100861
862<!-- End of the 2 blank lines --!>
Anthony Barbierd51ea0a2018-08-07 17:48:03 +0100863 $NDK/build/tools/make_standalone_toolchain.py --arch arm64 --install-dir $MY_TOOLCHAINS/aarch64-linux-android-ndk-r17b --stl libc++ --api 21
864 $NDK/build/tools/make_standalone_toolchain.py --arch arm --install-dir $MY_TOOLCHAINS/arm-linux-android-ndk-r17b --stl libc++ --api 21
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100865
Anthony Barbierd51ea0a2018-08-07 17:48:03 +0100866@attention We used to use gnustl but as of NDK r17 it is deprecated so we switched to libc++
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100867
Anthony Barbier38e7f1f2018-05-21 13:37:47 +0100868@note Make sure to add the toolchains to your PATH:
869
Anthony Barbierd51ea0a2018-08-07 17:48:03 +0100870 export PATH=$PATH:$MY_TOOLCHAINS/aarch64-linux-android-ndk-r17b/bin:$MY_TOOLCHAINS/arm-linux-android-ndk-r17b/bin
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100871
872@subsubsection S3_3_1_library How to build the library ?
873
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100874To cross-compile the library in debug mode, with NEON only support, for Android 32bit:
875
876 CXX=clang++ CC=clang scons Werror=1 -j8 debug=1 neon=1 opencl=0 os=android arch=armv7a
877
878To cross-compile the library in asserts mode, with OpenCL only support, for Android 64bit:
879
Anthony Barbier14c86a92017-12-14 16:27:41 +0000880 CXX=clang++ CC=clang scons Werror=1 -j8 debug=0 asserts=1 neon=0 opencl=1 embed_kernels=1 os=android arch=arm64-v8a
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100881
Anthony Barbier20dbb822017-12-13 21:19:39 +0000882To cross-compile the library in asserts mode, with GLES_COMPUTE only support, for Android 64bit:
883
Anthony Barbier14c86a92017-12-14 16:27:41 +0000884 CXX=clang++ CC=clang scons Werror=1 -j8 debug=0 asserts=1 neon=0 opencl=0 gles_compute=1 embed_kernels=1 os=android arch=arm64-v8a
Anthony Barbier20dbb822017-12-13 21:19:39 +0000885
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100886@subsubsection S3_3_2_examples How to manually build the examples ?
887
888The examples get automatically built by scons as part of the build process of the library described above. This section just describes how you can build and link your own application against our library.
889
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100890@note The following command lines assume the arm_compute binaries are present in the current directory or in the system library path. If this is not the case you can specify the location of the pre-built library with the compiler option -L. When building the OpenCL example the commands below assume that the CL headers are located in the include folder where the command is executed.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100891
892Once you've got your Android standalone toolchain built and added to your path you can do the following:
893
894To cross compile a NEON example:
895
896 #32 bit:
Georgios Pinitas9873ea32017-12-05 15:28:55 +0000897 arm-linux-androideabi-clang++ examples/neon_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -larm_compute-static -larm_compute_core-static -L. -o neon_convolution_arm -static-libstdc++ -pie
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100898 #64 bit:
Anthony Barbier14c86a92017-12-14 16:27:41 +0000899 aarch64-linux-android-clang++ examples/neon_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -larm_compute-static -larm_compute_core-static -L. -o neon_convolution_aarch64 -static-libstdc++ -pie
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100900
901To cross compile an OpenCL example:
902
903 #32 bit:
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100904 arm-linux-androideabi-clang++ examples/cl_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -larm_compute-static -larm_compute_core-static -L. -o cl_convolution_arm -static-libstdc++ -pie -DARM_COMPUTE_CL
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100905 #64 bit:
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100906 aarch64-linux-android-clang++ examples/cl_convolution.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -larm_compute-static -larm_compute_core-static -L. -o cl_convolution_aarch64 -static-libstdc++ -pie -DARM_COMPUTE_CL
Anthony Barbier14c86a92017-12-14 16:27:41 +0000907
908To cross compile a GLES example:
Anthony Barbiercc0a80b2017-12-15 11:37:29 +0000909
Anthony Barbier14c86a92017-12-14 16:27:41 +0000910 #32 bit:
911 arm-linux-androideabi-clang++ examples/gc_absdiff.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -larm_compute-static -larm_compute_core-static -L. -o gc_absdiff_arm -static-libstdc++ -pie -DARM_COMPUTE_GC
912 #64 bit:
913 aarch64-linux-android-clang++ examples/gc_absdiff.cpp utils/Utils.cpp -I. -Iinclude -std=c++11 -larm_compute-static -larm_compute_core-static -L. -o gc_absdiff_aarch64 -static-libstdc++ -pie -DARM_COMPUTE_GC
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100914
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100915To cross compile the examples with the Graph API, such as graph_lenet.cpp, you need to link the library arm_compute_graph also.
916(notice the compute library has to be built with both neon and opencl enabled - neon=1 and opencl=1)
917
918 #32 bit:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100919 arm-linux-androideabi-clang++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++11 -Wl,--whole-archive -larm_compute_graph-static -Wl,--no-whole-archive -larm_compute-static -larm_compute_core-static -L. -o graph_lenet_arm -static-libstdc++ -pie -DARM_COMPUTE_CL
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100920 #64 bit:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100921 aarch64-linux-android-clang++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++11 -Wl,--whole-archive -larm_compute_graph-static -Wl,--no-whole-archive -larm_compute-static -larm_compute_core-static -L. -o graph_lenet_aarch64 -static-libstdc++ -pie -DARM_COMPUTE_CL
Gian Marco Iodicedaec1aa2017-09-29 12:03:18 +0100922
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100923@note Due to some issues in older versions of the Mali OpenCL DDK (<= r13p0), we recommend to link arm_compute statically on Android.
Anthony Barbier20dbb822017-12-13 21:19:39 +0000924@note When linked statically the arm_compute_graph library currently needs the --whole-archive linker flag in order to work properly
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100925
926Then you need to do is upload the executable and the shared library to the device using ADB:
927
928 adb push neon_convolution_arm /data/local/tmp/
929 adb push cl_convolution_arm /data/local/tmp/
Anthony Barbier14c86a92017-12-14 16:27:41 +0000930 adb push gc_absdiff_arm /data/local/tmp/
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100931 adb shell chmod 777 -R /data/local/tmp/
932
933And finally to run the example:
934
935 adb shell /data/local/tmp/neon_convolution_arm
936 adb shell /data/local/tmp/cl_convolution_arm
Anthony Barbier14c86a92017-12-14 16:27:41 +0000937 adb shell /data/local/tmp/gc_absdiff_arm
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100938
939For 64bit:
940
941 adb push neon_convolution_aarch64 /data/local/tmp/
942 adb push cl_convolution_aarch64 /data/local/tmp/
Anthony Barbier14c86a92017-12-14 16:27:41 +0000943 adb push gc_absdiff_aarch64 /data/local/tmp/
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100944 adb shell chmod 777 -R /data/local/tmp/
945
946And finally to run the example:
947
948 adb shell /data/local/tmp/neon_convolution_aarch64
949 adb shell /data/local/tmp/cl_convolution_aarch64
Anthony Barbier14c86a92017-12-14 16:27:41 +0000950 adb shell /data/local/tmp/gc_absdiff_aarch64
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100951
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100952@note Examples accept different types of arguments, to find out what they are run the example with \a --help as an argument. If no arguments are specified then random values will be used to execute the graph.
Anthony Barbier3762e742018-03-02 11:49:33 +0000953
954For example:
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100955 adb shell /data/local/tmp/graph_lenet --help
Anthony Barbier3762e742018-03-02 11:49:33 +0000956
957In this case the first argument of LeNet (like all the graph examples) is the target (i.e 0 to run on NEON, 1 to run on OpenCL if available, 2 to run on OpenCL using the CLTuner), the second argument is the path to the folder containing the npy files for the weights and finally the third argument is the number of batches to run.
958
Michalis Spyrou6e52ba32017-10-04 15:40:38 +0100959@subsection S3_4_bare_metal Building for bare metal
960
961For bare metal, the library was successfully built using linaros's latest (gcc-linaro-6.3.1-2017.05) bare metal toolchains:
962 - arm-eabi for armv7a
963 - aarch64-elf for arm64-v8a
964
965Download linaro for <a href="https://releases.linaro.org/components/toolchain/binaries/6.3-2017.05/arm-eabi/">armv7a</a> and <a href="https://releases.linaro.org/components/toolchain/binaries/6.3-2017.05/aarch64-elf/">arm64-v8a</a>.
966
967@note Make sure to add the toolchains to your PATH: export PATH=$PATH:$MY_TOOLCHAINS/gcc-linaro-6.3.1-2017.05-x86_64_aarch64-elf/bin:$MY_TOOLCHAINS/gcc-linaro-6.3.1-2017.05-x86_64_arm-eabi/bin
968
969@subsubsection S3_4_1_library How to build the library ?
970
971To cross-compile the library with NEON support for baremetal arm64-v8a:
972
973 scons Werror=1 -j8 debug=0 neon=1 opencl=0 os=bare_metal arch=arm64-v8a build=cross_compile cppthreads=0 openmp=0 standalone=1
974
975@subsubsection S3_4_2_examples How to manually build the examples ?
976
977Examples are disabled when building for bare metal. If you want to build the examples you need to provide a custom bootcode depending on the target architecture and link against the compute library. More information about bare metal bootcode can be found <a href="http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dai0527a/index.html">here</a>.
978
979@subsection S3_5_windows_host Building on a Windows host system
Moritz Pflanzer07674de2017-07-21 09:39:36 +0100980
981Using `scons` directly from the Windows command line is known to cause
982problems. The reason seems to be that if `scons` is setup for cross-compilation
983it gets confused about Windows style paths (using backslashes). Thus it is
984recommended to follow one of the options outlined below.
985
Michalis Spyrou6e52ba32017-10-04 15:40:38 +0100986@subsubsection S3_5_1_ubuntu_on_windows Bash on Ubuntu on Windows
Moritz Pflanzer07674de2017-07-21 09:39:36 +0100987
988The best and easiest option is to use
989<a href="https://msdn.microsoft.com/en-gb/commandline/wsl/about">Ubuntu on Windows</a>.
990This feature is still marked as *beta* and thus might not be available.
991However, if it is building the library is as simple as opening a *Bash on
992Ubuntu on Windows* shell and following the general guidelines given above.
993
Michalis Spyrou6e52ba32017-10-04 15:40:38 +0100994@subsubsection S3_5_2_cygwin Cygwin
Moritz Pflanzer07674de2017-07-21 09:39:36 +0100995
996If the Windows subsystem for Linux is not available <a href="https://www.cygwin.com/">Cygwin</a>
997can be used to install and run `scons`. In addition to the default packages
998installed by Cygwin `scons` has to be selected in the installer. (`git` might
999also be useful but is not strictly required if you already have got the source
1000code of the library.) Linaro provides pre-built versions of
1001<a href="http://releases.linaro.org/components/toolchain/binaries/">GCC cross-compilers</a>
1002that can be used from the Cygwin terminal. When building for Android the
1003compiler is included in the Android standalone toolchain. After everything has
1004been set up in the Cygwin terminal the general guide on building the library
1005can be followed.
1006
Michalis Spyrou6e52ba32017-10-04 15:40:38 +01001007@subsection S3_6_cl_stub_library The OpenCL stub library
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001008
1009In the opencl-1.2-stubs folder you will find the sources to build a stub OpenCL library which then can be used to link your application or arm_compute against.
1010
1011If you preferred you could retrieve the OpenCL library from your device and link against this one but often this library will have dependencies on a range of system libraries forcing you to link your application against those too even though it is not using them.
1012
1013@warning This OpenCL library provided is a stub and *not* a real implementation. You can use it to resolve OpenCL's symbols in arm_compute while building the example but you must make sure the real libOpenCL.so is in your PATH when running the example or it will not work.
1014
1015To cross-compile the stub OpenCL library simply run:
1016
1017 <target-prefix>-gcc -o libOpenCL.so -Iinclude opencl-1.2-stubs/opencl_stubs.c -fPIC -shared
1018
1019For example:
1020
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001021 #Linux 32bit
1022 arm-linux-gnueabihf-gcc -o libOpenCL.so -Iinclude opencl-1.2-stubs/opencl_stubs.c -fPIC -shared
1023 #Linux 64bit
1024 aarch64-linux-gnu-gcc -o libOpenCL.so -Iinclude -shared opencl-1.2-stubs/opencl_stubs.c -fPIC
1025 #Android 32bit
1026 arm-linux-androideabi-clang -o libOpenCL.so -Iinclude -shared opencl-1.2-stubs/opencl_stubs.c -fPIC -shared
1027 #Android 64bit
Anthony Barbier14c86a92017-12-14 16:27:41 +00001028 aarch64-linux-android-clang -o libOpenCL.so -Iinclude -shared opencl-1.2-stubs/opencl_stubs.c -fPIC -shared
1029
1030@subsection S3_7_gles_stub_library The Linux OpenGLES and EGL stub libraries
1031
1032In the opengles-3.1-stubs folder you will find the sources to build stub EGL and OpenGLES libraries which then can be used to link your Linux application of arm_compute against.
1033
1034@note The stub libraries are only needed on Linux. For Android, the NDK toolchains already provide the meta-EGL and meta-GLES libraries.
1035
1036To cross-compile the stub OpenGLES and EGL libraries simply run:
1037
1038 <target-prefix>-gcc -o libEGL.so -Iinclude/linux opengles-3.1-stubs/EGL.c -fPIC -shared
1039 <target-prefix>-gcc -o libGLESv2.so -Iinclude/linux opengles-3.1-stubs/GLESv2.c -fPIC -shared
1040
1041 #Linux 32bit
1042 arm-linux-gnueabihf-gcc -o libEGL.so -Iinclude/linux opengles-3.1-stubs/EGL.c -fPIC -shared
1043 arm-linux-gnueabihf-gcc -o libGLESv2.so -Iinclude/linux opengles-3.1-stubs/GLESv2.c -fPIC -shared
1044
1045 #Linux 64bit
1046 aarch64-linux-gnu-gcc -o libEGL.so -Iinclude/linux opengles-3.1-stubs/EGL.c -fPIC -shared
1047 aarch64-linux-gnu-gcc -o libGLESv2.so -Iinclude/linux opengles-3.1-stubs/GLESv2.c -fPIC -shared
Georgios Pinitasd9cb0572018-07-16 12:23:09 +01001048
1049@subsection S3_8_cl_requirements OpenCL DDK Requirements
1050
1051@subsubsection S3_8_1_cl_hard_requirements Hard Requirements
1052
1053Compute Library requires OpenCL 1.1 and above with support of non uniform workgroup sizes, which is officially supported in the Mali OpenCL DDK r8p0 and above as an extension (respective extension flag is \a -cl-arm-non-uniform-work-group-size).
1054
1055Enabling 16-bit floating point calculations require \a cl_khr_fp16 extension to be supported. All Mali GPUs with compute capabilities have native support for half precision floating points.
1056
1057Use of @ref CLMeanStdDev function requires 64-bit atomics support, thus \a cl_khr_int64_base_atomics should be supported in order to use.
1058
1059@subsubsection S3_8_2_cl_performance_requirements Performance improvements
1060
1061Integer dot product built-in function extensions (and therefore optimized kernels) are available with Mali OpenCL DDK r22p0 and above for the following GPUs : G71, G76. The relevant extensions are \a cl_arm_integer_dot_product_int8, \a cl_arm_integer_dot_product_accumulate_int8 and \a cl_arm_integer_dot_product_accumulate_int16.
1062
1063OpenCL kernel level debugging can be simplified with the use of printf, this requires the \a cl_arm_printf extension to be supported.
1064
1065SVM allocations are supported for all the underlying allocations in Compute Library. To enable this OpenCL 2.0 and above is a requirement.
Gian Marco Iodice201cea12018-07-30 17:21:41 +01001066
1067@subsection S3_9_cl_tuner OpenCL Tuner
1068
1069The OpenCL tuner, a.k.a. CLTuner, is a module of Arm Compute Library that can improve the performance of the OpenCL kernels tuning the Local-Workgroup-Size (LWS).
1070The optimal LWS for each unique OpenCL kernel configuration is stored in a table. This table can be either imported or exported from/to a file.
1071The OpenCL tuner performs a brute-force approach: it runs the same OpenCL kernel for a range of local workgroup sizes and keep the local workgroup size of the fastest run to use in subsequent calls to the kernel.
1072In order for the performance numbers to be meaningful you must disable the GPU power management and set it to a fixed frequency for the entire duration of the tuning phase.
1073
1074If you wish to know more about LWS and the important role on improving the GPU cache utilization, we suggest having a look at the presentation "Even Faster CNNs: Exploring the New Class of Winograd Algorithms available at the following link:
1075
1076https://www.embedded-vision.com/platinum-members/arm/embedded-vision-training/videos/pages/may-2018-embedded-vision-summit-iodice
1077
1078Tuning a network from scratch can be long and affect considerably the execution time for the first run of your network. It is recommended for this reason to store the CLTuner's result in a file to amortize this time when you either re-use the same network or the functions with the same configurations. The tuning is performed only once for each OpenCL kernel.
1079
1080CLTuner looks for the optimal LWS for each unique OpenCL kernel configuration. Since a function (i.e. Convolution Layer, Pooling Layer, Fully Connected Layer ...) can be called multiple times but with different parameters, we associate an "id" (called "config_id") to each kernel to distinguish the unique configurations.
1081
1082 #Example: 2 unique Matrix Multiply configurations
1083@code{.cpp}
1084 TensorShape a0 = TensorShape(32,32);
1085 TensorShape b0 = TensorShape(32,32);
1086 TensorShape c0 = TensorShape(32,32);
1087 TensorShape a1 = TensorShape(64,64);
1088 TensorShape b1 = TensorShape(64,64);
1089 TensorShape c1 = TensorShape(64,64);
1090
1091 Tensor a0_tensor;
1092 Tensor b0_tensor;
1093 Tensor c0_tensor;
1094 Tensor a1_tensor;
1095 Tensor b1_tensor;
1096 Tensor c1_tensor;
1097
1098 a0_tensor.allocator()->init(TensorInfo(a0, 1, DataType::F32));
1099 b0_tensor.allocator()->init(TensorInfo(b0, 1, DataType::F32));
1100 c0_tensor.allocator()->init(TensorInfo(c0, 1, DataType::F32));
1101 a1_tensor.allocator()->init(TensorInfo(a1, 1, DataType::F32));
1102 b1_tensor.allocator()->init(TensorInfo(b1, 1, DataType::F32));
1103 c1_tensor.allocator()->init(TensorInfo(c1 1, DataType::F32));
1104
1105 CLGEMM gemm0;
1106 CLGEMM gemm1;
1107
1108 // Configuration 0
1109 gemm0.configure(&a0, &b0, nullptr, &c0, 1.0f, 0.0f);
1110
1111 // Configuration 1
1112 gemm1.configure(&a1, &b1, nullptr, &c1, 1.0f, 0.0f);
1113@endcode
1114
1115@subsubsection S3_9_1_cl_tuner_how_to How to use it
1116
1117All the graph examples in the ACL's folder "examples" and the arm_compute_benchmark accept an argument to enable the OpenCL tuner and an argument to export/import the LWS values to/from a file
1118
1119 #Enable CL tuner
1120 ./graph_mobilenet --enable-tuner –-target=CL
1121 ./arm_compute_benchmark --enable-tuner
1122
1123 #Export/Import to/from a file
1124 ./graph_mobilenet --enable-tuner --target=CL --tuner-file=acl_tuner.csv
1125 ./arm_compute_benchmark --enable-tuner --tuner-file=acl_tuner.csv
1126
1127If you are importing the CLTuner'results from a file, the new tuned LWS values will be appended to it.
1128
1129Either you are benchmarking the graph examples or the test cases in the arm_compute_benchmark remember to:
1130
1131 -# Disable the power management
1132 -# Keep the GPU frequency constant
1133 -# Run multiple times the network (i.e. 10).
1134
1135If you are not using the graph API or the benchmark infrastructure you will need to manually pass a CLTuner object to CLScheduler before configuring any function.
1136
1137@code{.cpp}
1138CLTuner tuner;
1139
1140// Setup Scheduler
1141CLScheduler::get().default_init(&tuner);
1142@endcode
1143
1144After the first run, the CLTuner's results can be exported to a file using the method "save_to_file()".
1145- tuner.save_to_file("results.csv");
1146
1147This file can be also imported using the method "load_from_file("results.csv")".
1148- tuner.load_from_file("results.csv");
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001149*/
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001150} // namespace arm_compute