blob: d9c2c8476d0d61a04a8c6c1a2be527880c4cfbd1 [file] [log] [blame]
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +00001///
Jonathan Deakin2db938c2024-02-05 15:32:31 +00002/// Copyright (c) 2017-2024 Arm Limited.
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +00003///
4/// SPDX-License-Identifier: MIT
5///
6/// Permission is hereby granted, free of charge, to any person obtaining a copy
7/// of this software and associated documentation files (the "Software"), to
8/// deal in the Software without restriction, including without limitation the
9/// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10/// sell copies of the Software, and to permit persons to whom the Software is
11/// furnished to do so, subject to the following conditions:
12///
13/// The above copyright notice and this permission notice shall be included in all
14/// copies or substantial portions of the Software.
15///
16/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22/// SOFTWARE.
23///
Anthony Barbier3762e742018-03-02 11:49:33 +000024namespace arm_compute
25{
Sheri Zhangd813bab2021-04-30 16:53:41 +010026/** @page versions_changelogs Release Versions and Changelog
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027
28@tableofcontents
29
Sheri Zhangd813bab2021-04-30 16:53:41 +010030@section S2_1_versions Release versions
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031
32All releases are numbered vYY.MM Where YY are the last two digits of the year, and MM the month number.
33If there is more than one release in a month then an extra sequential number is appended at the end:
34
35 v17.03 (First release of March 2017)
36 v17.03.1 (Second release of March 2017)
37 v17.04 (First release of April 2017)
38
39@note We're aiming at releasing one major public release with new features per quarter. All releases in between will only contain bug fixes.
Ramy Elgammalfa8ff8e2022-08-12 16:57:10 +010040@note Starting from release 22.05, 'master' branch is no longer being used, it has been replaced by 'main'. Please update your clone jobs accordingly.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041
Sheri Zhangd813bab2021-04-30 16:53:41 +010042@section S2_2_changelog Changelog
Pablo Marquez Tello29e27b02023-08-03 14:47:31 +010043
Gunes Bayirab538a22024-05-21 15:39:54 +010044v24.08 Public major release
45 - Optimize CPU activation functions using LUT-based implementation:
46 - Tanh function for FP16.
47
Gunes Bayirada32002024-04-24 10:27:13 +010048v24.05 Public major release
Gunes Bayir301e33f2024-04-29 17:00:14 +010049 - Add @ref CLScatter operator for FP32/16, S32/16/8, U32/16/8 data types
Ramy Elgammalb4b61a62024-05-14 15:21:07 +010050 - Various fixes to enable FP16 kernels in armv8a multi_isa builds.
Omar Al Khatibf5053f72024-05-09 16:06:23 +010051 - Updated logic in the OpenMP scheduler to exclude LITTLE cores.
Gunes Bayirada32002024-04-24 10:27:13 +010052
Gunes Bayiref637392024-02-12 21:32:51 +000053v24.04 Public major release
Renato Arantes36a75da2024-01-26 17:31:18 +000054 - Add Bfloat16 data type support for @ref NEMatMul.
Omar Al Khatibc1575b22024-04-23 16:26:56 +010055 - Add support for SoftMax in SME2 for FP32, FP16, QASYMM8 and QASYMM8_SIGNED.
Radu Salavatf1f1f872024-02-27 18:32:26 +000056 - Add support for in place accumulation to CPU GEMM kernels.
Jonathan Deakina668f9f2024-01-24 09:15:38 +000057 - Add low-precision Int8 * Int8 -> FP32 CPU GEMM which dequantizes after multiplication
58 - Add is_dynamic flag to QuantizationInfo to signal to operators that it may change after configuration
Michael Kozlov5057ce92024-04-17 14:34:46 +010059 - Performance optimizations:
60 - Optimize start-up time of @ref NEConvolutionLayer for some input configurations where GeMM is selected as the convolution algorithm
61 - Optimize @ref NEConvolutionLayer for input tensor size > 1e7 bytes and weight tensor height > 7
62 - Optimize @ref NESoftmaxLayer for axis != 0 by natively supporting higher axes up to axis 3.
Gunes Bayiref637392024-02-12 21:32:51 +000063
Felix Thomasmathibaland0611c12024-03-08 15:34:58 +000064v24.02.1 Public patch release
65 - Fix performance regression in fixed-format kernels
66 - Fix compile and runtime errors in arm_compute_validation for Windows on Arm(WoA)
67
Jonathan Deakin2db938c2024-02-05 15:32:31 +000068v24.02 Public major release
Felix Thomasmathibaland98e27e2024-02-12 13:48:29 +000069 - Replace template writer with compute kernel writer in dynamic fusion.
Jonathan Deakin2db938c2024-02-05 15:32:31 +000070 - Performance optimizations:
71 - Parallelize @ref NEDepthwiseConvolutionLayer over batches if there is only 1 row
72
Jakub Sujake30c8742023-11-13 14:57:16 +000073v24.01 Public major release
74 - Remove the legacy 'libarm_compute_core' library. This library is an artifact of Compute Library's legacy library architecture and no longer serves any purpose.
75 You should link only to the main `libarm_compute` library for core functionality.
Gunes Bayir85cafff2023-12-18 13:29:31 +000076 - Expand GPUTarget list with Mali™ G720 and G620.
Mohammed Suhail Munshi7467ba82023-12-05 14:27:31 +000077 - Optimize CPU activation functions using LUT-based implementation:
78 - Sigmoid function for FP16.
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +010079 - New features
80 - Add support for FP16 in all multi_isa builds.
Gunes Bayirfadc9b12023-11-07 05:43:07 +000081 - Performance optimizations:
82 - Optimize @ref NESoftmaxLayer
Viet-Hoa Do47370942023-11-13 17:20:45 +000083 - Optimize @ref NEDepthToSpaceLayer.
Jakub Sujake30c8742023-11-13 14:57:16 +000084
Pablo Marquez Tello29e27b02023-08-03 14:47:31 +010085v23.11 Public major release
Viet-Hoa Do633ebd12023-08-11 12:27:59 +010086 - New features
Pablo Marquez Tello29e27b02023-08-03 14:47:31 +010087 - Add support for input data type U64/S64 in CLCast and NECast.
88 - Add support for output data type S64 in NEArgMinMaxLayer and CLArgMinMaxLayer
Gunes Bayir91cb7332023-07-25 17:00:33 +010089 - Port the following kernels in the experimental Dynamic Fusion interface to use the new Compute Kernel Writer interface:
90 - @ref experimental::dynamic_fusion::GpuCkwResize
ramy.elgammal@arm.coma04ae3e2023-07-27 18:23:17 +010091 - @ref experimental::dynamic_fusion::GpuCkwPool2d
92 - @ref experimental::dynamic_fusion::GpuCkwDepthwiseConv2d
Adnan AlSinanfde45d82023-10-24 12:03:21 +010093 - @ref experimental::dynamic_fusion::GpuCkwMatMul
Viet-Hoa Do500e10b2023-09-12 17:49:38 +010094 - Add support for OpenCL™ comand buffer with mutable dispatch extension.
Anitha Raj38eb5fb2023-11-13 14:55:40 +000095 - Add support for Arm® Cortex®-A520 and Arm® Cortex®-R82.
96 - Add support for negative axis values and inverted axis values in @ref arm_compute::NEReverse and @ref arm_compute::CLReverse.
97 - Add new OpenCL™ kernels:
98 - @ref opencl::kernels::ClMatMulLowpNativeMMULKernel support for QASYMM8 and QASYMM8_SIGNED, with batch support
Anitha Rajeb5696d2023-07-14 11:19:34 +010099 - Performance optimizations:
David Mansell1b2ee3e2023-08-22 13:27:03 +0100100 - Optimize @ref cpu::CpuReshape
Jakub Sujaka23b4682023-10-05 10:20:59 +0100101 - Optimize @ref opencl::ClTranspose
Gunes Bayir0b72aa42023-10-07 23:52:48 +0100102 - Optimize @ref NEStackLayer
Viet-Hoa Doc210c852023-10-09 10:58:35 +0100103 - Optimize @ref CLReductionOperation.
Viet-Hoa Do29254ae2023-10-13 17:40:32 +0100104 - Optimize @ref CLSoftmaxLayer.
SiCong Lic5ab4df2023-10-17 17:38:57 +0100105 - Optimize start-up time of @ref NEConvolutionLayer for some input configurations where GeMM is selected as the convolution algorithm
Anitha Raj38eb5fb2023-11-13 14:55:40 +0000106 - Reduce CPU Overhead by optimal flushing of CL kernels.
Adnan AlSinan40a9d3e2023-09-15 13:46:17 +0100107 - Deprecate support for Bfloat16 in @ref cpu::CpuCast.
Adnan AlSinan704c22f2023-10-24 11:05:56 +0100108 - Support for U32 axis in @ref arm_compute::NEReverse and @ref arm_compute::CLReverse will be deprecated in 24.02.
Anitha Raj38eb5fb2023-11-13 14:55:40 +0000109 - Remove legacy PostOps interface. PostOps was the experimental interface for kernel fusion and is replaced by the new Dynamic Fusion interface.
110 - Update OpenCL™ API headers to v2023.04.17
Pablo Marquez Tello29e27b02023-08-03 14:47:31 +0100111
Jakub Sujak59b9ff02023-06-11 21:35:11 +0100112v23.08 Public major release
113 - Deprecate the legacy 'libarm_compute_core' library. This library is an artifact of Compute Library's legacy library architecture and no longer serves any purpose.
114 Users must no longer link their applications to this library and instead link only to the main `libarm_compute` library for core functionality.
Ramy Elgammalc9525962023-05-19 14:23:37 +0100115 - New features
ramy.elgammal@arm.com11b23f72023-08-09 15:38:03 +0100116 - Rewrite CLArgMinMaxLayer for axis 0 and enable S64 output.
117 - Add multi-sketch support for dynamic fusion.
118 - Break up arm_compute/core/Types.h and utils/Utils.h a bit to reduce unused code in each inclusion of these headers.
119 - Add Fused Activation to CLMatMul.
120 - Implement FP32/FP16 @ref opencl::kernels::ClMatMulNativeMMULKernel using the MMUL extension.
121 - Use MatMul in fully connected layer with dynamic weights when supported.
122 - Optimize CPU depthwise convolution with channel multiplier.
123 - Add support in CpuCastKernel for conversion of S64/U64 to F32.
Ramy Elgammalc9525962023-05-19 14:23:37 +0100124 - Add new OpenCL™ kernels:
125 - @ref opencl::kernels::ClMatMulNativeMMULKernel support for FP32 and FP16, with batch support
Viet-Hoa Do019a7d92023-06-27 16:33:57 +0100126 - Enable transposed convolution with non-square kernels on CPU and GPU.
ramy.elgammal@arm.com11b23f72023-08-09 15:38:03 +0100127 - Add support for input data type U64/S64 in CLCast.
128 - Add new Compute Kernel Writer (CKW) subproject that offers a C++ interface to generate tile-based OpenCL code in just-in-time fashion.
Jakub Sujake1c96e72023-07-31 13:36:58 +0100129 - Port the following kernels in the experimental Dynamic Fusion interface to use the new Compute Kernel Writer interface with support for FP16/FP32 only:
130 - @ref experimental::dynamic_fusion::GpuCkwActivation
131 - @ref experimental::dynamic_fusion::GpuCkwCast
132 - @ref experimental::dynamic_fusion::GpuCkwDirectConv2d
133 - @ref experimental::dynamic_fusion::GpuCkwElementwiseBinary
134 - @ref experimental::dynamic_fusion::GpuCkwStore
Viet-Hoa Do0c19f592023-08-01 14:42:41 +0100135 - Various optimizations and bug fixes.
136
ramy.elgammal@arm.com2f0ef002023-06-28 21:31:03 +0100137v23.05.1 Public patch release
138 - Enable CMake and Bazel option to build multi_isa without FP16 support.
139 - Fix compilation error in NEReorderLayer (aarch64 only).
140 - Disable invalid (false-negative) validation test with CPU scale layer on FP16.
141 - Various bug fixes
142
SiCong Li8893e452023-03-23 12:06:45 +0000143v23.05 Public major release
Omar Al Khatib32a62502023-05-10 11:45:20 +0100144 - New features:
145 - Add new Arm® Neon™ kernels / functions:
146 - @ref NEMatMul for QASYMM8, QASYMM8_SIGNED, FP32 and FP16, with batch support.
147 - NEReorderLayer (aarch64 only)
148 - Add new OpenCL™ kernels / functions:
149 - @ref CLMatMul support for QASYMM8, QASYMM8_SIGNED, FP32 and FP16, with batch support.
150 - Add support for the multiple dimensions in the indices parameter for both the Arm® Neon™ and OpenCL™ implementations of the Gather Layer.
151 - Add support for dynamic weights in @ref CLFullyConnectedLayer and @ref NEFullyConnectedLayer for all data types.
152 - Add support for cropping in the Arm® Neon™ and OpenCL™: implementations of the BatchToSpace Layer for all data types.
153 - Add support for quantized data types for the ElementwiseUnary Operators for Arm® Neon™.
154 - Implement RSQRT for quantized data types on OpenCL™.
155 - Add FP16 depthwise convolution kernels for SME2.
156 - Performance optimizations:
157 - Improve CLTuner exhaustive mode tuning time.
158 - Deprecate dynamic block shape in @ref NEBatchToSpaceLayer and @ref CLBatchToSpaceLayer.
159 - Various optimizations and bug fixes.
SiCong Li8893e452023-03-23 12:06:45 +0000160
Jakub Sujak22e76132023-03-13 17:27:51 +0000161v23.02.1 Public patch release
162 - Allow mismatching data layouts between the source tensor and weights for \link cpu::CpuGemmDirectConv2d CpuGemmDirectConv2d \endlink with fixed format kernels.
163 - Fixes for experimental CPU only Bazel and CMake builds.
164
SiCong Li90e57202023-02-01 14:39:41 +0000165v23.02 Public major release
Jakub Sujak06db85e2023-02-06 17:42:47 +0000166 - New features:
167 - Rework the experimental dynamic fusion interface by identifying auxiliary and intermediate tensors, and specifying an explicit output operator.
168 - Add the following operators to the experimental dynamic fusion API:
169 - GpuAdd, GpuCast, GpuClamp, GpuDepthwiseConv2d, GpuMul, GpuOutput, GpuPool2d, GpuReshape, GpuResize, GpuSoftmax, GpuSub.
170 - Add SME/SME2 kernels for GeMM, Winograd convolution, Depthwise convolution and Pooling.
Jakub Sujak9eefd4b2023-02-10 14:36:48 +0000171 - Add new CPU operator AddMulAdd for float and quantized types.
Jakub Sujak06db85e2023-02-06 17:42:47 +0000172 - Add new flag @ref ITensorInfo::lock_paddings() to tensors to prevent extending tensor paddings.
Jakub Sujak06db85e2023-02-06 17:42:47 +0000173 - Add experimental support for CPU only Bazel and CMake builds.
174 - Performance optimizations:
175 - Optimize CPU base-e exponential functions for FP32.
176 - Optimize CPU StridedSlice by copying first dimension elements in bulk where possible.
177 - Optimize CPU quantized Subtraction by reusing the quantized Addition kernel.
178 - Optimize CPU ReduceMean by removing quantization steps and performing the operation in integer domain.
179 - Optimize GPU Scale and Dynamic Fusion GpuResize by removing quantization steps and performing the operation in integer domain.
Jakub Sujak9eefd4b2023-02-10 14:36:48 +0000180 - Update the heuristic for CLDepthwiseConvolutionNative kernel.
181 - Add new optimized OpenCL kernel to compute indirect convolution:
182 - \link opencl::kernels::ClIndirectConv2dKernel ClIndirectConv2dKernel \endlink
183 - Add new optimized OpenCL kernel to compute transposed convolution:
184 - \link opencl::kernels::ClTransposedConvolutionKernel ClTransposedConvolutionKernel \endlink
SiCong Li90e57202023-02-01 14:39:41 +0000185 - Update recommended/minimum NDK version to r20b.
Jakub Sujak06db85e2023-02-06 17:42:47 +0000186 - Various optimizations and bug fixes.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100187
Viet-Hoa Dob1f82882022-11-11 11:29:50 +0000188v22.11 Public major release
189 - New features:
190 - Add new experimental dynamic fusion API.
Viet-Hoa Do293ab602022-11-15 10:51:26 +0000191 - Add CPU batch matrix multiplication with adj_x = false and adj_y = false for FP32.
Viet-Hoa Dob1f82882022-11-11 11:29:50 +0000192 - Add CPU MeanStdDevNorm for QASYMM8.
193 - Add CPU and GPU GELU activation function for FP32 and FP16.
194 - Add CPU swish activation function for FP32 and FP16.
195 - Performance optimizations:
196 - Optimize CPU bilinear scale for FP32, FP16, QASYMM8, QASYMM8_SIGNED, U8 and S8.
197 - Optimize CPU activation functions using LUT-based implementation:
198 - Sigmoid function for QASYMM8 and QASYMM8_SIGNED.
199 - Hard swish function for QASYMM8_SIGNED.
200 - Optimize CPU addition for QASYMM8 and QASYMM8_SIGNED using fixed-point arithmetic.
201 - Optimize CPU multiplication, subtraction and activation layers by considering tensors as 1D.
202 - Optimize GPU depthwise convolution kernel and heuristic.
203 - Optimize GPU Conv2d heuristic.
204 - Optimize CPU MeanStdDevNorm for FP16.
205 - Optimize CPU tanh activation function for FP16 using rational approximation.
206 - Improve GPU GeMMLowp start-up time.
207 - Various optimizations and bug fixes.
208
SiCong Life1b1f62022-05-19 18:58:31 +0100209v22.08 Public major release
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100210 - Various bug fixes.
211 - Disable unsafe FP optimizations causing accuracy issues in:
212 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
213 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv3dKernel \endlink
214 - @ref CLDepthwiseConvolutionLayerNativeKernel
215 - Add Dynamic Fusion of Elementwise Operators: Div, Floor, Add.
216 - Optimize the gemm_reshaped_rhs_nly_nt OpenCL kernel using the arm_matrix_multiply extension available for Arm® Mali™-G715 and Arm® Mali™-G615.
217 - Add support for the arm_matrix_multiply extension in the gemmlowp_mm_reshaped_only_rhs_t OpenCL kernel.
218 - Expand GPUTarget list with missing Mali™ GPUs product names: G57, G68, G78AE, G610, G510, G310.
219 - Extend the direct convolution 2d interface to configure the block size.
220 - Update ClConv2D heuristic to use direct convolution.
221 - Use official Khronos® OpenCL extensions:
222 - Add cl_khr_integer_dot_product extension support.
223 - Add support of OpenCL 3.0 non-uniform workgroup.
224 - Cpu performance optimizations:
225 - Add LUT-based implementation of Hard Swish and Leaky ReLU activation function for aarch64 build.
226 - Optimize Add layer by considering the input tensors as 1D array.
227 - Add fixed-format BF16, FP16 and FP32 Neon™ GEMM kernels to support variable weights.
228 - Add new winograd convolution kernels implementation and update the ACL \link arm_compute::cpu::CpuWinogradConv2d CpuWinogradConv2d\endlink operator.
Jakub Sujak117e17e2023-02-21 10:52:57 +0000229 - Add experimental support for native builds for Windows® on Arm™.
Ramy Elgammal966218d2022-08-11 16:23:22 +0100230 - Build flag interpretation change: arch=armv8.6-a now translates to -march=armv8.6-a CXX flag instead of march=armv8.2-a + explicit selection of feature extensions.
SiCong Life1b1f62022-05-19 18:58:31 +0100231 - Build flag change: toolchain_prefix, compiler_prefix:
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100232 - Use empty string "" to suppress any prefixes.
233 - Use "auto" to use default (auto) prefixes chosen by the build script. This is the default behavior when unspecified.
234 - Any other string will be used as custom prefixes to the compiler and the rest of toolchain tools.
235 - The default behaviour when prefix is unspecified does not change, but its signifier has been changed from empty string "" to "auto".
236 - armv7a with Android build will no longer be tested or maintained.
SiCong Life1b1f62022-05-19 18:58:31 +0100237
Adnan AlSinan2921e5b2022-05-16 14:30:41 +0100238v22.05 Public major release
239 - Various bug fixes.
240 - Various optimizations.
241 - Add support for NDK r23b.
242 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
243 - New Arm® Neon™ kernels / functions :
244 - \link opencl::kernels::ClPool3dKernel ClPool3dKernel \endlink
245 - New OpenCL kernels / functions :
246 - \link cpu::kernels::CpuPool3dKernel CpuPool3dKernel \endlink
247 - Improve the start-up times for the following OpenCL kernels:
248 - \link opencl::kernels::ClWinogradInputTransformKernel ClWinogradInputTransformKernel \endlink
249 - \link opencl::kernels::ClWinogradOutputTransformKernel ClWinogradOutputTransformKernel \endlink
250 - \link opencl::kernels::ClWinogradFilterTransformKernel ClWinogradFilterTransformKernel \endlink
251 - \link opencl::kernels::ClHeightConcatenateKernel ClHeightConcatenateKernel \endlink
252 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
253 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
254 - \link cpu::kernels::CpuDepthwiseConv2dNativeKernel CpuDepthwiseConv2dNativeKernel \endlink
255 - \link cpu::kernels::CpuGemmMatrixAdditionKernel CpuGemmMatrixAdditionKernel \endlink
256 - \link cpu::kernels::CpuGemmMatrixMultiplyKernel CpuGemmMatrixMultiplyKernel \endlink
257 - @ref NEFuseBatchNormalizationKernel
258 - @ref NEL2NormalizeLayerKernel
259
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000260v22.02 Public major release
261 - Various bug fixes.
262 - Various optimizations.
263 - Update A510 arm_gemm cpu Kernels.
264 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
265 - Improve the start-up time for the following OpenCL kernels:
266 - @ref CLScale
267 - @ref CLGEMM
268 - @ref CLDepthwiseConvolutionLayer
269 - \link opencl::kernels::ClIm2ColKernel ClIm2ColKernel \endlink
270 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
271 - Remove functions:
272 - CLRemap
273 - NERemap
274 - Remove padding from OpenCL kernels:
275 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
276 - Remove padding from Cpu kernels:
277 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
278 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
279 - \link cpu::kernels::CpuActivationKernel CpuActivationKernel \endlink
280 - \link cpu::kernels::CpuAddKernel CpuAddKernel \endlink
281 - \link cpu::kernels::CpuElementwiseKernel CpuElementwiseKernel \endlink
282 - \link cpu::CpuSoftmaxGeneric CpuSoftmaxKernel \endlink
283 - @ref NEBoundingBoxTransformKernel
284 - @ref NECropKernel
285 - @ref NEComputeAllAnchorsKernel
286 - @ref NEInstanceNormalizationLayerKernel
Adnan AlSinanbb8b2352022-02-14 14:30:38 +0000287 - NEMaxUnpoolingLayerKernel
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000288 - @ref NEMeanStdDevNormalizationKernel
289 - @ref NERangeKernel
290 - @ref NEROIAlignLayerKernel
291 - @ref NESelectKernel
292
Sheri Zhang5dda2172021-10-15 19:54:17 +0100293v21.11 Public major release
294 - Various bug fixes.
Gunes Bayir08773702021-11-05 12:34:34 +0000295 - Various optimizations:
296 - Improve performance of bilinear and nearest neighbor Scale on both CPU and GPU for FP32, FP16, Int8, Uint8 data types
Adnan AlSinanabc093b2022-02-08 16:57:06 +0000297 - Improve performance of Softmax on GPU for Uint8/Int8
Sheri Zhang5dda2172021-10-15 19:54:17 +0100298 - New OpenCL kernels / functions:
299 - @ref CLConv3D
300 - New Arm® Neon™ kernels / functions:
301 - @ref NEConv3D
Gunes Bayir08773702021-11-05 12:34:34 +0000302 - Support configurable build by a selected subset of operator list
303 - Support MobileBert on Neon™ backend
304 - Improve operator/function logging
305 - Remove padding from OpenCL kernels:
306 - ClPool2dKernel
307 - ClScaleKernel
308 - ClGemmMatrixMultiplyReshapedKernel
309 - Remove padding from Cpu kernels:
310 - CpuPool2dKernel
311 - Remove Y padding from OpenCL kernels:
312 - ClGemmMatrixMultiplyKernel
313 - ClGemmReshapedRHSMatrixKernel
314 - Remove legacy GeMM kernels in gemm_v1.cl
Sheri Zhang5dda2172021-10-15 19:54:17 +0100315
Freddie Liardet77014ff2021-08-05 15:50:31 +0100316v21.08 Public major release
317 - Various bug fixes.
318 - Various optimizations:
319 - Improve LWS (Local-Workgroup-Size) heuristic in OpenCL for GeMM, Direct Convolution and Winograd Transformations when OpenCL tuner is not used
320 - Improve QASYMM8/QSYMM8 performance on OpenCL for various Arm® Mali™ GPU architectures
321 - Add dynamic weights support in Fully connected layer (CPU/GPU)
322 - Various performance optimizations for floating-point data types (CPU/GPU)
323 - Add a reduced core library build arm_compute_core_v2
324 - Expose Operator API
325 - Support fat binary build for arm8.2-a via fat_binary build flag
326 - Add CPU discovery capabilities
327 - Add data type f16 support for:
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000328 - CLRemapKernel
Freddie Liardet77014ff2021-08-05 15:50:31 +0100329 - Port the following functions to stateless API:
330 - @ref CLConvolutionLayer
331 - @ref CLFlattenLayer
332 - @ref CLFullyConnectedLayer
333 - @ref CLGEMM
334 - @ref CLGEMMConvolutionLayer
335 - @ref CLGEMMLowpMatrixMultiplyCore
336 - @ref CLWinogradConvolutionLayer
337 - @ref NEConvolutionLayer
338 - @ref NEFlattenLayer
339 - @ref NEFullyConnectedLayer
340 - @ref NEGEMM
341 - @ref NEGEMMConv2d
342 - @ref NEGEMMConvolutionLayer
343 - @ref NEGEMMLowpMatrixMultiplyCore
344 - @ref NEWinogradConvolutionLayer
345 - Remove the following functions:
346 - CLWinogradInputTransform
347 - Remove CLCoreRuntimeContext
348 - Remove ICPPSimpleKernel
349 - Rename file arm_compute/runtime/CL/functions/CLElementWiseUnaryLayer.h to arm_compute/runtime/CL/functions/CLElementwiseUnaryLayer.h
350
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000351v21.05 Public major release
Sheri Zhangc2bed952021-05-06 12:12:38 +0100352 - Various bug fixes.
353 - Various optimisations.
354 - Various documentation updates:
Jakub Sujakee301b32021-06-04 09:46:08 +0100355 - Add supported operators and corresponding Android NNAPI operators.
356 - Documentation reorg into user guide and contributor guide.
Sheri Zhangc2bed952021-05-06 12:12:38 +0100357 - Add support for a global allocator for OpenCL tensors
358 - Add experimental support for [CLVK](https://github.com/kpet/clvk).
359 - Add data type S32 support for:
360 - @ref opencl::kernels::ClArithmeticKernel
361 - Add data type QASYMM8 support for:
362 - @ref CLROIPoolingLayer
363 - @ref CLROIPoolingLayerKernel
364 - @ref NEROIPoolingLayer
365 - @ref NEROIPoolingLayerKernel
366 - Add per-channel quantization support for:
367 - @ref CLDeconvolutionLayer
368 - @ref CLDirectDeconvolutionLayer
369 - @ref NEConvolutionLayer
370 - @ref NEDeconvolutionLayer
371 - Remove padding from OpenCL kernels:
372 - @ref CLL2NormalizeLayerKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100373 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Sheri Zhangc2bed952021-05-06 12:12:38 +0100374 - @ref CLNormalizationLayerKernel
375 - @ref CLNormalizePlanarYUVLayerKernel
376 - @ref opencl::kernels::ClMulKernel
377 - @ref CLReductionOperationKernel
378 - @ref CLROIPoolingLayerKernel
379 - Remove computer vision support from Arm® Neon™ backend
380 - Remove the following functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000381 - NEAbsoluteDifference
382 - NEAccumulate
383 - NEBox3x3
384 - NECannyEdge
385 - NEChannelCombine
386 - NEChannelExtract
387 - NEColorConvert
Michalis Spyrou473cb012021-02-23 11:48:12 +0000388 - NEConvolution
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000389 - NEDerivative
390 - NEDilate
391 - NEEqualizeHistogram
392 - NEErode
393 - NEFastCorners
394 - NEGaussian3x3
395 - NEGaussian5x5
396 - NEGaussianPyramid
397 - NEHOGDescriptor
398 - NEHOGDetector
399 - NEHOGGradient
400 - NEHOGMultiDetection
401 - NEHarrisCorners
402 - NEHistogram
403 - NEIntegralImage
404 - NELaplacianPyramid
405 - NELaplacianReconstruct
406 - NEMagnitude
407 - NEMeanStdDev
408 - NEMedian3x3
409 - NEMinMaxLocation
410 - NENonLinearFilter
411 - NEOpticalFlow
412 - NEPhase
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000413 - NEScharr3x3
414 - NESobel3x3
415 - NESobel5x5
416 - NESobel7x7
417 - NETableLookup
418 - NEThreshold
419 - NEWarpAffine
Michalis Spyrou473cb012021-02-23 11:48:12 +0000420 - NEWarpPerspectiveKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000421 - Remove all GLES kernels / functions / tests / examples
Sheri Zhangc2bed952021-05-06 12:12:38 +0100422 - Remove computer vision support from CL backend
423 - Remove the following functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000424 - CLAbsoluteDifference
425 - CLAccumulate
426 - CLBox3x3
427 - CLCannyEdge
428 - CLChannelCombine
429 - CLChannelExtract
430 - CLColorConvert
431 - CLConvolution
432 - CLDerivative
433 - CLDilate
434 - CLEqualizeHistogram
435 - CLErode
436 - CLFastCorners
437 - CLGaussian3x3
438 - CLGaussian5x5
439 - CLGaussianPyramid
440 - CLHOGDescriptor
441 - CLHOGDetector
442 - CLHOGGradient
443 - CLHOGMultiDetection
444 - CLHarrisCorners
445 - CLHistogram
446 - CLIntegralImage
447 - CLLaplacianPyramid
448 - CLLaplacianReconstruct
449 - CLMagnitude
450 - CLMeanStdDev
451 - CLMedian3x3
452 - CLMinMaxLocation
453 - CLNonLinearFilter
454 - CLOpticalFlow
455 - CLPhase
456 - CLScharr3x3
457 - CLSobel3x3
458 - CLSobel5x5
459 - CLSobel7x7
460 - CLTableLookup
461 - CLThreshold
462 - CLWarpAffine
463 - CLWarpPerspective
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100464
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000465v21.02 Public major release
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000466 - Various bug fixes.
467 - Various optimisations.
Georgios Pinitas45514032020-12-30 00:03:09 +0000468 - Upgrade C++ standard to C++14
469 - Add macOS support
Giorgio Arena1055dc12021-02-19 09:53:06 +0000470 - Add Armv8-R AArch64 architecture support
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000471 - Add SVE/SVE2 support for:
Manuel Bottini10b38262021-02-19 18:16:44 +0000472 - NEScaleKernel
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000473 - @ref NEActivationLayer
474 - @ref NEArithmeticAddition
475 - @ref NEBatchNormalizationLayerKernel
Gunes Bayirfadc9b12023-11-07 05:43:07 +0000476 - cpu::kernels::CpuLogits1DSoftmaxKernel
477 - cpu::kernels::CpuLogits1DMaxKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000478 - @ref cpu::kernels::CpuElementwiseUnaryKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000479 - Remove padding from OpenCL kernels:
Sheri Zhang1efed922021-03-10 22:43:38 +0000480 - CLDirectConvolutionLayerKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000481 - @ref CLArgMinMaxLayerKernel
482 - @ref CLPadLayerKernel
483 - @ref CLROIAlignLayerKernel
484 - @ref CLRangeKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000485 - CLScaleKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000486 - @ref CLSelectKernel
487 - @ref CLBitwiseKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000488 - @ref opencl::kernels::ClFloorKernel
Teresa Charlin27886092021-02-25 20:15:01 +0000489 - CLTransposeKernel
Giorgio Arena5b50f422021-02-17 11:43:05 +0000490 - Deprecate functions in CLTuner:
491 - add_lws_to_table
492 - import_lws_table
493 - lws_table
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000494 - Remove functions:
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000495 - NELocallyConnectedLayer / CLLocallyConnectedLayer
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000496 - NEIm2Col
497 - NECol2Im
498 - NEGEMMInterleave4x4
499 - NEGEMMTranspose1xW
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +0000500 - NEComputeAllAnchors / CLComputeAllAnchors
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000501 - NEGEMMAssemblyDispatch
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000502 - NEUpsampleLayer / CLUpsampleLayer
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000503 - Remove kernels:
Georgios Pinitasd308df32020-12-01 16:56:36 +0000504 - NEGEMMMatrixVectorMultiplyKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000505 - NELocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedMatrixMultiplyKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000506 - NEUpsampleLayerKernel / CLUpsampleLayerKernel
Gian Marco Iodicef5aad512021-02-08 17:34:40 +0000507 - Extend OpenCL tuner with workgroup batch size support
508 - Experimental extension for the OpenCL tuner to tune the batches of work groups distribute to compute units
Gian Marco Iodice716b1be2021-02-10 17:33:27 +0000509 - Add functionality to load the OpenCL GEMM heuristics at runtime
510 - The GEMM heuristic file (MLGO) can be used to update the default GEMM heuristics available for OpenCL
Giorgio Arenacd7d1782021-02-22 14:58:37 +0000511 - Note: there might be performance regressions against v20.08 in Inception v3 using int8 data types on Arm Mali-G77 GPUs. Currently under investigation
Jakub Sujakee301b32021-06-04 09:46:08 +0100512 - Note: data-type decoupling is in progress and experimental. Warning of unused symbols might be raised
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000513
SiCong Li96209c72020-08-21 12:28:30 +0100514v20.11 Public major release
morgolock70b1eb82020-11-24 13:54:19 +0000515 - Various bug fixes.
516 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000517 - Performance regressions can be noted when executing Depthwise Convolution on Arm® Neon™ with a depth multiplier > 1 for quantized data type.
morgolock0e728492020-11-20 11:03:33 +0000518 This is planned to be resolved in 21.02 release.
morgolock70b1eb82020-11-24 13:54:19 +0000519 - Added new data type QASYMM8_SIGNED support for @ref NEROIAlignLayer.
SiCong Li903f8cc2020-08-27 10:17:10 +0100520 - Added new data type S32 support for:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000521 - NEArithmeticSubtraction
522 - NEArithmeticSubtractionKernel
SiCong Libb88f892020-08-28 11:18:47 +0100523 - @ref NEPixelWiseMultiplication
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000524 - NEPixelWiseMultiplicationKernel
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000525 - NEElementwiseDivision
526 - NEDivisionOperationKernel
SiCong Li96209c72020-08-21 12:28:30 +0100527 - Interface change
528 - Properly support softmax axis to have the same meaning as other major frameworks. That is, axis now defines the dimension
529 on which Softmax/Logsoftmax is performed. E.g. for input of shape 4x5x6 and axis=1, softmax will be applied to 4x6=24 vectors of size 5.
530 The supported value range of axis is [-rank, rank).
531 This change applies to the following functions:
532 - @ref NESoftmaxLayer
533 - @ref NELogSoftmaxLayer
534 - @ref CLSoftmaxLayer
535 - @ref CLLogSoftmaxLayer
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000536 - GCSoftmaxLayer
Sheri Zhang824061d2020-10-26 15:46:37 +0000537 - New OpenCL kernels / functions:
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100538 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
morgolock0e728492020-11-20 11:03:33 +0000539 - @ref CLLogicalNot
540 - @ref CLLogicalAnd
541 - @ref CLLogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000542 - New Arm® Neon™ kernels / functions:
morgolock0e728492020-11-20 11:03:33 +0000543 - @ref NELogicalNot
544 - @ref NELogicalAnd
545 - @ref NELogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000546 - Removed padding from Arm® Neon™ kernels:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000547 - NEComplexPixelWiseMultiplicationKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000548 - NENonMaximaSuppression3x3Kernel
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000549 - NERemapKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100550 - NEGEMMInterleave4x4Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100551 - NEDirectConvolutionLayerKernel
Manuel Bottini10b38262021-02-19 18:16:44 +0000552 - NEScaleKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000553 - NELocallyConnectedMatrixMultiplyKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100554 - NEGEMMLowpOffsetContributionKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100555 - NEGEMMTranspose1xWKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +0000556 - NEPoolingLayerKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000557 - NEConvolutionKernel
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100558 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100559 - NEGEMMLowpMatrixMultiplyKernel
Michele Di Giorgio53832b22021-06-21 14:45:44 +0100560 - NEGEMMMatrixMultiplyKernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100561 - NEDirectConvolutionLayerOutputStageKernel
Sheri Zhanged367132020-10-08 15:46:16 +0100562 - @ref NEReductionOperationKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100563 - NEGEMMLowpMatrixAReductionKernel
564 - NEGEMMLowpMatrixBReductionKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000565 - Removed padding from OpenCL kernels:
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000566 - CLBatchConcatenateLayerKernel
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000567 - CLElementwiseOperationKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000568 - @ref CLBatchNormalizationLayerKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000569 - CLPoolingLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100570 - CLWinogradInputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100571 - CLGEMMLowpMatrixMultiplyNativeKernel
572 - CLGEMMLowpMatrixAReductionKernel
573 - CLGEMMLowpMatrixBReductionKernel
574 - CLGEMMLowpOffsetContributionOutputStageKernel
575 - CLGEMMLowpOffsetContributionKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100576 - CLWinogradOutputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100577 - CLGEMMLowpMatrixMultiplyReshapedKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000578 - @ref CLFuseBatchNormalizationKernel
579 - @ref CLDepthwiseConvolutionLayerNativeKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100580 - CLDepthConvertLayerKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000581 - CLCopyKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100582 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000583 - CLActivationLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100584 - CLWinogradFilterTransformKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000585 - CLWidthConcatenateLayerKernel
586 - CLWidthConcatenate4TensorsKernel
587 - CLWidthConcatenate2TensorsKernel
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000588 - CLLogits1DMaxShiftExpSumKernel
589 - CLLogits1DNormKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000590 - CLHeightConcatenateLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100591 - CLGEMMMatrixMultiplyKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100592 - CLGEMMLowpQuantizeDownInt32ScaleKernel
593 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
594 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000595 - CLDepthConcatenateLayerKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100596 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000597 - Removed OpenCL kernels / functions:
598 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
599 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel
600 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel
morgolock00c76012020-11-06 10:40:12 +0000601 - Deprecated OpenCL kernels / functions (If a kernel is used only by the function that is being deprecated, the kernel is deprecated together):
Georgios Pinitas2d221392020-09-03 15:16:37 +0100602 - CLLocallyConnectedLayer
603 - CLLocallyConnectedMatrixMultiplyKernel
morgolock00c76012020-11-06 10:40:12 +0000604 - CLAbsoluteDifference
605 - CLAbsoluteDifferenceKernel
606 - CLAccumulate
607 - CLAccumulateKernel
608 - CLAccumulateSquared
609 - CLAccumulateSquaredKernel
610 - CLAccumulateWeighted
611 - CLAccumulateWeightedKernel
612 - CLAccumulateWeightedFP16Kernel
613 - CLBox3x3
614 - CLBox3x3Kernel
615 - CLBox3x3FP16Kernel
616 - CLCannyEdge
617 - CLChannelCombine
618 - CLChannelCombineKernel
619 - CLChannelExtract
620 - CLChannelExtractKernel
621 - CLColorConvert
622 - CLColorConvertKernel
623 - CLConvolution3x3
624 - CLConvolutionRectangle
625 - CLConvolutionRectangleKernel
626 - CLConvolutionSquare
627 - CLConvolutionKernel
628 - CLDerivative
629 - CLDerivativeKernel
630 - CLDilate
631 - CLDilateKernel
632 - CLEqualizeHistogram
633 - CLErode
634 - CLErodeKernel
635 - CLFastCorners
636 - CLFastCornersKernel
637 - CLGaussian3x3
638 - CLGaussian3x3Kernel
639 - CLGaussian5x5
640 - CLGaussian5x5HorKernel
641 - CLGaussian5x5VertKernel
642 - CLGaussianPyramid
643 - CLGaussianPyramidHalf
644 - CLGaussianPyramidOrb
645 - CLHarrisCorners
646 - CLHarrisScoreKernel
647 - CLHarrisScoreFP16Kernel
648 - CLHistogram
649 - CLHistogramKernel
650 - CLHOGOrientationBinningKernel
651 - CLHOGBlockNormalizationKernel
652 - CLHOGDetectorKernel
653 - CLHOGNonMaximaSuppressionKernel
654 - CLHOGDescriptor
655 - CLHOGDetector
656 - CLHOGGradient
657 - CLHOGMultiDetection
658 - CLHOGOrientationBinningKernel
659 - CLHOGBlockNormalizationKernel
660 - CLHOGDetectorKernel
661 - CLIntegralImage
662 - CLIntegralImageKernel
663 - CLLaplacianReconstruct
664 - CLLaplacianPyramid
665 - CLMagnitude
666 - CLMagnitudePhaseKernel
667 - CLMedian3x3
668 - CLMedian3x3Kernel
669 - CLMinMaxLocation
670 - CLMinMaxLocationKernel
671 - CLNonLinearFilter
672 - CLNonLinearFilterKernel
673 - CLNonMaximaSuppression3x3
674 - CLNonMaximaSuppression3x3FP16Kernel
675 - CLNonMaximaSuppression3x3Kernel
676 - CLOpticalFlow
677 - CLPhase
678 - CLRemap
679 - CLRemapKernel
680 - CLScharr3x3
681 - CLScharr3x3Kernel
682 - CLSobel3x3
683 - CLSobel3x3Kernel
684 - CLSobel5x5
685 - CLSobel5x5HorKernel
686 - CLSobel5x5VertKernel
687 - CLSobel7x7
688 - CLSobel7x7HorKernel
689 - CLSobel7x7VertKernel
690 - CLThreshold
691 - CLThresholdKernel
692 - CLWarpAffine
693 - CLWarpAffineKernel
694 - CLWarpPerspective
695 - CLWarpPerspectiveKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000696 - Deprecated Arm® Neon™ kernels / functions (If a kernel is used only by the function that is being deprecated, the kernel is deprecated together):
Georgios Pinitas2d221392020-09-03 15:16:37 +0100697 - NELocallyConnectedLayer
698 - NELocallyConnectedMatrixMultiplyKernel
morgolock0c862652020-11-06 08:59:45 +0000699 - NEAbsoluteDifference
700 - NEAbsoluteDifferenceKernel
701 - NEAccumulate
702 - NEAccumulateKernel
703 - NEAccumulateSquared
704 - NEAccumulateSquaredKernel
705 - NEAccumulateWeighted
706 - NEAccumulateWeightedKernel
707 - NEAccumulateWeightedFP16Kernel
708 - NEBox3x3
709 - NEBox3x3Kernel
710 - NEBox3x3FP16Kernel
711 - NECannyEdge
712 - NEChannelCombine
713 - NEChannelCombineKernel
714 - NEChannelExtract
715 - NEChannelExtractKernel
716 - NEColorConvert
717 - NEColorConvertKernel
718 - NEConvolution3x3
719 - NEConvolutionRectangle
720 - NEConvolutionRectangleKernel
721 - NEConvolutionSquare
722 - NEConvolutionKernel
723 - NEDerivative
724 - NEDerivativeKernel
725 - NEDilate
726 - NEDilateKernel
727 - NEEqualizeHistogram
728 - NEErode
729 - NEErodeKernel
730 - NEFastCorners
731 - NEFastCornersKernel
732 - NEGaussian3x3
733 - NEGaussian3x3Kernel
734 - NEGaussian5x5
735 - NEGaussian5x5HorKernel
736 - NEGaussian5x5VertKernel
737 - NEGaussianPyramid
738 - NEGaussianPyramidHalf
739 - NEGaussianPyramidOrb
740 - NEHarrisCorners
741 - NEHarrisScoreKernel
742 - NEHarrisScoreFP16Kernel
743 - NEHistogram
744 - NEHistogramKernel
745 - NEHOGOrientationBinningKernel
746 - NEHOGBlockNormalizationKernel
747 - NEHOGDetectorKernel
748 - NEHOGNonMaximaSuppressionKernel
749 - NEHOGDescriptor
750 - NEHOGDetector
751 - NEHOGGradient
752 - NEHOGMultiDetection
753 - NEHOGOrientationBinningKernel
754 - NEHOGBlockNormalizationKernel
755 - NEHOGDetectorKernel
756 - NEIntegralImage
757 - NEIntegralImageKernel
758 - NELaplacianReconstruct
759 - NELaplacianPyramid
760 - NEMagnitude
761 - NEMagnitudePhaseKernel
762 - NEMedian3x3
763 - NEMedian3x3Kernel
764 - NEMinMaxLocation
765 - NEMinMaxLocationKernel
766 - NENonLinearFilter
767 - NENonLinearFilterKernel
768 - NENonMaximaSuppression3x3
769 - NENonMaximaSuppression3x3FP16Kernel
770 - NENonMaximaSuppression3x3Kernel
771 - NEOpticalFlow
772 - NEPhase
773 - NERemap
774 - NERemapKernel
775 - NEScharr3x3
776 - NEScharr3x3Kernel
777 - NESobel3x3
778 - NESobel3x3Kernel
779 - NESobel5x5
780 - NESobel5x5HorKernel
781 - NESobel5x5VertKernel
782 - NESobel7x7
783 - NESobel7x7HorKernel
784 - NESobel7x7VertKernel
785 - NEThreshold
786 - NEThresholdKernel
787 - NEWarpAffine
788 - NEWarpAffineKernel
789 - NEWarpPerspective
790 - NEWarpPerspectiveKernel
morgolockd6ee9ed2020-11-19 10:07:14 +0000791 - Deprecated GLES kernels / functions (If a kernel is used only by the function that is being deprecated, the kernel is deprecated together):
792 - GCAbsoluteDifference
793 - GCActivationLayer
794 - GCArithmeticAddition
795 - GCBatchNormalizationLayer
796 - GCConcatenateLayer
797 - GCConvolutionLayer
798 - GCDepthwiseConvolutionLayer
799 - GCDirectConvolutionLayer
800 - GCDropoutLayer
801 - GCFillBorder
802 - GCFullyConnectedLayer
803 - GCGEMM
804 - GCGEMMInterleave4x4
805 - GCGEMMTranspose1xW
806 - GCNormalizationLayer
807 - GCNormalizePlanarYUVLayer
808 - GCPixelWiseMultiplication
809 - GCPoolingLayer
810 - GCScale
811 - GCSoftmaxLayer
812 - GCTensorShift
813 - GCTranspose
814
SiCong Li96209c72020-08-21 12:28:30 +0100815
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100816v20.08 Public major release
817 - Various bug fixes.
818 - Various optimisations.
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100819 - Added new data type QASYMM8_SIGNED support for:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100820 - @ref CLArgMinMaxLayer
821 - @ref CLArgMinMaxLayerKernel
822 - Added new data type U8 support for:
823 - @ref NECropKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000824 - CLCropKernel
Jakub Sujakee301b32021-06-04 09:46:08 +0100825 - Added align_corner support for nearest neighbor interpolation in:
Manuel Bottini10b38262021-02-19 18:16:44 +0000826 - NEScaleKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000827 - CLScaleKernel
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100828 - New OpenCL kernels / functions:
829 - @ref CLMaxUnpoolingLayerKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000830 - New Arm® Neon™ kernels / functions:
Dana Zlotnik149203b2022-01-26 12:38:03 +0200831 - NEMaxUnpoolingLayerKernel
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100832 - New graph example:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100833 - graph_yolov3_output_detector
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100834 - GEMMTuner improvements:
835 - Added fp16 support
836 - Output json files for easier integration
837 - Enabled tuning for export_to_cl_image_rhs option for RHS tensors
838 - More robust script for running benchmarks
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100839 - Removed padding from:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000840 - NEPixelWiseMultiplicationKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000841 - NEHeightConcatenateLayerKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000842 - NEThresholdKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000843 - NEBatchConcatenateLayerKernel
Teresa Charlind1dc09c2021-03-04 15:24:45 +0000844 - NETransposeKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100845 - @ref NEBatchNormalizationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000846 - NEArithmeticSubtractionKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100847 - @ref NEBoundingBoxTransformKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +0000848 - NELogits1DMaxKernel
849 - NELogits1DSoftmaxKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100850 - @ref NEROIPoolingLayerKernel
851 - @ref NEROIAlignLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +0000852 - NEYOLOLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000853 - NEUpsampleLayerKernel
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000854 - NEFloorKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000855 - NEWidthConcatenateLayerKernel
856 - NEDepthConcatenateLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100857 - @ref NENormalizationLayerKernel
858 - @ref NEL2NormalizeLayerKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +0100859 - NEFillArrayKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100860 - NEDepthConvertLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100861 - @ref NERangeKernel
862 - @ref NEPriorBoxLayer
Sheri Zhanged367132020-10-08 15:46:16 +0100863 - Removed OpenCL kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100864 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
865 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000866 - Removed Arm® Neon™ kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100867 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
868 - NEGEMMMatrixAccumulateBiasesKernel
SiCong Lid004a7a2020-05-28 15:26:41 +0100869 - Deprecated functions / interfaces:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000870 - Non-descriptor based interfaces for NEThreshold, CLThreshold
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000871 - Non-descriptor based interfaces for @ref NEScale, @ref CLScale and GCScale
872 - In @ref NESoftmaxLayer, @ref NELogSoftmaxLayer, @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer :
873 The default "axis" value for @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer is changed from 1 to 0.
morgolock9c7fed82020-08-05 12:30:56 +0100874 Only axis 0 is supported.
875 The default "axis" value for @ref NESoftmaxLayer, @ref NELogSoftmaxLayer is changed from 1 to 0.
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100876 Only axis 0 is supported.
Sang-Hoon Parka0205b92020-07-07 09:36:09 +0100877 - The support for quantized data types has been removed from @ref CLLogSoftmaxLayer due to implementation complexity.
Manuel Bottinid844c082021-07-14 12:58:54 +0100878 - Removed padding requirement for the input (e.g. LHS of GEMM) and output in CLGEMMMatrixMultiplyNativeKernel, CLGEMMMatrixMultiplyReshapedKernel, CLGEMMMatrixMultiplyReshapedOnlyRHSKernel and CLIm2ColKernel (NHWC only)
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100879 - This change allows to use @ref CLGEMMConvolutionLayer without extra padding for the input and output.
880 - Only the weights/bias of @ref CLGEMMConvolutionLayer could require padding for the computation.
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100881 - Only on Arm® Mali™ Midgard GPUs, @ref CLGEMMConvolutionLayer could require padding since CLGEMMMatrixMultiplyKernel is called and currently requires padding.
882 - Added support for exporting the OpenCL buffer object to the OpenCL image object in CLGEMMMatrixMultiplyReshapedKernel and CLGEMMMatrixMultiplyReshapedOnlyRHSKernel.
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100883 - This support allows to export the OpenCL buffer used for the reshaped RHS matrix to the OpenCL image object.
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100884 - The padding requirement for the OpenCL image object is considered into the CLGEMMReshapeRHSMatrixKernel.
885 - The reshaped RHS matrix stores the weights when GEMM is used to accelerate CLGEMMConvolutionLayer.
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100886
Georgios Pinitasfd7780d2020-03-17 11:41:00 +0000887v20.05 Public major release
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000888 - Various bug fixes.
889 - Various optimisations.
Michele Di Giorgio36a551f2020-04-23 11:55:29 +0100890 - Updated recommended NDK version to r18b.
891 - Updated recommended gcc version to Linaro 6.3.1.
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000892 - Added Bfloat16 type support
893 - Added Bfloat16 support in:
Manuel Bottini29599d02021-07-06 15:01:35 +0100894 - NEWeightsReshapeKernel
895 - NEConvolutionLayerReshapeWeights
Manuel Bottini90028992021-06-30 18:29:18 +0100896 - NEIm2ColKernel
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000897 - NEIm2Col
Georgios Pinitas11d84152021-04-28 10:20:18 +0100898 - NEDepthConvertLayerKernel
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000899 - @ref NEDepthConvertLayer
900 - @ref NEGEMMConvolutionLayer
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000901 - NEGEMMAssemblyDispatch
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000902 - Added new data type QASYMM8_SIGNED support for:
903 - @ref CLDirectConvolutionLayer
904 - @ref CLDeconvolutionLayer
905 - @ref CLDirectDeconvolutionLayer
906 - @ref CLGEMMDeconvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100907 - CLGEMMLowpMatrixMultiplyReshapedKernel
908 - CLGEMMLowpQuantizeDownInt32ScaleKernel
909 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000910 - @ref CLReductionOperation
911 - @ref CLReduceMean
Sheri Zhang359c48e2020-04-30 22:53:39 +0100912 - @ref NEScale
Manuel Bottini10b38262021-02-19 18:16:44 +0000913 - NEScaleKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000914 - NEUpsampleLayer
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000915 - @ref NECast
916 - @ref NEReductionOperation
917 - @ref NEReduceMean
918 - @ref NEArgMinMaxLayer
919 - @ref NEDeconvolutionLayer
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100920 - NEGEMMLowpQuantizeDownInt32ScaleKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000921 - @ref CPPBoxWithNonMaximaSuppressionLimit
922 - @ref CPPDetectionPostProcessLayer
923 - @ref CPPPermuteKernel
924 - @ref CPPPermute
925 - @ref CPPTopKVKernel
926 - @ref CPPTopKV
Sheri Zhang359c48e2020-04-30 22:53:39 +0100927 - @ref CPPUpsample
928 - @ref CPPUpsampleKernel
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100929 - New OpenCL kernels / functions:
930 - @ref CLQLSTMLayer
931 - @ref CLQLSTMLayerNormalizationKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000932 - New Arm® Neon™ kernels / functions:
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100933 - @ref NEQLSTMLayer
934 - @ref NEQLSTMLayerNormalizationKernel
935 - Added HARD_SWISH support in:
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000936 - CLActivationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000937 - NEActivationLayerKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000938 - Deprecated OpenCL kernels / functions:
939 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
940 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000941 - Deprecated Arm® Neon™ kernels / functions:
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000942 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
943 - Removed CPP kernels / functions:
944 - CPPFlipWeightsKernel
Manuel Bottini387259a2020-05-21 17:14:36 +0100945 - Removed PoolingLayerInfo constructors without Data Layout.
946 - Removed CLDepthwiseConvolutionLayer3x3
947 - Removed NEDepthwiseConvolutionLayerOptimized
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000948 - Added support for Winograd 3x3,4x4 on Arm® Neon™ FP16:
Manuel Bottini075253a2020-05-22 12:57:18 +0100949 - @ref NEWinogradConvolutionLayer
Michalis Spyrou96f977e2021-07-01 12:20:56 +0100950 - CpuWinogradConv2dTransformInputKernel
951 - CpuWinogradConv2dTransformOutputKernel
952 - CpuWinogradConv2dTransformWeightsKernel
Manuel Bottini075253a2020-05-22 12:57:18 +0100953 - Added CLCompileContext
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000954 - Added Arm® Neon™ GEMM kernel with 2D window support
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000955
Michele Di Giorgio740872e2020-03-04 15:29:49 +0000956v20.02.1 Maintenance release
957 - Added Android-NN build script.
958
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000959v20.02 Public major release
960 - Various bug fixes.
961 - Various optimisations.
962 - Added new data type QASYMM8_SIGNED support for:
963 - @ref CLDepthwiseConvolutionLayer
Manuel Bottini387259a2020-05-21 17:14:36 +0100964 - CLDepthwiseConvolutionLayer3x3
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000965 - @ref CLGEMMConvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100966 - CLGEMMLowpMatrixMultiplyCore
967 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
968 - CLGEMMLowpMatrixMultiplyNativeKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000969 - @ref NEActivationLayer
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000970 - NEComparisonOperationKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000971 - @ref NEConvolutionLayer
972 - @ref NEDepthwiseConvolutionLayer
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100973 - NEDepthwiseConvolutionLayer3x3Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100974 - NEDirectConvolutionLayerOutputStageKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000975 - @ref NEElementwiseComparison
976 - @ref NEElementwiseMax
977 - @ref NEElementwiseMin
978 - @ref NEElementwiseSquaredDiff
979 - @ref NEFullyConnectedLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +0100980 - NEGEMMMatrixVectorMultiplyKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000981 - @ref NEPixelWiseMultiplication
982 - @ref NEPoolingLayer
983 - @ref NEPReluLayer
984 - Added support for QSYMM8_PER_CHANNEL in:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100985 - NEDepthwiseConvolutionLayer3x3Kernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000986 - Added support for split sizes in:
987 - @ref CLSplit
988 - @ref NESplit
989 - New OpenCL kernels / functions:
990 - @ref CLFill
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100991 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000992 - New Arm® Neon™ kernels / functions:
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000993 - @ref NEFill
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100994 - NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000995 - Deprecated Arm® Neon™ functions / interfaces:
Manuel Bottini387259a2020-05-21 17:14:36 +0100996 - CLDepthwiseConvolutionLayer3x3
997 - NEDepthwiseConvolutionLayerOptimized
998 - PoolingLayerInfo constructors without Data Layout.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000999 - Added support for quantization with multiplier greater than 1 on Arm® Neon™ and CL.
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +00001000 - Added support for quantized inputs of type QASYMM8_SIGNED and QASYMM8 to @ref CLQuantizationLayer.
1001 - Added the ability to build bootcode for bare metal.
1002 - Added support for generating synthetic QASYMM8 graphs.
1003 - Added support for F16 datatype in VGG16.
1004 - Removed pre-built binaries for GLES.
1005
Michele Di Giorgiod374ff22020-01-21 10:03:20 +00001006v19.11.1 Public maintenance release
1007 - Fix offset calculation in NEReductionOperationKernel.
1008 - Fix data layout in NEScaleKernel for nhwc.
1009 - Retain configuration step data layout to avoid side-effects.
1010 - Perform sqrt in double domain for L2 pooling.
1011 - Fix output shape calculation for Reduce Mean
1012 - Restrict cases where optimized NEPadLayer runs.
1013
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001014v19.11 Public major release
SiCong Lica1f98c2019-11-28 11:06:11 +00001015 - Various bug fixes.
1016 - Various optimisations.
SiCong Li1f7f9882019-11-28 14:59:35 +00001017 - Updated recommended NDK version to r17c.
SiCong Lica1f98c2019-11-28 11:06:11 +00001018 - Deprecated OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001019 - CLDepthwiseConvolutionLayerReshapeWeightsGenericKernel
1020 - CLDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +00001021 - CLDepthwiseSeparableConvolutionLayer
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001022 - CLDepthwiseVectorToTensorKernel
1023 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001024 - Deprecated Arm® Neon™ kernels / functions:
Giorgio Arenad93e2632019-10-15 11:09:33 +01001025 - NEDepthwiseWeightsReshapeKernel
1026 - NEDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +00001027 - NEDepthwiseSeparableConvolutionLayer
Giorgio Arenad93e2632019-10-15 11:09:33 +01001028 - NEDepthwiseVectorToTensorKernel
Manuel Bottini05069f02019-09-26 17:18:26 +01001029 - NEDepthwiseConvolutionLayer3x3
SiCong Lica1f98c2019-11-28 11:06:11 +00001030 - New OpenCL kernels / functions:
1031 - @ref CLInstanceNormalizationLayerKernel / @ref CLInstanceNormalizationLayer
1032 - @ref CLDepthwiseConvolutionLayerNativeKernel to replace the old generic depthwise convolution (see Deprecated
1033 OpenCL kernels / functions)
1034 - @ref CLLogSoftmaxLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001035 - New Arm® Neon™ kernels / functions:
SiCong Lica1f98c2019-11-28 11:06:11 +00001036 - @ref NEBoundingBoxTransformKernel / @ref NEBoundingBoxTransform
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +00001037 - @ref NEComputeAllAnchorsKernel / NEComputeAllAnchors
SiCong Lica1f98c2019-11-28 11:06:11 +00001038 - @ref NEDetectionPostProcessLayer
1039 - @ref NEGenerateProposalsLayer
1040 - @ref NEInstanceNormalizationLayerKernel / @ref NEInstanceNormalizationLayer
1041 - @ref NELogSoftmaxLayer
1042 - @ref NEROIAlignLayerKernel / @ref NEROIAlignLayer
1043 - Added QASYMM8 support for:
1044 - @ref CLGenerateProposalsLayer
1045 - @ref CLROIAlignLayer
1046 - @ref CPPBoxWithNonMaximaSuppressionLimit
1047 - Added QASYMM16 support for:
1048 - @ref CLBoundingBoxTransform
1049 - Added FP16 support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001050 - CLGEMMMatrixMultiplyReshapedKernel
SiCong Lica1f98c2019-11-28 11:06:11 +00001051 - Added new data type QASYMM8_PER_CHANNEL support for:
Manuel Bottini9e73c932021-03-02 17:40:42 +00001052 - CLDequantizationLayer
SiCong Lica1f98c2019-11-28 11:06:11 +00001053 - @ref NEDequantizationLayer
1054 - Added new data type QSYMM8_PER_CHANNEL support for:
1055 - @ref CLConvolutionLayer
1056 - @ref NEConvolutionLayer
1057 - @ref CLDepthwiseConvolutionLayer
1058 - @ref NEDepthwiseConvolutionLayer
1059 - Added FP16 mixed-precision support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001060 - CLGEMMMatrixMultiplyReshapedKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +00001061 - CLPoolingLayerKernel
SiCong Lica1f98c2019-11-28 11:06:11 +00001062 - Added FP32 and FP16 ELU activation for:
1063 - @ref CLActivationLayer
1064 - @ref NEActivationLayer
1065 - Added asymmetric padding support for:
1066 - @ref CLDirectDeconvolutionLayer
1067 - @ref CLGEMMDeconvolutionLayer
1068 - @ref NEDeconvolutionLayer
1069 - Added SYMMETRIC and REFLECT modes for @ref CLPadLayerKernel / @ref CLPadLayer.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001070 - Replaced the calls to NECopyKernel and NEMemsetKernel with @ref NEPadLayer in @ref NEGenerateProposalsLayer.
1071 - Replaced the calls to CLCopyKernel and CLMemsetKernel with @ref CLPadLayer in @ref CLGenerateProposalsLayer.
SiCong Lica1f98c2019-11-28 11:06:11 +00001072 - Improved performance for CL Inception V3 - FP16.
1073 - Improved accuracy for CL Inception V3 - FP16 by enabling FP32 accumulator (mixed-precision).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001074 - Improved Arm® Neon™ performance by enabling fusing batch normalization with convolution and depth-wise convolution layer.
1075 - Improved Arm® Neon™ performance for MobileNet-SSD by improving the output detection performance.
SiCong Lica1f98c2019-11-28 11:06:11 +00001076 - Optimized @ref CLPadLayer.
1077 - Optimized CL generic depthwise convolution layer by introducing @ref CLDepthwiseConvolutionLayerNativeKernel.
1078 - Reduced memory consumption by implementing weights sharing.
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001079
Michele Di Giorgiod374ff22020-01-21 10:03:20 +00001080v19.08.1 Public maintenance release
1081 - Fix offset calculation in NEReductionOperationKernel.
1082 - Fix data layout in NEScaleKernel for nhwc.
1083 - Retain configuration step data layout to avoid side-effects.
1084 - Perform sqrt in double domain for L2 pooling.
1085 - Fix output shape calculation for Reduce Mean
1086 - Fix broadcast CLPixelwiseMultiplication with 5D tensors
1087
Georgios Pinitas3d13af82019-06-04 13:04:16 +01001088v19.08 Public major release
1089 - Various bug fixes.
1090 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001091 - Deprecated Arm® Neon™ functions
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001092 - NEDepthConcatenateLayer
1093 - NEWidthConcatenateLayer
1094 - Deprecated OpenCL kernels / functions
1095 - CLDepthConcatenateLayer
1096 - CLGEMMInterleave4x4Kernel / CLGEMMInterleave4x4
1097 - CLGEMMTranspose1xWKernel / CLGEMMTranspose1xW
1098 - CLWidthConcatenateLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001099 - New Arm® Neon™ kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001100 - @ref NEAbsLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001101 - @ref NECast
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001102 - @ref NEElementwisePower
1103 - @ref NELogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001104 - @ref NELSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001105 - @ref NENegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001106 - @ref NEPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001107 - @ref NESinLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001108 - NEBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001109 - @ref NEDepthToSpaceLayerKernel / @ref NEDepthToSpaceLayer
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01001110 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottiniae58bdf2021-06-17 17:18:45 +01001111 - NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001112 - @ref NEMeanStdDevNormalizationKernel / @ref NEMeanStdDevNormalizationLayer
1113 - @ref NESpaceToDepthLayerKernel / @ref NESpaceToDepthLayer
1114 - New OpenCL kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001115 - @ref CLAbsLayer
1116 - @ref CLElementwisePower
1117 - @ref CLLogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001118 - @ref CLLSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001119 - @ref CLNegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001120 - @ref CLPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001121 - @ref CLSinLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001122 - CLBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001123 - @ref CLDepthToSpaceLayerKernel / @ref CLDepthToSpaceLayer
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001124 - CLGEMMLowpMatrixMultiplyNativeKernel
Michele Di Giorgioba14c922020-10-12 13:27:57 +01001125 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001126 - CLGEMMMatrixMultiplyNativeKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001127 - CLMeanStdDevNormalizationKernel /CLMeanStdDevNormalizationLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001128 - @ref CLSpaceToDepthLayerKernel / @ref CLSpaceToDepthLayer
1129 - New examples:
1130 - neon_opticalflow
1131 - cl_cache
1132 - neon_permute
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001133 - Added support for FP16 in @ref NEDeconvolutionLayer
1134 - Added support for FP16 in @ref CLDeconvolutionLayer
1135 - Added support for REDUCE_MIN and REDUCE_MAX in @ref ReductionOperation
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001136 - Enable the fusion of batch normalization with convolution and depthwise convolution layer for FP32 in the graph API (OpenCL only)
1137 - Added support for fusing activation function and broadcast addition with the matrix multiplication for FP32 (OpenCL only)
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001138 - Re-factored the depthwise convolution layer kernel on Arm® Neon™ for generic cases
Jakub Sujakee301b32021-06-04 09:46:08 +01001139 - Added an optimized depthwise convolution layer kernel for 5x5 filters (Neon™ only)
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001140 - Added support to enable OpenCL kernel cache. Added example showing how to load the prebuilt OpenCL kernels from a binary cache file
1141 - Altered @ref QuantizationInfo interface to support per-channel quantization.
Manuel Bottini387259a2020-05-21 17:14:36 +01001142 - The CLDepthwiseConvolutionLayer3x3 will be included by @ref CLDepthwiseConvolutionLayer to accommodate for future optimizations.
1143 - The NEDepthwiseConvolutionLayerOptimized will be included by @ref NEDepthwiseConvolutionLayer to accommodate for future optimizations.
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001144 - Removed inner_border_right and inner_border_top parameters from @ref CLDeconvolutionLayer interface
1145 - Removed inner_border_right and inner_border_top parameters from @ref NEDeconvolutionLayer interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001146 - Optimized the Arm® Neon™ assembly kernel for GEMMLowp. The new implementation fuses the output stage and quantization with the matrix multiplication kernel
Georgios Pinitas3d13af82019-06-04 13:04:16 +01001147
Michalis Spyroua9c44722019-04-05 17:18:36 +01001148v19.05 Public major release
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001149 - Various bug fixes.
1150 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001151 - New Arm® Neon™ kernels / functions:
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001152 - @ref NEBatchToSpaceLayerKernel / @ref NEBatchToSpaceLayer
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001153 - NEComplexPixelWiseMultiplicationKernel / @ref NEComplexPixelWiseMultiplication
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001154 - @ref NECropKernel / @ref NECropResize
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01001155 - NEDepthwiseConvolutionAssemblyDispatch
Michalis Spyrouca82e622019-05-10 16:43:20 +01001156 - @ref NEFFTDigitReverseKernel
1157 - @ref NEFFTRadixStageKernel
1158 - @ref NEFFTScaleKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001159 - NEGEMMLowpOffsetContributionOutputStageKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001160 - NEHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001161 - @ref NESpaceToBatchLayerKernel / @ref NESpaceToBatchLayer
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001162 - @ref NEFFT1D
1163 - @ref NEFFT2D
1164 - @ref NEFFTConvolutionLayer
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001165 - New OpenCL kernels / functions:
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001166 - CLComplexPixelWiseMultiplicationKernel / @ref CLComplexPixelWiseMultiplication
Sheri Zhang7e20e292021-02-02 11:49:34 +00001167 - CLCropKernel / @ref CLCropResize
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001168 - @ref CLDeconvolutionReshapeOutputKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001169 - @ref CLFFTDigitReverseKernel
1170 - @ref CLFFTRadixStageKernel
1171 - @ref CLFFTScaleKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001172 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001173 - CLGEMMMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001174 - CLHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001175 - @ref CLDirectDeconvolutionLayer
1176 - @ref CLFFT1D
1177 - @ref CLFFT2D
1178 - @ref CLFFTConvolutionLayer
Michalis Spyrouca82e622019-05-10 16:43:20 +01001179 - @ref CLGEMMDeconvolutionLayer
1180 - New OpenGLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001181 - GCConcatenateLayer
Michalis Spyroua9c44722019-04-05 17:18:36 +01001182 - Deprecated functions/interfaces
Georgios Pinitas09f24972019-05-17 18:14:40 +01001183 - GCDepthConcatenateLayer
1184 - NEWidthConcatenateLayer
1185 - NEDepthConcatenateLayer
1186 - CLWidthConcatenateLayer
1187 - CLDepthConcatenateLayer
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001188 - CLGEMMInterleave4x4
1189 - CLGEMMTranspose1xW
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001190 - Support different quantization info in CLConcatLayer.
1191 - Add checks on different input/output quantization info were not supported.
1192 - Tensors have different quantization information.
1193 - Add FP16 support checks.
1194 - Fix output quantization CLDeptwiseConv3x3 when activation is fused.
1195 - New graph examples:
1196 - graph_convolution
1197 - graph_fully_connected
1198 - graph_depthwise_convolution
1199 - Deepspeech v0.4.1
1200 - Add support for QASYMM8 in NEArithmeticSubtractionKernel.
1201 - Add support for QASYMM8 in NEPixelWiseMultiplicationKernel.
1202 - Add support for QASYMM8 NEDeconvolution.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001203 - Add support for DequantizationLayer for Neon/CL.
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001204 - Add support for dilation in CLDepthwiseConvolution.
1205 - Fuse offset contribution with the output stage when we use NEGEMMLowpMatrixMultiplyCore.
1206 - Optimize CLDeconvolution.
1207 - Add StackLayer to the graph API.
1208 - Add support for "reflect" padding mode in NEPad.
1209 - Winograd 7x7 NHWC on OpenCL.
1210 - Rework CL ML layers to run exclusively on CL.
1211 - Support different quantization info in PoolingLayer.
1212 - Implement and test import memory interfaces.
1213 - Added new tests and removed old ones.
1214 - Various clang-tidy fixes.
Michalis Spyroua9c44722019-04-05 17:18:36 +01001215
giuros01a69a88b2019-01-31 16:29:19 +00001216v19.02 Public major release
Isabella Gottardi62538972019-02-12 19:52:44 +00001217 - Various bug fixes.
1218 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001219 - New Arm® Neon™ kernels / functions:
Isabella Gottardi62538972019-02-12 19:52:44 +00001220 - @ref NETileKernel / @ref NETile
1221 - @ref NEFuseBatchNormalizationKernel / @ref NEFuseBatchNormalization
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001222 - NEElementwiseOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001223 - @ref NEElementwiseMax
1224 - @ref NEElementwiseMin
1225 - @ref NEElementwiseSquaredDiff
1226 - @ref NESelectKernel / @ref NESelect
1227 - @ref NESplit
1228 - @ref NESlice
1229 - @ref NEUnstack
1230 - @ref NEStridedSliceKernel / @ref NEStridedSlice
Sang-Hoon Park7249f152021-01-22 11:55:03 +00001231 - NEElementwiseUnaryKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001232 - @ref NERsqrtLayer
1233 - @ref NEExpLayer
1234 - @ref NEReverseKernel / @ref NEReverse
1235 - @ref NEArgMinMaxLayer
1236 - @ref NEStackLayerKernel / @ref NEStackLayer
1237 - @ref NERangeKernel / @ref NERange
1238 - @ref NEPadLayer
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001239 - NEMemsetKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001240 - @ref NEGatherKernel / @ref NEGather
1241 - @ref NEElementwiseComparison
1242 - @ref NEElementwiseComparisonStatic
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001243 - NEComparisonOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001244 - @ref NEElementwiseDivision
1245 - New OpenCL kernels / functions:
1246 - @ref CLSelectKernel / @ref CLSelect
1247 - @ref CLTileKernel / @ref CLTile
1248 - @ref CLComparisonKernel / @ref CLComparison
1249 - @ref CLArgMinMaxLayer
1250 - @ref CLElementwiseMax
1251 - @ref CLElementwiseMin
1252 - @ref CLElementwiseSquaredDiff
1253 - @ref CLStackLayerKernel / @ref CLStackLayer
1254 - @ref CLReverse / @ref CLReverseKernel
1255 - @ref CLRsqrtLayer
1256 - @ref CLExpLayer
Michele Di Giorgioc9c89052021-01-26 10:20:17 +00001257 - CLElementWiseUnaryLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001258 - CLGEMMReshapeLHSMatrixKernel
1259 - CLGEMMReshapeRHSMatrixKernel
1260 - CLGEMMMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001261 - @ref CLRangeKernel / @ref CLRange
1262 - @ref CLUnstack
1263 - @ref CLGatherKernel / @ref CLGather
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001264 - CLGEMMLowpMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001265 - New CPP kernels / functions:
1266 - @ref CPPDetectionOutputLayer
1267 - @ref CPPTopKV / @ref CPPTopKVKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001268 - Added new examples:
1269 - graph_ssd_mobilenet.cpp
1270 - graph_mobilenet_v2.cpp
1271 - graph_resnet12.cpp
1272 - graph_srcnn955.cpp
1273 - graph_vgg_vdsr.cpp
1274 - graph_inception_resnet_v1.cpp
1275 - Add 4D tensors support to
1276 - @ref NESoftmaxLayer
1277 - Fused activation in @ref CLWinogradConvolutionLayer
Jakub Sujakee301b32021-06-04 09:46:08 +01001278 - Extended @ref NEPermute to support more cases
1279 - Added Neon™/SVE GEMM Hybrid kernels
Isabella Gottardi62538972019-02-12 19:52:44 +00001280 - Added u8 and s8 hybrid assembly kernels
1281 - Introduced GEMM strategy name in NEGEMMAssemblyWrapper
1282 - Improved @ref CLTuner
1283 - Fused the bias addition within @ref CLGEMM
1284 - Added support for QASYMM8 LOGISTIC activation in @ref NEActivationLayer
1285 - Added NHWC data layout support to:
1286 - @ref NEScale for F16
1287 - @ref CLNormalizationLayer IN_MAP_2D for FP32/FP16
1288 - @ref NEL2NormalizeLayer for FP32/FP16
1289 - @ref NENormalizationLayer IN_MAP_2D for FP32/FP16
1290 - @ref CLROIAlignLayer
Manuel Bottini5209be52019-02-13 16:34:56 +00001291 - @ref CLGenerateProposalsLayer
Isabella Gottardi62538972019-02-12 19:52:44 +00001292 - Added QASYMM8 support to the following kernels:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001293 - NEArithmeticAdditionKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001294 - @ref NEScale
1295 - Added new tests and improved validation and benchmarking suites.
giuros01a69a88b2019-01-31 16:29:19 +00001296 - Deprecated functions/interfaces
1297 - Usage of inner_border_right and inner_border_top has been deprecated in @ref CLDeconvolutionLayer and @ref NEDeconvolutionLayer
1298
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001299v18.11 Public major release
1300 - Various bug fixes.
1301 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001302 - New Arm® Neon™ kernels / functions:
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001303 - @ref NEChannelShuffleLayer / @ref NEChannelShuffleLayerKernel
1304 - @ref NEReduceMean
1305 - @ref NEReorgLayer / @ref NEReorgLayerKernel
1306 - @ref NEPriorBoxLayer / @ref NEPriorBoxLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001307 - NEUpsampleLayer / NEUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001308 - NEYOLOLayer / NEYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001309 - New OpenCL kernels / functions:
1310 - @ref CLBatchToSpaceLayer / @ref CLBatchToSpaceLayerKernel
1311 - @ref CLBoundingBoxTransform / @ref CLBoundingBoxTransformKernel
Manuel Bottini5209be52019-02-13 16:34:56 +00001312 - @ref CLComputeAllAnchorsKernel
1313 - @ref CLGenerateProposalsLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001314 - @ref CLNormalizePlanarYUVLayer / @ref CLNormalizePlanarYUVLayerKernel
1315 - @ref CLReorgLayer / @ref CLReorgLayerKernel
1316 - @ref CLSpaceToBatchLayer / @ref CLSpaceToBatchLayerKernel
1317 - @ref CLPadLayer
1318 - @ref CLReduceMean
1319 - @ref CLPriorBoxLayer / @ref CLPriorBoxLayerKernel
1320 - @ref CLROIAlignLayer / @ref CLROIAlignLayerKernel
1321 - @ref CLSlice
1322 - @ref CLSplit
1323 - @ref CLStridedSlice / @ref CLStridedSliceKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001324 - CLUpsampleLayer / CLUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001325 - CLYOLOLayer / CLYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001326 - New CPP kernels / functions:
1327 - @ref CPPBoxWithNonMaximaSuppressionLimit / @ref CPPBoxWithNonMaximaSuppressionLimitKernel
1328 - Added the validate method in:
1329 - @ref NEDepthConvertLayer
1330 - @ref NEFloor / @ref CLFloor
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001331 - NEGEMMMatrixAdditionKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001332 - @ref NEReshapeLayer / @ref CLReshapeLayer
1333 - @ref CLScale
1334 - Added new examples:
1335 - graph_shufflenet.cpp
1336 - graph_yolov3.cpp
1337 - Added documentation for add a new function or kernel.
1338 - Improved doxygen documentation adding a list of the existing functions.
1339 - Add 4D tensors support to
Georgios Pinitas09f24972019-05-17 18:14:40 +01001340 - CLWidthConcatenateLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001341 - CLFlattenLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001342 - @ref CLSoftmaxLayer
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001343 - Add dot product support for CLDepthwiseConvolutionLayer3x3NHWCKernel non-unit stride
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001344 - Add SVE support
1345 - Fused batch normalization into convolution layer weights in @ref CLFuseBatchNormalization
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001346 - Fuses activation in CLDepthwiseConvolutionLayer3x3NCHWKernel, CLDepthwiseConvolutionLayer3x3NHWCKernel and @ref NEGEMMConvolutionLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001347 - Added NHWC data layout support to:
1348 - @ref CLChannelShuffleLayer
1349 - @ref CLDeconvolutionLayer
1350 - @ref CLL2NormalizeLayer
1351 - Added QASYMM8 support to the following kernels:
Manuel Bottini3b131ab2021-02-19 18:16:44 +00001352 - CLScaleKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001353 - NEDepthwiseConvolutionLayer3x3Kernel
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001354 - CLPixelWiseMultiplicationKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001355 - Added FP16 support to the following kernels:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001356 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001357 - NEDepthwiseConvolutionLayer3x3Kernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001358 - @ref CLNormalizePlanarYUVLayerKernel
1359 - @ref CLWinogradConvolutionLayer (5x5 kernel)
1360 - More tests added to both validation and benchmarking suites.
1361
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001362v18.08 Public major release
1363 - Various bug fixes.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001364 - Various optimisations.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001365 - Updated recommended NDK version to r17b.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001366 - Removed support for QS8/QS16 data types.
1367 - Added support for grouped convolution in @ref CLConvolutionLayer.
1368 - Added NHWC data layout support to:
Georgios Pinitas09f24972019-05-17 18:14:40 +01001369 - NEDepthConcatenateLayer / CLDepthConcatenateLayer
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001370 - @ref NEWinogradConvolutionLayer / @ref CLWinogradConvolutionLayer
1371 - @ref CLDepthwiseConvolutionLayer
1372 - @ref CLDirectConvolutionLayer
1373 - @ref CLConvolutionLayer
1374 - @ref CLScale
Manuel Bottinid844c082021-07-14 12:58:54 +01001375 - CLIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001376 - New Arm® Neon™ kernels / functions:
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001377 - @ref NERNNLayer
1378 - New OpenCL kernels / functions:
1379 - @ref CLArithmeticDivision
1380 - Introduced prepare() stage support in the graph API for GLES.
1381 - Added support for memory reusage when trying to allocate smaller CLTensors.
1382 - Enabled NHWC execution on graph examples.
1383 - Added JPEG accessor for validation purposes.
1384 - Added validate methods to some kernels / functions.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001385
1386v18.05 Public major release
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001387 - Various bug fixes.
1388 - Various optimisations.
Jakub Sujakee301b32021-06-04 09:46:08 +01001389 - Major redesign in the interface for the Neon™ kernels implemented in assembly.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001390 - Removed arm_compute::NEGEMMLowpAArch64A53Kernel / arm_compute::NEGEMMLowpAArch64Kernel / arm_compute::NEGEMMLowpAArch64V8P4Kernel / arm_compute::NEGEMMInterleavedBlockedKernel / arm_compute::NEGEMMLowpAssemblyMatrixMultiplyCore / arm_compute::NEHGEMMAArch64FP16Kernel
Jakub Sujakee301b32021-06-04 09:46:08 +01001391 - Added NEGEMMAssemblyWrapper and AssemblyKernelGlue which are used to execute assembly kernels in Neon™ functions.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001392 - Minor changes to the CPUInfo type to make it compatible with the new assembly gemm interface.
Jakub Sujakee301b32021-06-04 09:46:08 +01001393 - Moved Neon™ assembly kernels to the folder src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001394 - Improved doxygen documentation.
1395 - Improved memory management for layer's transitions.
1396 - Added support for NHWC data layout in tensors.
1397 - Added NHWC data layout support to:
1398 - @ref NEGEMMConvolutionLayer
1399 - @ref NEDirectConvolutionLayer
1400 - @ref NEPoolingLayer / @ref CLPoolingLayer
1401 - @ref NEBatchNormalizationLayer / @ref CLBatchNormalizationLayer
1402 - @ref NEDepthwiseConvolutionLayer
1403 - @ref NEScale
Georgios Pinitasf7c5a412020-12-03 14:38:33 +00001404 - NEIm2Col
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001405 - Added support for dilated convolutions in @ref NEConvolutionLayer and @ref CLConvolutionLayer.
1406 - New OpenCL kernels / functions:
1407 - @ref CLChannelShuffleLayer / @ref CLChannelShuffleLayerKernel
Teresa Charlin91b7f742021-04-12 13:57:00 +01001408 - CLConvertFullyConnectedWeightsKernel / @ref CLConvertFullyConnectedWeights
Sheri Zhang7e20e292021-02-02 11:49:34 +00001409 - @ref CLCopy / CLCopyKernel
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001410 - @ref CLLSTMLayer
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001411 - @ref CLRNNLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001412 - CLWidthConcatenateLayer / CLWidthConcatenateLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +01001413 - CLWinogradFilterTransformKernel / @ref CLWinogradConvolutionLayer
1414 - CLWinogradInputTransformKernel / CLWinogradInputTransform
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001415 - New Arm® Neon™ kernels / functions:
Teresa Charlin562bee52021-04-13 17:44:15 +01001416 - NEConvertFullyConnectedWeightsKernel / @ref NEConvertFullyConnectedWeights.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001417 - Created the validate method in @ref CLDepthwiseConvolutionLayer.
1418 - Beta and gamma are no longer mandatory arguments in @ref NEBatchNormalizationLayer and @ref CLBatchNormalizationLayer.
1419 - Added depth multiplier support in @ref NEDepthwiseConvolutionLayer and @ref CLDepthwiseConvolutionLayer.
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001420 - Added broadcast multiply support in @ref NEPixelWiseMultiplication / NEPixelWiseMultiplicationKernel.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001421 - Port mobilenet example to NHWC data layout.
1422 - Enabled Winograd method in @ref CLConvolutionLayer.
1423 - Renamed NEWinogradLayer to @ref NEWinogradConvolutionLayer.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001424 - Updated @ref NEWinogradConvolutionLayer to use highly optimised assembly kernels in src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001425 - Added memory manager support in GLES functions.
1426 - Major refactoring of the graph API.
1427 - Added GLES backend in the graph API.
1428 - Added support for the memory manager in the graph API.
1429 - Enabled Winograd Convolution method in the graph API.
1430 - Added support for grouped convolutions in the graph API.
Manuel Bottini10b38262021-02-19 18:16:44 +00001431 - Replaced NEDeconvolutionLayerUpsampleKernel with NEScaleKernel in @ref NEDeconvolutionLayer.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001432 - Added fast maths flag in @ref CLConvolutionLayer.
1433 - Added new tests and benchmarks in validation and benchmark frameworks
Jakub Sujakee301b32021-06-04 09:46:08 +01001434 - Merge Activation layer with Convolution Layer (Neon™, CL, GLES)
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001435 - Added support to OpenCL 2.0 SVM
1436 - Added support to import memory in OpenCL tensors.
1437 - Added the prepare() method to perform any one off pre-processing before running the function.
1438 - Added new examples:
1439 - graph_inception_v4.cpp
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001440 - graph_resnext50.cpp
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001441 - Added memory measurement instrument for CL.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001442
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001443v18.03 Public maintenance release
1444 - Various bug fixes.
Anthony Barbier3762e742018-03-02 11:49:33 +00001445 - Fixed bug in @ref NEActivationLayer
1446 - Fix in @ref CLTuner when using batches.
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001447 - Updated recommended NDK version to r16b (And fixed warnings).
1448 - Fixed bug in validation code.
1449 - Added Inception v4 graph example.
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001450 - Renamed NEWinogradLayer.cpp to @ref NEWinogradConvolutionLayer
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001451
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001452v18.02 Public major release
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001453 - Various Arm® Neon™ / OpenCL / GLES optimisations.
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001454 - Various bug fixes.
1455 - Changed default number of threads on big LITTLE systems.
1456 - Refactored examples and added:
1457 - graph_mobilenet_qassym8
1458 - graph_resnet
1459 - graph_squeezenet_v1_1
Anthony Barbier3762e742018-03-02 11:49:33 +00001460 - Renamed @ref CLConvolutionLayer into @ref CLGEMMConvolutionLayer and created a new @ref CLConvolutionLayer to select the fastest convolution method.
1461 - 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 +00001462 - Added in place support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001463 - @ref CLActivationLayer
1464 - @ref CLBatchNormalizationLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001465 - Added QASYMM8 support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001466 - @ref CLActivationLayer
1467 - @ref CLDepthwiseConvolutionLayer
1468 - @ref NEDepthwiseConvolutionLayer
1469 - @ref NESoftmaxLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001470 - Added FP16 support to:
Manuel Bottini387259a2020-05-21 17:14:36 +01001471 - CLDepthwiseConvolutionLayer3x3
Anthony Barbier3762e742018-03-02 11:49:33 +00001472 - @ref CLDepthwiseConvolutionLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001473 - Added broadcasting support to NEArithmeticAddition / @ref CLArithmeticAddition / @ref CLPixelWiseMultiplication
Anthony Barbier3762e742018-03-02 11:49:33 +00001474 - Added fused batched normalization and activation to @ref CLBatchNormalizationLayer and @ref NEBatchNormalizationLayer
1475 - Added support for non-square pooling to @ref NEPoolingLayer and @ref CLPoolingLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001476 - New OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001477 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001478 - New Arm® Neon™ kernels / functions
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001479 - Added name() method to all kernels.
1480 - Added support for Winograd 5x5.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001481 - NEPermuteKernel / @ref NEPermute
Michalis Spyrou96f977e2021-07-01 12:20:56 +01001482 - CpuWinogradConv2dTransformInputKernel / NEWinogradLayer
1483 - CpuWinogradConv2dTransformOutputKernel / NEWinogradLayer
1484 - CpuWinogradConv2dTransformWeightsKernel / NEWinogradLayer
Anthony Barbiere1553372018-07-16 18:53:52 +01001485 - Renamed NEWinogradLayerKernel into NEWinogradLayerBatchedGEMMKernel
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001486 - New GLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001487 - GCTensorShiftKernel / GCTensorShift
Pablo Tellof6c572c2018-02-14 12:47:30 +00001488
Anthony Barbier64c95a02018-01-22 18:48:55 +00001489v18.01 Public maintenance release
1490 - Various bug fixes
1491 - Added some of the missing validate() methods
Anthony Barbier3762e742018-03-02 11:49:33 +00001492 - Added @ref CLDeconvolutionLayerUpsampleKernel / @ref CLDeconvolutionLayer @ref CLDeconvolutionLayerUpsample
Sheri Zhang7e20e292021-02-02 11:49:34 +00001493 - Added CLPermuteKernel / @ref CLPermute
Anthony Barbier64c95a02018-01-22 18:48:55 +00001494 - Added method to clean the programs cache in the CL Kernel library.
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001495 - Added GCArithmeticAdditionKernel / GCArithmeticAddition
1496 - Added GCDepthwiseConvolutionLayer3x3Kernel / GCDepthwiseConvolutionLayer3x3
1497 - Added GCNormalizePlanarYUVLayerKernel / GCNormalizePlanarYUVLayer
1498 - Added GCScaleKernel / GCScale
1499 - Added GCWeightsReshapeKernel / GCConvolutionLayer
Anthony Barbier64c95a02018-01-22 18:48:55 +00001500 - Added FP16 support to the following GLES compute kernels:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001501 - GCCol2ImKernel
1502 - GCGEMMInterleave4x4Kernel
1503 - GCGEMMTranspose1xWKernel
1504 - GCIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001505 - Refactored Arm® Neon™ Winograd (NEWinogradLayerKernel)
Manuel Bottini327225d2021-04-13 13:09:30 +01001506 - Added NEDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001507 - Added QASYMM8 support to the following Arm® Neon™ kernels:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001508 - NEDepthwiseConvolutionLayer3x3Kernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001509 - @ref NEFillBorderKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +00001510 - NEPoolingLayerKernel
Anthony Barbier64c95a02018-01-22 18:48:55 +00001511 - Added new examples:
1512 - graph_cl_mobilenet_qasymm8.cpp
1513 - graph_inception_v3.cpp
1514 - gc_dc.cpp
1515 - More tests added to both validation and benchmarking suites.
1516
Gian Marcoff850932017-12-11 12:37:17 +00001517v17.12 Public major release
1518 - Most machine learning functions on OpenCL support the new data type QASYMM8
1519 - Introduced logging interface
1520 - Introduced opencl timer
1521 - Reworked GEMMLowp interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001522 - Added new Arm® Neon™ assembly kernels for GEMMLowp, SGEMM and HGEMM
Gian Marcoff850932017-12-11 12:37:17 +00001523 - Added validation method for most Machine Learning kernels / functions
1524 - Added new graph examples such as googlenet, mobilenet, squeezenet, vgg16 and vgg19
1525 - Added sgemm example for OpenCL
1526 - Added absolute difference example for GLES compute
1527 - Added new tests and benchmarks in validation and benchmark frameworks
1528 - Added new kernels / functions for GLES compute
1529
1530 - New OpenGL ES kernels / functions
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001531 - GCAbsoluteDifferenceKernel / GCAbsoluteDifference
1532 - GCActivationLayerKernel / GCActivationLayer
1533 - GCBatchNormalizationLayerKernel / GCBatchNormalizationLayer
1534 - GCCol2ImKernel
1535 - GCDepthConcatenateLayerKernel / GCDepthConcatenateLayer
1536 - GCDirectConvolutionLayerKernel / GCDirectConvolutionLayer
1537 - GCDropoutLayerKernel / GCDropoutLayer
1538 - GCFillBorderKernel / GCFillBorder
1539 - GCGEMMInterleave4x4Kernel / GCGEMMInterleave4x4
1540 - GCGEMMMatrixAccumulateBiasesKernel / GCGEMMMatrixAdditionKernel / GCGEMMMatrixMultiplyKernel / GCGEMM
1541 - GCGEMMTranspose1xWKernel / GCGEMMTranspose1xW
1542 - GCIm2ColKernel
1543 - GCNormalizationLayerKernel / GCNormalizationLayer
1544 - GCPixelWiseMultiplicationKernel / GCPixelWiseMultiplication
1545 - GCPoolingLayerKernel / GCPoolingLayer
1546 - GCLogits1DMaxKernel / GCLogits1DShiftExpSumKernel / GCLogits1DNormKernel / GCSoftmaxLayer
1547 - GCTransposeKernel / GCTranspose
Gian Marcoff850932017-12-11 12:37:17 +00001548
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001549 - New Arm® Neon™ kernels / functions
Pablo Telloeb82fd22018-02-23 13:43:50 +00001550 - arm_compute::NEGEMMLowpAArch64A53Kernel / arm_compute::NEGEMMLowpAArch64Kernel / arm_compute::NEGEMMLowpAArch64V8P4Kernel / arm_compute::NEGEMMInterleavedBlockedKernel / arm_compute::NEGEMMLowpAssemblyMatrixMultiplyCore
1551 - arm_compute::NEHGEMMAArch64FP16Kernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001552 - NEDepthwiseConvolutionLayer3x3Kernel / NEDepthwiseIm2ColKernel / NEGEMMMatrixVectorMultiplyKernel / NEDepthwiseVectorToTensorKernel / @ref NEDepthwiseConvolutionLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001553 - NEGEMMLowpOffsetContributionKernel / NEGEMMLowpMatrixAReductionKernel / NEGEMMLowpMatrixBReductionKernel / NEGEMMLowpMatrixMultiplyCore
Manuel Bottiniae58bdf2021-06-17 17:18:45 +01001554 - NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001555 - NEWinogradLayer / NEWinogradLayerKernel
Gian Marcoff850932017-12-11 12:37:17 +00001556
1557 - New OpenCL kernels / functions
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001558 - CLGEMMLowpOffsetContributionKernel / CLGEMMLowpMatrixAReductionKernel / CLGEMMLowpMatrixBReductionKernel / CLGEMMLowpMatrixMultiplyCore
1559 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Gian Marcoff850932017-12-11 12:37:17 +00001560
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001561 - New graph nodes for Arm® Neon™ and OpenCL
Georgios Pinitasd9eb2752018-04-03 13:44:29 +01001562 - graph::BranchLayer
1563 - graph::DepthConvertLayer
1564 - graph::DepthwiseConvolutionLayer
1565 - graph::DequantizationLayer
1566 - graph::FlattenLayer
1567 - graph::QuantizationLayer
1568 - graph::ReshapeLayer
Gian Marcoff850932017-12-11 12:37:17 +00001569
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001570v17.10 Public maintenance release
1571 - Bug fixes:
1572 - Check the maximum local workgroup size supported by OpenCL devices
1573 - Minor documentation updates (Fixed instructions to build the examples)
Anthony Barbier3762e742018-03-02 11:49:33 +00001574 - Introduced a graph::GraphContext
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001575 - Added a few new Graph nodes, support for branches and grouping.
1576 - Automatically enable cl_printf in debug builds
1577 - Fixed bare metal builds for armv7a
1578 - Added AlexNet and cartoon effect examples
1579 - 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)
1580
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001581v17.09 Public major release
1582 - Experimental Graph support: initial implementation of a simple stream API to easily chain machine learning layers.
Anthony Barbier3762e742018-03-02 11:49:33 +00001583 - 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 +01001584 - New validation and benchmark frameworks (Boost and Google frameworks replaced by homemade framework).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001585 - Most machine learning functions support both fixed point 8 and 16 bit (QS8, QS16) for both Arm® Neon™ and OpenCL.
1586 - New Arm® Neon™ kernels / functions:
Pablo Telloeb82fd22018-02-23 13:43:50 +00001587 - arm_compute::NEGEMMAssemblyBaseKernel arm_compute::NEGEMMAArch64Kernel
Manuel Bottini00f4dfc2021-03-10 09:55:14 +00001588 - NEDequantizationLayerKernel / @ref NEDequantizationLayer
Georgios Pinitas70eb53b2021-01-06 19:42:21 +00001589 - NEFloorKernel / @ref NEFloor
Anthony Barbier3762e742018-03-02 11:49:33 +00001590 - @ref NEL2NormalizeLayerKernel / @ref NEL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001591 - NEQuantizationLayerKernel NEMinMaxLayerKernel / @ref NEQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001592 - @ref NEROIPoolingLayerKernel / @ref NEROIPoolingLayer
1593 - @ref NEReductionOperationKernel / @ref NEReductionOperation
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001594 - NEReshapeLayerKernel / @ref NEReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001595
1596 - New OpenCL kernels / functions:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001597 - CLDepthwiseConvolutionLayer3x3NCHWKernel CLDepthwiseConvolutionLayer3x3NHWCKernel CLDepthwiseIm2ColKernel CLDepthwiseVectorToTensorKernel CLDepthwiseWeightsReshapeKernel / CLDepthwiseConvolutionLayer3x3 @ref CLDepthwiseConvolutionLayer CLDepthwiseSeparableConvolutionLayer
Manuel Bottini9e73c932021-03-02 17:40:42 +00001598 - CLDequantizationLayerKernel / CLDequantizationLayer
Sheri Zhang1efed922021-03-10 22:43:38 +00001599 - CLDirectConvolutionLayerKernel / @ref CLDirectConvolutionLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001600 - CLFlattenLayer
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001601 - CLFloorKernel / @ref CLFloor
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001602 - CLGEMMTranspose1xW
Michele Di Giorgioee82d342021-01-05 16:14:28 +00001603 - CLGEMMMatrixVectorMultiplyKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001604 - @ref CLL2NormalizeLayerKernel / @ref CLL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001605 - CLQuantizationLayerKernel CLMinMaxLayerKernel / @ref CLQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001606 - @ref CLROIPoolingLayerKernel / @ref CLROIPoolingLayer
1607 - @ref CLReductionOperationKernel / @ref CLReductionOperation
Sheri Zhang7e20e292021-02-02 11:49:34 +00001608 - CLReshapeLayerKernel / @ref CLReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001609
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001610v17.06 Public major release
1611 - Various bug fixes
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001612 - Added support for fixed point 8 bit (QS8) to the various Arm® Neon™ machine learning kernels.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001613 - Added unit tests and benchmarks (AlexNet, LeNet)
1614 - Added support for sub tensors.
1615 - Added infrastructure to provide GPU specific optimisation for some OpenCL kernels.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001616 - Added @ref OMPScheduler (OpenMP) scheduler for Neon
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001617 - Added @ref SingleThreadScheduler scheduler for Arm® Neon™ (For bare metal)
ramelg01b2eba7f2021-12-23 08:32:08 +00001618 - User can specify their own scheduler by implementing the @ref IScheduler interface.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001619 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001620 - @ref CLBatchNormalizationLayerKernel / @ref CLBatchNormalizationLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001621 - CLDepthConcatenateLayerKernel / CLDepthConcatenateLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001622 - CLHOGOrientationBinningKernel CLHOGBlockNormalizationKernel, CLHOGDetectorKernel / CLHOGDescriptor CLHOGDetector CLHOGGradient CLHOGMultiDetection
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001623 - CLLocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedLayer
Manuel Bottinid87aded2021-07-16 10:23:31 +01001624 - CLWeightsReshapeKernel / CLConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001625 - New C++ kernels:
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001626 - CPPDetectionWindowNonMaximaSuppressionKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001627 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001628 - @ref NEBatchNormalizationLayerKernel / @ref NEBatchNormalizationLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001629 - NEDepthConcatenateLayerKernel / NEDepthConcatenateLayer
Manuel Bottini327225d2021-04-13 13:09:30 +01001630 - NEDirectConvolutionLayerKernel / @ref NEDirectConvolutionLayer
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001631 - NELocallyConnectedMatrixMultiplyKernel / NELocallyConnectedLayer
Manuel Bottini29599d02021-07-06 15:01:35 +01001632 - NEWeightsReshapeKernel / NEConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001633
1634v17.05 Public bug fixes release
1635 - Various bug fixes
1636 - Remaining of the functions ported to use accurate padding.
1637 - Library does not link against OpenCL anymore (It uses dlopen / dlsym at runtime instead to determine whether or not OpenCL is available).
1638 - Added "free" method to allocator.
1639 - Minimum version of g++ required for armv7 Linux changed from 4.8 to 4.9
1640
1641v17.04 Public bug fixes release
1642
1643 The following functions have been ported to use the new accurate padding:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001644 - CLColorConvertKernel
1645 - CLEdgeNonMaxSuppressionKernel
1646 - CLEdgeTraceKernel
1647 - CLGaussianPyramidHorKernel
1648 - CLGaussianPyramidVertKernel
1649 - CLGradientKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001650 - NEChannelCombineKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001651 - NEFillArrayKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001652 - NEGaussianPyramidHorKernel
1653 - NEGaussianPyramidVertKernel
Georgios Pinitas09d34512018-08-30 16:02:11 +01001654 - NEHarrisScoreFP16Kernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001655 - NEHarrisScoreKernel
1656 - NEHOGDetectorKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +00001657 - NELogits1DMaxKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001658 - NELogits1DShiftExpSumKernel
1659 - NELogits1DNormKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001660 - NENonMaximaSuppression3x3FP16Kernel
1661 - NENonMaximaSuppression3x3Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001662
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001663v17.03.1 First Major public release of the sources
1664 - Renamed the library to arm_compute
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001665 - New CPP target introduced for C++ kernels shared between Arm® Neon™ and CL functions.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001666 - New padding calculation interface introduced and ported most kernels / functions to use it.
1667 - New OpenCL kernels / functions:
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +01001668 - CLGEMMLowpMatrixMultiplyKernel / CLGEMMLowp
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001669 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001670 - @ref NENormalizationLayerKernel / @ref NENormalizationLayer
Teresa Charlind1dc09c2021-03-04 15:24:45 +00001671 - NETransposeKernel / @ref NETranspose
Michalis Spyrou373b4072021-01-20 16:41:12 +00001672 - NELogits1DMaxKernel, NELogits1DShiftExpSumKernel, NELogits1DNormKernel / @ref NESoftmaxLayer
Manuel Bottini24b89202021-07-01 18:13:33 +01001673 - NEIm2ColKernel, NECol2ImKernel, NEConvolutionLayerWeightsReshapeKernel / @ref NEConvolutionLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +01001674 - NEGEMMMatrixAccumulateBiasesKernel / @ref NEFullyConnectedLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001675 - NEGEMMLowpMatrixMultiplyKernel / NEGEMMLowp
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001676
1677v17.03 Sources preview
1678 - New OpenCL kernels / functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001679 - CLGradientKernel, CLEdgeNonMaxSuppressionKernel, CLEdgeTraceKernel / CLCannyEdge
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001680 - GEMM refactoring + FP16 support: CLGEMMInterleave4x4Kernel, CLGEMMTranspose1xWKernel, CLGEMMMatrixMultiplyKernel, CLGEMMMatrixAdditionKernel / @ref CLGEMM
Michele Di Giorgiof6f78762020-07-06 11:27:21 +01001681 - CLGEMMMatrixAccumulateBiasesKernel / @ref CLFullyConnectedLayer
Teresa Charlin27886092021-02-25 20:15:01 +00001682 - CLTransposeKernel / @ref CLTranspose
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001683 - CLLKTrackerInitKernel, CLLKTrackerStage0Kernel, CLLKTrackerStage1Kernel, CLLKTrackerFinalizeKernel / CLOpticalFlow
Anthony Barbier3762e742018-03-02 11:49:33 +00001684 - @ref CLNormalizationLayerKernel / @ref CLNormalizationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001685 - CLLaplacianPyramid, CLLaplacianReconstruct
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001686 - New Arm® Neon™ kernels / functions:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001687 - NEActivationLayerKernel / @ref NEActivationLayer
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001688 - GEMM refactoring + FP16 support (Requires armv8.2 CPU): NEGEMMInterleave4x4Kernel, NEGEMMTranspose1xWKernel, NEGEMMMatrixMultiplyKernel, NEGEMMMatrixAdditionKernel / @ref NEGEMM
Michele Di Giorgio19289042021-02-03 16:05:00 +00001689 - NEPoolingLayerKernel / @ref NEPoolingLayer
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001690
1691v17.02.1 Sources preview
1692 - New OpenCL kernels / functions:
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +00001693 - CLLogits1DMaxKernel, CLLogits1DShiftExpSumKernel, CLLogits1DNormKernel / @ref CLSoftmaxLayer
Michele Di Giorgioe1314662021-02-01 17:09:32 +00001694 - CLPoolingLayerKernel / @ref CLPoolingLayer
Manuel Bottinid844c082021-07-14 12:58:54 +01001695 - CLIm2ColKernel, CLCol2ImKernel, CLConvolutionLayerWeightsReshapeKernel / CLConvolutionLayer
Adnan AlSinan6863fa02022-02-04 13:04:55 +00001696 - CLRemapKernel / CLRemap
Michalis Spyrou473cb012021-02-23 11:48:12 +00001697 - CLGaussianPyramidHorKernel, CLGaussianPyramidVertKernel / CLGaussianPyramid, CLGaussianPyramidHalf, CLGaussianPyramidOrb
1698 - CLMinMaxKernel, CLMinMaxLocationKernel / CLMinMaxLocation
1699 - CLNonLinearFilterKernel / CLNonLinearFilter
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001700 - New Arm® Neon™ FP16 kernels (Requires armv8.2 CPU)
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001701 - NEAccumulateWeightedFP16Kernel
1702 - NEBox3x3FP16Kernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001703 - NENonMaximaSuppression3x3FP16Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001704
1705v17.02 Sources preview
1706 - New OpenCL kernels / functions:
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001707 - CLActivationLayerKernel / @ref CLActivationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001708 - CLChannelCombineKernel / CLChannelCombine
1709 - CLDerivativeKernel / CLChannelExtract
1710 - CLFastCornersKernel / CLFastCorners
1711 - CLMeanStdDevKernel / CLMeanStdDev
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001712 - New Arm® Neon™ kernels / functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001713 - HOG / SVM: NEHOGOrientationBinningKernel, NEHOGBlockNormalizationKernel, NEHOGDetectorKernel, NEHOGNonMaximaSuppressionKernel / NEHOGDescriptor, NEHOGDetector, NEHOGGradient, NEHOGMultiDetection
1714 - NENonLinearFilterKernel / NENonLinearFilter
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001715 - Introduced a CLScheduler to manage the default context and command queue used by the runtime library and create synchronisation events.
1716 - Switched all the kernels / functions to use tensors instead of images.
1717 - Updated documentation to include instructions to build the library from sources.
1718
1719v16.12 Binary preview release
1720 - Original release
1721
Sheri Zhangd813bab2021-04-30 16:53:41 +01001722 */
Ramy Elgammal0d274b72022-08-05 13:14:57 +01001723} // namespace arm_compute