blob: 045c9f25cd4daeb7d710d9ced033817dec72ca7b [file] [log] [blame]
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +00001///
Adnan AlSinanabc093b2022-02-08 16:57:06 +00002/// Copyright (c) 2017-2022 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
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043
Viet-Hoa Dob1f82882022-11-11 11:29:50 +000044v22.11 Public major release
45 - New features:
46 - Add new experimental dynamic fusion API.
47 - Add support for CPU and GPU batch matrix multiplication with adj_x = false and adj_y = false.
48 - Add CPU MeanStdDevNorm for QASYMM8.
49 - Add CPU and GPU GELU activation function for FP32 and FP16.
50 - Add CPU swish activation function for FP32 and FP16.
51 - Performance optimizations:
52 - Optimize CPU bilinear scale for FP32, FP16, QASYMM8, QASYMM8_SIGNED, U8 and S8.
53 - Optimize CPU activation functions using LUT-based implementation:
54 - Sigmoid function for QASYMM8 and QASYMM8_SIGNED.
55 - Hard swish function for QASYMM8_SIGNED.
56 - Optimize CPU addition for QASYMM8 and QASYMM8_SIGNED using fixed-point arithmetic.
57 - Optimize CPU multiplication, subtraction and activation layers by considering tensors as 1D.
58 - Optimize GPU depthwise convolution kernel and heuristic.
59 - Optimize GPU Conv2d heuristic.
60 - Optimize CPU MeanStdDevNorm for FP16.
61 - Optimize CPU tanh activation function for FP16 using rational approximation.
62 - Improve GPU GeMMLowp start-up time.
63 - Various optimizations and bug fixes.
64
SiCong Life1b1f62022-05-19 18:58:31 +010065v22.08 Public major release
Ramy Elgammal0d274b72022-08-05 13:14:57 +010066 - Various bug fixes.
67 - Disable unsafe FP optimizations causing accuracy issues in:
68 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
69 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv3dKernel \endlink
70 - @ref CLDepthwiseConvolutionLayerNativeKernel
71 - Add Dynamic Fusion of Elementwise Operators: Div, Floor, Add.
72 - Optimize the gemm_reshaped_rhs_nly_nt OpenCL kernel using the arm_matrix_multiply extension available for Arm® Mali™-G715 and Arm® Mali™-G615.
73 - Add support for the arm_matrix_multiply extension in the gemmlowp_mm_reshaped_only_rhs_t OpenCL kernel.
74 - Expand GPUTarget list with missing Mali™ GPUs product names: G57, G68, G78AE, G610, G510, G310.
75 - Extend the direct convolution 2d interface to configure the block size.
76 - Update ClConv2D heuristic to use direct convolution.
77 - Use official Khronos® OpenCL extensions:
78 - Add cl_khr_integer_dot_product extension support.
79 - Add support of OpenCL 3.0 non-uniform workgroup.
80 - Cpu performance optimizations:
81 - Add LUT-based implementation of Hard Swish and Leaky ReLU activation function for aarch64 build.
82 - Optimize Add layer by considering the input tensors as 1D array.
83 - Add fixed-format BF16, FP16 and FP32 Neon™ GEMM kernels to support variable weights.
84 - Add new winograd convolution kernels implementation and update the ACL \link arm_compute::cpu::CpuWinogradConv2d CpuWinogradConv2d\endlink operator.
85 - Add experimental support for native builds for Windows on Arm®.
Ramy Elgammal966218d2022-08-11 16:23:22 +010086 - 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 +010087 - Build flag change: toolchain_prefix, compiler_prefix:
Ramy Elgammal0d274b72022-08-05 13:14:57 +010088 - Use empty string "" to suppress any prefixes.
89 - Use "auto" to use default (auto) prefixes chosen by the build script. This is the default behavior when unspecified.
90 - Any other string will be used as custom prefixes to the compiler and the rest of toolchain tools.
91 - The default behaviour when prefix is unspecified does not change, but its signifier has been changed from empty string "" to "auto".
92 - armv7a with Android build will no longer be tested or maintained.
SiCong Life1b1f62022-05-19 18:58:31 +010093
Adnan AlSinan2921e5b2022-05-16 14:30:41 +010094v22.05 Public major release
95 - Various bug fixes.
96 - Various optimizations.
97 - Add support for NDK r23b.
98 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
99 - New Arm® Neon™ kernels / functions :
100 - \link opencl::kernels::ClPool3dKernel ClPool3dKernel \endlink
101 - New OpenCL kernels / functions :
102 - \link cpu::kernels::CpuPool3dKernel CpuPool3dKernel \endlink
103 - Improve the start-up times for the following OpenCL kernels:
104 - \link opencl::kernels::ClWinogradInputTransformKernel ClWinogradInputTransformKernel \endlink
105 - \link opencl::kernels::ClWinogradOutputTransformKernel ClWinogradOutputTransformKernel \endlink
106 - \link opencl::kernels::ClWinogradFilterTransformKernel ClWinogradFilterTransformKernel \endlink
107 - \link opencl::kernels::ClHeightConcatenateKernel ClHeightConcatenateKernel \endlink
108 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
109 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
110 - \link cpu::kernels::CpuDepthwiseConv2dNativeKernel CpuDepthwiseConv2dNativeKernel \endlink
111 - \link cpu::kernels::CpuGemmMatrixAdditionKernel CpuGemmMatrixAdditionKernel \endlink
112 - \link cpu::kernels::CpuGemmMatrixMultiplyKernel CpuGemmMatrixMultiplyKernel \endlink
113 - @ref NEFuseBatchNormalizationKernel
114 - @ref NEL2NormalizeLayerKernel
115
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000116v22.02 Public major release
117 - Various bug fixes.
118 - Various optimizations.
119 - Update A510 arm_gemm cpu Kernels.
120 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
121 - Improve the start-up time for the following OpenCL kernels:
122 - @ref CLScale
123 - @ref CLGEMM
124 - @ref CLDepthwiseConvolutionLayer
125 - \link opencl::kernels::ClIm2ColKernel ClIm2ColKernel \endlink
126 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
127 - Remove functions:
128 - CLRemap
129 - NERemap
130 - Remove padding from OpenCL kernels:
131 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
132 - Remove padding from Cpu kernels:
133 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
134 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
135 - \link cpu::kernels::CpuActivationKernel CpuActivationKernel \endlink
136 - \link cpu::kernels::CpuAddKernel CpuAddKernel \endlink
137 - \link cpu::kernels::CpuElementwiseKernel CpuElementwiseKernel \endlink
138 - \link cpu::CpuSoftmaxGeneric CpuSoftmaxKernel \endlink
139 - @ref NEBoundingBoxTransformKernel
140 - @ref NECropKernel
141 - @ref NEComputeAllAnchorsKernel
142 - @ref NEInstanceNormalizationLayerKernel
Adnan AlSinanbb8b2352022-02-14 14:30:38 +0000143 - NEMaxUnpoolingLayerKernel
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000144 - @ref NEMeanStdDevNormalizationKernel
145 - @ref NERangeKernel
146 - @ref NEROIAlignLayerKernel
147 - @ref NESelectKernel
148
Sheri Zhang5dda2172021-10-15 19:54:17 +0100149v21.11 Public major release
150 - Various bug fixes.
Gunes Bayir08773702021-11-05 12:34:34 +0000151 - Various optimizations:
152 - 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 +0000153 - Improve performance of Softmax on GPU for Uint8/Int8
Sheri Zhang5dda2172021-10-15 19:54:17 +0100154 - New OpenCL kernels / functions:
155 - @ref CLConv3D
156 - New Arm® Neon™ kernels / functions:
157 - @ref NEConv3D
Gunes Bayir08773702021-11-05 12:34:34 +0000158 - Support configurable build by a selected subset of operator list
159 - Support MobileBert on Neon™ backend
160 - Improve operator/function logging
161 - Remove padding from OpenCL kernels:
162 - ClPool2dKernel
163 - ClScaleKernel
164 - ClGemmMatrixMultiplyReshapedKernel
165 - Remove padding from Cpu kernels:
166 - CpuPool2dKernel
167 - Remove Y padding from OpenCL kernels:
168 - ClGemmMatrixMultiplyKernel
169 - ClGemmReshapedRHSMatrixKernel
170 - Remove legacy GeMM kernels in gemm_v1.cl
Sheri Zhang5dda2172021-10-15 19:54:17 +0100171
Freddie Liardet77014ff2021-08-05 15:50:31 +0100172v21.08 Public major release
173 - Various bug fixes.
174 - Various optimizations:
175 - Improve LWS (Local-Workgroup-Size) heuristic in OpenCL for GeMM, Direct Convolution and Winograd Transformations when OpenCL tuner is not used
176 - Improve QASYMM8/QSYMM8 performance on OpenCL for various Arm® Mali™ GPU architectures
177 - Add dynamic weights support in Fully connected layer (CPU/GPU)
178 - Various performance optimizations for floating-point data types (CPU/GPU)
179 - Add a reduced core library build arm_compute_core_v2
180 - Expose Operator API
181 - Support fat binary build for arm8.2-a via fat_binary build flag
182 - Add CPU discovery capabilities
183 - Add data type f16 support for:
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000184 - CLRemapKernel
Freddie Liardet77014ff2021-08-05 15:50:31 +0100185 - Port the following functions to stateless API:
186 - @ref CLConvolutionLayer
187 - @ref CLFlattenLayer
188 - @ref CLFullyConnectedLayer
189 - @ref CLGEMM
190 - @ref CLGEMMConvolutionLayer
191 - @ref CLGEMMLowpMatrixMultiplyCore
192 - @ref CLWinogradConvolutionLayer
193 - @ref NEConvolutionLayer
194 - @ref NEFlattenLayer
195 - @ref NEFullyConnectedLayer
196 - @ref NEGEMM
197 - @ref NEGEMMConv2d
198 - @ref NEGEMMConvolutionLayer
199 - @ref NEGEMMLowpMatrixMultiplyCore
200 - @ref NEWinogradConvolutionLayer
201 - Remove the following functions:
202 - CLWinogradInputTransform
203 - Remove CLCoreRuntimeContext
204 - Remove ICPPSimpleKernel
205 - Rename file arm_compute/runtime/CL/functions/CLElementWiseUnaryLayer.h to arm_compute/runtime/CL/functions/CLElementwiseUnaryLayer.h
206
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000207v21.05 Public major release
Sheri Zhangc2bed952021-05-06 12:12:38 +0100208 - Various bug fixes.
209 - Various optimisations.
210 - Various documentation updates:
Jakub Sujakee301b32021-06-04 09:46:08 +0100211 - Add supported operators and corresponding Android NNAPI operators.
212 - Documentation reorg into user guide and contributor guide.
Sheri Zhangc2bed952021-05-06 12:12:38 +0100213 - Add support for a global allocator for OpenCL tensors
214 - Add experimental support for [CLVK](https://github.com/kpet/clvk).
215 - Add data type S32 support for:
216 - @ref opencl::kernels::ClArithmeticKernel
217 - Add data type QASYMM8 support for:
218 - @ref CLROIPoolingLayer
219 - @ref CLROIPoolingLayerKernel
220 - @ref NEROIPoolingLayer
221 - @ref NEROIPoolingLayerKernel
222 - Add per-channel quantization support for:
223 - @ref CLDeconvolutionLayer
224 - @ref CLDirectDeconvolutionLayer
225 - @ref NEConvolutionLayer
226 - @ref NEDeconvolutionLayer
227 - Remove padding from OpenCL kernels:
228 - @ref CLL2NormalizeLayerKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100229 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Sheri Zhangc2bed952021-05-06 12:12:38 +0100230 - @ref CLNormalizationLayerKernel
231 - @ref CLNormalizePlanarYUVLayerKernel
232 - @ref opencl::kernels::ClMulKernel
233 - @ref CLReductionOperationKernel
234 - @ref CLROIPoolingLayerKernel
235 - Remove computer vision support from Arm® Neon™ backend
236 - Remove the following functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000237 - NEAbsoluteDifference
238 - NEAccumulate
239 - NEBox3x3
240 - NECannyEdge
241 - NEChannelCombine
242 - NEChannelExtract
243 - NEColorConvert
Michalis Spyrou473cb012021-02-23 11:48:12 +0000244 - NEConvolution
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000245 - NEDerivative
246 - NEDilate
247 - NEEqualizeHistogram
248 - NEErode
249 - NEFastCorners
250 - NEGaussian3x3
251 - NEGaussian5x5
252 - NEGaussianPyramid
253 - NEHOGDescriptor
254 - NEHOGDetector
255 - NEHOGGradient
256 - NEHOGMultiDetection
257 - NEHarrisCorners
258 - NEHistogram
259 - NEIntegralImage
260 - NELaplacianPyramid
261 - NELaplacianReconstruct
262 - NEMagnitude
263 - NEMeanStdDev
264 - NEMedian3x3
265 - NEMinMaxLocation
266 - NENonLinearFilter
267 - NEOpticalFlow
268 - NEPhase
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000269 - NEScharr3x3
270 - NESobel3x3
271 - NESobel5x5
272 - NESobel7x7
273 - NETableLookup
274 - NEThreshold
275 - NEWarpAffine
Michalis Spyrou473cb012021-02-23 11:48:12 +0000276 - NEWarpPerspectiveKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000277 - Remove all GLES kernels / functions / tests / examples
Sheri Zhangc2bed952021-05-06 12:12:38 +0100278 - Remove computer vision support from CL backend
279 - Remove the following functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000280 - CLAbsoluteDifference
281 - CLAccumulate
282 - CLBox3x3
283 - CLCannyEdge
284 - CLChannelCombine
285 - CLChannelExtract
286 - CLColorConvert
287 - CLConvolution
288 - CLDerivative
289 - CLDilate
290 - CLEqualizeHistogram
291 - CLErode
292 - CLFastCorners
293 - CLGaussian3x3
294 - CLGaussian5x5
295 - CLGaussianPyramid
296 - CLHOGDescriptor
297 - CLHOGDetector
298 - CLHOGGradient
299 - CLHOGMultiDetection
300 - CLHarrisCorners
301 - CLHistogram
302 - CLIntegralImage
303 - CLLaplacianPyramid
304 - CLLaplacianReconstruct
305 - CLMagnitude
306 - CLMeanStdDev
307 - CLMedian3x3
308 - CLMinMaxLocation
309 - CLNonLinearFilter
310 - CLOpticalFlow
311 - CLPhase
312 - CLScharr3x3
313 - CLSobel3x3
314 - CLSobel5x5
315 - CLSobel7x7
316 - CLTableLookup
317 - CLThreshold
318 - CLWarpAffine
319 - CLWarpPerspective
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100320
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000321v21.02 Public major release
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000322 - Various bug fixes.
323 - Various optimisations.
Georgios Pinitas45514032020-12-30 00:03:09 +0000324 - Upgrade C++ standard to C++14
325 - Add macOS support
Giorgio Arena1055dc12021-02-19 09:53:06 +0000326 - Add Armv8-R AArch64 architecture support
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000327 - Add SVE/SVE2 support for:
Manuel Bottini10b38262021-02-19 18:16:44 +0000328 - NEScaleKernel
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000329 - @ref NEActivationLayer
330 - @ref NEArithmeticAddition
331 - @ref NEBatchNormalizationLayerKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000332 - @ref cpu::kernels::CpuLogits1DSoftmaxKernel
333 - @ref cpu::kernels::CpuLogits1DMaxKernel
334 - @ref cpu::kernels::CpuElementwiseUnaryKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000335 - Remove padding from OpenCL kernels:
Sheri Zhang1efed922021-03-10 22:43:38 +0000336 - CLDirectConvolutionLayerKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000337 - @ref CLArgMinMaxLayerKernel
338 - @ref CLPadLayerKernel
339 - @ref CLROIAlignLayerKernel
340 - @ref CLRangeKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000341 - CLScaleKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000342 - @ref CLSelectKernel
343 - @ref CLBitwiseKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000344 - @ref opencl::kernels::ClFloorKernel
Teresa Charlin27886092021-02-25 20:15:01 +0000345 - CLTransposeKernel
Giorgio Arena5b50f422021-02-17 11:43:05 +0000346 - Deprecate functions in CLTuner:
347 - add_lws_to_table
348 - import_lws_table
349 - lws_table
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000350 - Remove functions:
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000351 - NELocallyConnectedLayer / CLLocallyConnectedLayer
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000352 - NEIm2Col
353 - NECol2Im
354 - NEGEMMInterleave4x4
355 - NEGEMMTranspose1xW
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +0000356 - NEComputeAllAnchors / CLComputeAllAnchors
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000357 - NEGEMMAssemblyDispatch
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000358 - NEUpsampleLayer / CLUpsampleLayer
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000359 - Remove kernels:
Georgios Pinitasd308df32020-12-01 16:56:36 +0000360 - NEGEMMMatrixVectorMultiplyKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000361 - NELocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedMatrixMultiplyKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000362 - NEUpsampleLayerKernel / CLUpsampleLayerKernel
Gian Marco Iodicef5aad512021-02-08 17:34:40 +0000363 - Extend OpenCL tuner with workgroup batch size support
364 - 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 +0000365 - Add functionality to load the OpenCL GEMM heuristics at runtime
366 - The GEMM heuristic file (MLGO) can be used to update the default GEMM heuristics available for OpenCL
Giorgio Arenacd7d1782021-02-22 14:58:37 +0000367 - 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 +0100368 - Note: data-type decoupling is in progress and experimental. Warning of unused symbols might be raised
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000369
SiCong Li96209c72020-08-21 12:28:30 +0100370v20.11 Public major release
morgolock70b1eb82020-11-24 13:54:19 +0000371 - Various bug fixes.
372 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000373 - 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 +0000374 This is planned to be resolved in 21.02 release.
morgolock70b1eb82020-11-24 13:54:19 +0000375 - Added new data type QASYMM8_SIGNED support for @ref NEROIAlignLayer.
SiCong Li903f8cc2020-08-27 10:17:10 +0100376 - Added new data type S32 support for:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000377 - NEArithmeticSubtraction
378 - NEArithmeticSubtractionKernel
SiCong Libb88f892020-08-28 11:18:47 +0100379 - @ref NEPixelWiseMultiplication
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000380 - NEPixelWiseMultiplicationKernel
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000381 - NEElementwiseDivision
382 - NEDivisionOperationKernel
SiCong Li96209c72020-08-21 12:28:30 +0100383 - Interface change
384 - Properly support softmax axis to have the same meaning as other major frameworks. That is, axis now defines the dimension
385 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.
386 The supported value range of axis is [-rank, rank).
387 This change applies to the following functions:
388 - @ref NESoftmaxLayer
389 - @ref NELogSoftmaxLayer
390 - @ref CLSoftmaxLayer
391 - @ref CLLogSoftmaxLayer
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000392 - GCSoftmaxLayer
Sheri Zhang824061d2020-10-26 15:46:37 +0000393 - New OpenCL kernels / functions:
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100394 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
morgolock0e728492020-11-20 11:03:33 +0000395 - @ref CLLogicalNot
396 - @ref CLLogicalAnd
397 - @ref CLLogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000398 - New Arm® Neon™ kernels / functions:
morgolock0e728492020-11-20 11:03:33 +0000399 - @ref NELogicalNot
400 - @ref NELogicalAnd
401 - @ref NELogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000402 - Removed padding from Arm® Neon™ kernels:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000403 - NEComplexPixelWiseMultiplicationKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000404 - NENonMaximaSuppression3x3Kernel
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000405 - NERemapKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100406 - NEGEMMInterleave4x4Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100407 - NEDirectConvolutionLayerKernel
Manuel Bottini10b38262021-02-19 18:16:44 +0000408 - NEScaleKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000409 - NELocallyConnectedMatrixMultiplyKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100410 - NEGEMMLowpOffsetContributionKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100411 - NEGEMMTranspose1xWKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +0000412 - NEPoolingLayerKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000413 - NEConvolutionKernel
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100414 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100415 - NEGEMMLowpMatrixMultiplyKernel
Michele Di Giorgio53832b22021-06-21 14:45:44 +0100416 - NEGEMMMatrixMultiplyKernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100417 - NEDirectConvolutionLayerOutputStageKernel
Sheri Zhanged367132020-10-08 15:46:16 +0100418 - @ref NEReductionOperationKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100419 - NEGEMMLowpMatrixAReductionKernel
420 - NEGEMMLowpMatrixBReductionKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000421 - Removed padding from OpenCL kernels:
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000422 - CLBatchConcatenateLayerKernel
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000423 - CLElementwiseOperationKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000424 - @ref CLBatchNormalizationLayerKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000425 - CLPoolingLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100426 - CLWinogradInputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100427 - CLGEMMLowpMatrixMultiplyNativeKernel
428 - CLGEMMLowpMatrixAReductionKernel
429 - CLGEMMLowpMatrixBReductionKernel
430 - CLGEMMLowpOffsetContributionOutputStageKernel
431 - CLGEMMLowpOffsetContributionKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100432 - CLWinogradOutputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100433 - CLGEMMLowpMatrixMultiplyReshapedKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000434 - @ref CLFuseBatchNormalizationKernel
435 - @ref CLDepthwiseConvolutionLayerNativeKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100436 - CLDepthConvertLayerKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000437 - CLCopyKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100438 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000439 - CLActivationLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100440 - CLWinogradFilterTransformKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000441 - CLWidthConcatenateLayerKernel
442 - CLWidthConcatenate4TensorsKernel
443 - CLWidthConcatenate2TensorsKernel
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000444 - CLLogits1DMaxShiftExpSumKernel
445 - CLLogits1DNormKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000446 - CLHeightConcatenateLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100447 - CLGEMMMatrixMultiplyKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100448 - CLGEMMLowpQuantizeDownInt32ScaleKernel
449 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
450 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000451 - CLDepthConcatenateLayerKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100452 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000453 - Removed OpenCL kernels / functions:
454 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
455 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel
456 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel
morgolock00c76012020-11-06 10:40:12 +0000457 - 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 +0100458 - CLLocallyConnectedLayer
459 - CLLocallyConnectedMatrixMultiplyKernel
morgolock00c76012020-11-06 10:40:12 +0000460 - CLAbsoluteDifference
461 - CLAbsoluteDifferenceKernel
462 - CLAccumulate
463 - CLAccumulateKernel
464 - CLAccumulateSquared
465 - CLAccumulateSquaredKernel
466 - CLAccumulateWeighted
467 - CLAccumulateWeightedKernel
468 - CLAccumulateWeightedFP16Kernel
469 - CLBox3x3
470 - CLBox3x3Kernel
471 - CLBox3x3FP16Kernel
472 - CLCannyEdge
473 - CLChannelCombine
474 - CLChannelCombineKernel
475 - CLChannelExtract
476 - CLChannelExtractKernel
477 - CLColorConvert
478 - CLColorConvertKernel
479 - CLConvolution3x3
480 - CLConvolutionRectangle
481 - CLConvolutionRectangleKernel
482 - CLConvolutionSquare
483 - CLConvolutionKernel
484 - CLDerivative
485 - CLDerivativeKernel
486 - CLDilate
487 - CLDilateKernel
488 - CLEqualizeHistogram
489 - CLErode
490 - CLErodeKernel
491 - CLFastCorners
492 - CLFastCornersKernel
493 - CLGaussian3x3
494 - CLGaussian3x3Kernel
495 - CLGaussian5x5
496 - CLGaussian5x5HorKernel
497 - CLGaussian5x5VertKernel
498 - CLGaussianPyramid
499 - CLGaussianPyramidHalf
500 - CLGaussianPyramidOrb
501 - CLHarrisCorners
502 - CLHarrisScoreKernel
503 - CLHarrisScoreFP16Kernel
504 - CLHistogram
505 - CLHistogramKernel
506 - CLHOGOrientationBinningKernel
507 - CLHOGBlockNormalizationKernel
508 - CLHOGDetectorKernel
509 - CLHOGNonMaximaSuppressionKernel
510 - CLHOGDescriptor
511 - CLHOGDetector
512 - CLHOGGradient
513 - CLHOGMultiDetection
514 - CLHOGOrientationBinningKernel
515 - CLHOGBlockNormalizationKernel
516 - CLHOGDetectorKernel
517 - CLIntegralImage
518 - CLIntegralImageKernel
519 - CLLaplacianReconstruct
520 - CLLaplacianPyramid
521 - CLMagnitude
522 - CLMagnitudePhaseKernel
523 - CLMedian3x3
524 - CLMedian3x3Kernel
525 - CLMinMaxLocation
526 - CLMinMaxLocationKernel
527 - CLNonLinearFilter
528 - CLNonLinearFilterKernel
529 - CLNonMaximaSuppression3x3
530 - CLNonMaximaSuppression3x3FP16Kernel
531 - CLNonMaximaSuppression3x3Kernel
532 - CLOpticalFlow
533 - CLPhase
534 - CLRemap
535 - CLRemapKernel
536 - CLScharr3x3
537 - CLScharr3x3Kernel
538 - CLSobel3x3
539 - CLSobel3x3Kernel
540 - CLSobel5x5
541 - CLSobel5x5HorKernel
542 - CLSobel5x5VertKernel
543 - CLSobel7x7
544 - CLSobel7x7HorKernel
545 - CLSobel7x7VertKernel
546 - CLThreshold
547 - CLThresholdKernel
548 - CLWarpAffine
549 - CLWarpAffineKernel
550 - CLWarpPerspective
551 - CLWarpPerspectiveKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000552 - 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 +0100553 - NELocallyConnectedLayer
554 - NELocallyConnectedMatrixMultiplyKernel
morgolock0c862652020-11-06 08:59:45 +0000555 - NEAbsoluteDifference
556 - NEAbsoluteDifferenceKernel
557 - NEAccumulate
558 - NEAccumulateKernel
559 - NEAccumulateSquared
560 - NEAccumulateSquaredKernel
561 - NEAccumulateWeighted
562 - NEAccumulateWeightedKernel
563 - NEAccumulateWeightedFP16Kernel
564 - NEBox3x3
565 - NEBox3x3Kernel
566 - NEBox3x3FP16Kernel
567 - NECannyEdge
568 - NEChannelCombine
569 - NEChannelCombineKernel
570 - NEChannelExtract
571 - NEChannelExtractKernel
572 - NEColorConvert
573 - NEColorConvertKernel
574 - NEConvolution3x3
575 - NEConvolutionRectangle
576 - NEConvolutionRectangleKernel
577 - NEConvolutionSquare
578 - NEConvolutionKernel
579 - NEDerivative
580 - NEDerivativeKernel
581 - NEDilate
582 - NEDilateKernel
583 - NEEqualizeHistogram
584 - NEErode
585 - NEErodeKernel
586 - NEFastCorners
587 - NEFastCornersKernel
588 - NEGaussian3x3
589 - NEGaussian3x3Kernel
590 - NEGaussian5x5
591 - NEGaussian5x5HorKernel
592 - NEGaussian5x5VertKernel
593 - NEGaussianPyramid
594 - NEGaussianPyramidHalf
595 - NEGaussianPyramidOrb
596 - NEHarrisCorners
597 - NEHarrisScoreKernel
598 - NEHarrisScoreFP16Kernel
599 - NEHistogram
600 - NEHistogramKernel
601 - NEHOGOrientationBinningKernel
602 - NEHOGBlockNormalizationKernel
603 - NEHOGDetectorKernel
604 - NEHOGNonMaximaSuppressionKernel
605 - NEHOGDescriptor
606 - NEHOGDetector
607 - NEHOGGradient
608 - NEHOGMultiDetection
609 - NEHOGOrientationBinningKernel
610 - NEHOGBlockNormalizationKernel
611 - NEHOGDetectorKernel
612 - NEIntegralImage
613 - NEIntegralImageKernel
614 - NELaplacianReconstruct
615 - NELaplacianPyramid
616 - NEMagnitude
617 - NEMagnitudePhaseKernel
618 - NEMedian3x3
619 - NEMedian3x3Kernel
620 - NEMinMaxLocation
621 - NEMinMaxLocationKernel
622 - NENonLinearFilter
623 - NENonLinearFilterKernel
624 - NENonMaximaSuppression3x3
625 - NENonMaximaSuppression3x3FP16Kernel
626 - NENonMaximaSuppression3x3Kernel
627 - NEOpticalFlow
628 - NEPhase
629 - NERemap
630 - NERemapKernel
631 - NEScharr3x3
632 - NEScharr3x3Kernel
633 - NESobel3x3
634 - NESobel3x3Kernel
635 - NESobel5x5
636 - NESobel5x5HorKernel
637 - NESobel5x5VertKernel
638 - NESobel7x7
639 - NESobel7x7HorKernel
640 - NESobel7x7VertKernel
641 - NEThreshold
642 - NEThresholdKernel
643 - NEWarpAffine
644 - NEWarpAffineKernel
645 - NEWarpPerspective
646 - NEWarpPerspectiveKernel
morgolockd6ee9ed2020-11-19 10:07:14 +0000647 - Deprecated GLES kernels / functions (If a kernel is used only by the function that is being deprecated, the kernel is deprecated together):
648 - GCAbsoluteDifference
649 - GCActivationLayer
650 - GCArithmeticAddition
651 - GCBatchNormalizationLayer
652 - GCConcatenateLayer
653 - GCConvolutionLayer
654 - GCDepthwiseConvolutionLayer
655 - GCDirectConvolutionLayer
656 - GCDropoutLayer
657 - GCFillBorder
658 - GCFullyConnectedLayer
659 - GCGEMM
660 - GCGEMMInterleave4x4
661 - GCGEMMTranspose1xW
662 - GCNormalizationLayer
663 - GCNormalizePlanarYUVLayer
664 - GCPixelWiseMultiplication
665 - GCPoolingLayer
666 - GCScale
667 - GCSoftmaxLayer
668 - GCTensorShift
669 - GCTranspose
670
SiCong Li96209c72020-08-21 12:28:30 +0100671
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100672v20.08 Public major release
673 - Various bug fixes.
674 - Various optimisations.
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100675 - Added new data type QASYMM8_SIGNED support for:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100676 - @ref CLArgMinMaxLayer
677 - @ref CLArgMinMaxLayerKernel
678 - Added new data type U8 support for:
679 - @ref NECropKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000680 - CLCropKernel
Jakub Sujakee301b32021-06-04 09:46:08 +0100681 - Added align_corner support for nearest neighbor interpolation in:
Manuel Bottini10b38262021-02-19 18:16:44 +0000682 - NEScaleKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000683 - CLScaleKernel
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100684 - New OpenCL kernels / functions:
685 - @ref CLMaxUnpoolingLayerKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000686 - New Arm® Neon™ kernels / functions:
Dana Zlotnik149203b2022-01-26 12:38:03 +0200687 - NEMaxUnpoolingLayerKernel
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100688 - New graph example:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100689 - graph_yolov3_output_detector
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100690 - GEMMTuner improvements:
691 - Added fp16 support
692 - Output json files for easier integration
693 - Enabled tuning for export_to_cl_image_rhs option for RHS tensors
694 - More robust script for running benchmarks
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100695 - Removed padding from:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000696 - NEPixelWiseMultiplicationKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000697 - NEHeightConcatenateLayerKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000698 - NEThresholdKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000699 - NEBatchConcatenateLayerKernel
Teresa Charlind1dc09c2021-03-04 15:24:45 +0000700 - NETransposeKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100701 - @ref NEBatchNormalizationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000702 - NEArithmeticSubtractionKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100703 - @ref NEBoundingBoxTransformKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +0000704 - NELogits1DMaxKernel
705 - NELogits1DSoftmaxKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100706 - @ref NEROIPoolingLayerKernel
707 - @ref NEROIAlignLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +0000708 - NEYOLOLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000709 - NEUpsampleLayerKernel
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000710 - NEFloorKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000711 - NEWidthConcatenateLayerKernel
712 - NEDepthConcatenateLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100713 - @ref NENormalizationLayerKernel
714 - @ref NEL2NormalizeLayerKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +0100715 - NEFillArrayKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100716 - NEDepthConvertLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100717 - @ref NERangeKernel
718 - @ref NEPriorBoxLayer
Sheri Zhanged367132020-10-08 15:46:16 +0100719 - Removed OpenCL kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100720 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
721 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000722 - Removed Arm® Neon™ kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100723 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
724 - NEGEMMMatrixAccumulateBiasesKernel
SiCong Lid004a7a2020-05-28 15:26:41 +0100725 - Deprecated functions / interfaces:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000726 - Non-descriptor based interfaces for NEThreshold, CLThreshold
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000727 - Non-descriptor based interfaces for @ref NEScale, @ref CLScale and GCScale
728 - In @ref NESoftmaxLayer, @ref NELogSoftmaxLayer, @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer :
729 The default "axis" value for @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer is changed from 1 to 0.
morgolock9c7fed82020-08-05 12:30:56 +0100730 Only axis 0 is supported.
731 The default "axis" value for @ref NESoftmaxLayer, @ref NELogSoftmaxLayer is changed from 1 to 0.
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100732 Only axis 0 is supported.
Sang-Hoon Parka0205b92020-07-07 09:36:09 +0100733 - The support for quantized data types has been removed from @ref CLLogSoftmaxLayer due to implementation complexity.
Manuel Bottinid844c082021-07-14 12:58:54 +0100734 - 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 +0100735 - This change allows to use @ref CLGEMMConvolutionLayer without extra padding for the input and output.
736 - Only the weights/bias of @ref CLGEMMConvolutionLayer could require padding for the computation.
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100737 - Only on Arm® Mali™ Midgard GPUs, @ref CLGEMMConvolutionLayer could require padding since CLGEMMMatrixMultiplyKernel is called and currently requires padding.
738 - 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 +0100739 - 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 +0100740 - The padding requirement for the OpenCL image object is considered into the CLGEMMReshapeRHSMatrixKernel.
741 - The reshaped RHS matrix stores the weights when GEMM is used to accelerate CLGEMMConvolutionLayer.
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100742
Georgios Pinitasfd7780d2020-03-17 11:41:00 +0000743v20.05 Public major release
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000744 - Various bug fixes.
745 - Various optimisations.
Michele Di Giorgio36a551f2020-04-23 11:55:29 +0100746 - Updated recommended NDK version to r18b.
747 - Updated recommended gcc version to Linaro 6.3.1.
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000748 - Added Bfloat16 type support
749 - Added Bfloat16 support in:
Manuel Bottini29599d02021-07-06 15:01:35 +0100750 - NEWeightsReshapeKernel
751 - NEConvolutionLayerReshapeWeights
Manuel Bottini90028992021-06-30 18:29:18 +0100752 - NEIm2ColKernel
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000753 - NEIm2Col
Georgios Pinitas11d84152021-04-28 10:20:18 +0100754 - NEDepthConvertLayerKernel
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000755 - @ref NEDepthConvertLayer
756 - @ref NEGEMMConvolutionLayer
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000757 - NEGEMMAssemblyDispatch
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000758 - Added new data type QASYMM8_SIGNED support for:
759 - @ref CLDirectConvolutionLayer
760 - @ref CLDeconvolutionLayer
761 - @ref CLDirectDeconvolutionLayer
762 - @ref CLGEMMDeconvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100763 - CLGEMMLowpMatrixMultiplyReshapedKernel
764 - CLGEMMLowpQuantizeDownInt32ScaleKernel
765 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000766 - @ref CLReductionOperation
767 - @ref CLReduceMean
Sheri Zhang359c48e2020-04-30 22:53:39 +0100768 - @ref NEScale
Manuel Bottini10b38262021-02-19 18:16:44 +0000769 - NEScaleKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000770 - NEUpsampleLayer
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000771 - @ref NECast
772 - @ref NEReductionOperation
773 - @ref NEReduceMean
774 - @ref NEArgMinMaxLayer
775 - @ref NEDeconvolutionLayer
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100776 - NEGEMMLowpQuantizeDownInt32ScaleKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000777 - @ref CPPBoxWithNonMaximaSuppressionLimit
778 - @ref CPPDetectionPostProcessLayer
779 - @ref CPPPermuteKernel
780 - @ref CPPPermute
781 - @ref CPPTopKVKernel
782 - @ref CPPTopKV
Sheri Zhang359c48e2020-04-30 22:53:39 +0100783 - @ref CPPUpsample
784 - @ref CPPUpsampleKernel
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100785 - New OpenCL kernels / functions:
786 - @ref CLQLSTMLayer
787 - @ref CLQLSTMLayerNormalizationKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000788 - New Arm® Neon™ kernels / functions:
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100789 - @ref NEQLSTMLayer
790 - @ref NEQLSTMLayerNormalizationKernel
791 - Added HARD_SWISH support in:
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000792 - CLActivationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000793 - NEActivationLayerKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000794 - Deprecated OpenCL kernels / functions:
795 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
796 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000797 - Deprecated Arm® Neon™ kernels / functions:
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000798 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
799 - Removed CPP kernels / functions:
800 - CPPFlipWeightsKernel
Manuel Bottini387259a2020-05-21 17:14:36 +0100801 - Removed PoolingLayerInfo constructors without Data Layout.
802 - Removed CLDepthwiseConvolutionLayer3x3
803 - Removed NEDepthwiseConvolutionLayerOptimized
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000804 - Added support for Winograd 3x3,4x4 on Arm® Neon™ FP16:
Manuel Bottini075253a2020-05-22 12:57:18 +0100805 - @ref NEWinogradConvolutionLayer
Michalis Spyrou96f977e2021-07-01 12:20:56 +0100806 - CpuWinogradConv2dTransformInputKernel
807 - CpuWinogradConv2dTransformOutputKernel
808 - CpuWinogradConv2dTransformWeightsKernel
Manuel Bottini075253a2020-05-22 12:57:18 +0100809 - Added CLCompileContext
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000810 - Added Arm® Neon™ GEMM kernel with 2D window support
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000811
Michele Di Giorgio740872e2020-03-04 15:29:49 +0000812v20.02.1 Maintenance release
813 - Added Android-NN build script.
814
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000815v20.02 Public major release
816 - Various bug fixes.
817 - Various optimisations.
818 - Added new data type QASYMM8_SIGNED support for:
819 - @ref CLDepthwiseConvolutionLayer
Manuel Bottini387259a2020-05-21 17:14:36 +0100820 - CLDepthwiseConvolutionLayer3x3
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000821 - @ref CLGEMMConvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100822 - CLGEMMLowpMatrixMultiplyCore
823 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
824 - CLGEMMLowpMatrixMultiplyNativeKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000825 - @ref NEActivationLayer
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000826 - NEComparisonOperationKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000827 - @ref NEConvolutionLayer
828 - @ref NEDepthwiseConvolutionLayer
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100829 - NEDepthwiseConvolutionLayer3x3Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100830 - NEDirectConvolutionLayerOutputStageKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000831 - @ref NEElementwiseComparison
832 - @ref NEElementwiseMax
833 - @ref NEElementwiseMin
834 - @ref NEElementwiseSquaredDiff
835 - @ref NEFullyConnectedLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +0100836 - NEGEMMMatrixVectorMultiplyKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000837 - @ref NEPixelWiseMultiplication
838 - @ref NEPoolingLayer
839 - @ref NEPReluLayer
840 - Added support for QSYMM8_PER_CHANNEL in:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100841 - NEDepthwiseConvolutionLayer3x3Kernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000842 - Added support for split sizes in:
843 - @ref CLSplit
844 - @ref NESplit
845 - New OpenCL kernels / functions:
846 - @ref CLFill
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100847 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000848 - New Arm® Neon™ kernels / functions:
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000849 - @ref NEFill
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100850 - NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000851 - Deprecated Arm® Neon™ functions / interfaces:
Manuel Bottini387259a2020-05-21 17:14:36 +0100852 - CLDepthwiseConvolutionLayer3x3
853 - NEDepthwiseConvolutionLayerOptimized
854 - PoolingLayerInfo constructors without Data Layout.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000855 - Added support for quantization with multiplier greater than 1 on Arm® Neon™ and CL.
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000856 - Added support for quantized inputs of type QASYMM8_SIGNED and QASYMM8 to @ref CLQuantizationLayer.
857 - Added the ability to build bootcode for bare metal.
858 - Added support for generating synthetic QASYMM8 graphs.
859 - Added support for F16 datatype in VGG16.
860 - Removed pre-built binaries for GLES.
861
Michele Di Giorgiod374ff22020-01-21 10:03:20 +0000862v19.11.1 Public maintenance release
863 - Fix offset calculation in NEReductionOperationKernel.
864 - Fix data layout in NEScaleKernel for nhwc.
865 - Retain configuration step data layout to avoid side-effects.
866 - Perform sqrt in double domain for L2 pooling.
867 - Fix output shape calculation for Reduce Mean
868 - Restrict cases where optimized NEPadLayer runs.
869
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100870v19.11 Public major release
SiCong Lica1f98c2019-11-28 11:06:11 +0000871 - Various bug fixes.
872 - Various optimisations.
SiCong Li1f7f9882019-11-28 14:59:35 +0000873 - Updated recommended NDK version to r17c.
SiCong Lica1f98c2019-11-28 11:06:11 +0000874 - Deprecated OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100875 - CLDepthwiseConvolutionLayerReshapeWeightsGenericKernel
876 - CLDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000877 - CLDepthwiseSeparableConvolutionLayer
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100878 - CLDepthwiseVectorToTensorKernel
879 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000880 - Deprecated Arm® Neon™ kernels / functions:
Giorgio Arenad93e2632019-10-15 11:09:33 +0100881 - NEDepthwiseWeightsReshapeKernel
882 - NEDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000883 - NEDepthwiseSeparableConvolutionLayer
Giorgio Arenad93e2632019-10-15 11:09:33 +0100884 - NEDepthwiseVectorToTensorKernel
Manuel Bottini05069f02019-09-26 17:18:26 +0100885 - NEDepthwiseConvolutionLayer3x3
SiCong Lica1f98c2019-11-28 11:06:11 +0000886 - New OpenCL kernels / functions:
887 - @ref CLInstanceNormalizationLayerKernel / @ref CLInstanceNormalizationLayer
888 - @ref CLDepthwiseConvolutionLayerNativeKernel to replace the old generic depthwise convolution (see Deprecated
889 OpenCL kernels / functions)
890 - @ref CLLogSoftmaxLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000891 - New Arm® Neon™ kernels / functions:
SiCong Lica1f98c2019-11-28 11:06:11 +0000892 - @ref NEBoundingBoxTransformKernel / @ref NEBoundingBoxTransform
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +0000893 - @ref NEComputeAllAnchorsKernel / NEComputeAllAnchors
SiCong Lica1f98c2019-11-28 11:06:11 +0000894 - @ref NEDetectionPostProcessLayer
895 - @ref NEGenerateProposalsLayer
896 - @ref NEInstanceNormalizationLayerKernel / @ref NEInstanceNormalizationLayer
897 - @ref NELogSoftmaxLayer
898 - @ref NEROIAlignLayerKernel / @ref NEROIAlignLayer
899 - Added QASYMM8 support for:
900 - @ref CLGenerateProposalsLayer
901 - @ref CLROIAlignLayer
902 - @ref CPPBoxWithNonMaximaSuppressionLimit
903 - Added QASYMM16 support for:
904 - @ref CLBoundingBoxTransform
905 - Added FP16 support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100906 - CLGEMMMatrixMultiplyReshapedKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000907 - Added new data type QASYMM8_PER_CHANNEL support for:
Manuel Bottini9e73c932021-03-02 17:40:42 +0000908 - CLDequantizationLayer
SiCong Lica1f98c2019-11-28 11:06:11 +0000909 - @ref NEDequantizationLayer
910 - Added new data type QSYMM8_PER_CHANNEL support for:
911 - @ref CLConvolutionLayer
912 - @ref NEConvolutionLayer
913 - @ref CLDepthwiseConvolutionLayer
914 - @ref NEDepthwiseConvolutionLayer
915 - Added FP16 mixed-precision support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100916 - CLGEMMMatrixMultiplyReshapedKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000917 - CLPoolingLayerKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000918 - Added FP32 and FP16 ELU activation for:
919 - @ref CLActivationLayer
920 - @ref NEActivationLayer
921 - Added asymmetric padding support for:
922 - @ref CLDirectDeconvolutionLayer
923 - @ref CLGEMMDeconvolutionLayer
924 - @ref NEDeconvolutionLayer
925 - Added SYMMETRIC and REFLECT modes for @ref CLPadLayerKernel / @ref CLPadLayer.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000926 - Replaced the calls to NECopyKernel and NEMemsetKernel with @ref NEPadLayer in @ref NEGenerateProposalsLayer.
927 - Replaced the calls to CLCopyKernel and CLMemsetKernel with @ref CLPadLayer in @ref CLGenerateProposalsLayer.
SiCong Lica1f98c2019-11-28 11:06:11 +0000928 - Improved performance for CL Inception V3 - FP16.
929 - Improved accuracy for CL Inception V3 - FP16 by enabling FP32 accumulator (mixed-precision).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000930 - Improved Arm® Neon™ performance by enabling fusing batch normalization with convolution and depth-wise convolution layer.
931 - Improved Arm® Neon™ performance for MobileNet-SSD by improving the output detection performance.
SiCong Lica1f98c2019-11-28 11:06:11 +0000932 - Optimized @ref CLPadLayer.
933 - Optimized CL generic depthwise convolution layer by introducing @ref CLDepthwiseConvolutionLayerNativeKernel.
934 - Reduced memory consumption by implementing weights sharing.
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100935
Michele Di Giorgiod374ff22020-01-21 10:03:20 +0000936v19.08.1 Public maintenance release
937 - Fix offset calculation in NEReductionOperationKernel.
938 - Fix data layout in NEScaleKernel for nhwc.
939 - Retain configuration step data layout to avoid side-effects.
940 - Perform sqrt in double domain for L2 pooling.
941 - Fix output shape calculation for Reduce Mean
942 - Fix broadcast CLPixelwiseMultiplication with 5D tensors
943
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100944v19.08 Public major release
945 - Various bug fixes.
946 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000947 - Deprecated Arm® Neon™ functions
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100948 - NEDepthConcatenateLayer
949 - NEWidthConcatenateLayer
950 - Deprecated OpenCL kernels / functions
951 - CLDepthConcatenateLayer
952 - CLGEMMInterleave4x4Kernel / CLGEMMInterleave4x4
953 - CLGEMMTranspose1xWKernel / CLGEMMTranspose1xW
954 - CLWidthConcatenateLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000955 - New Arm® Neon™ kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100956 - @ref NEAbsLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100957 - @ref NECast
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100958 - @ref NEElementwisePower
959 - @ref NELogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100960 - @ref NELSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100961 - @ref NENegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100962 - @ref NEPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100963 - @ref NESinLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000964 - NEBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100965 - @ref NEDepthToSpaceLayerKernel / @ref NEDepthToSpaceLayer
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100966 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100967 - NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100968 - @ref NEMeanStdDevNormalizationKernel / @ref NEMeanStdDevNormalizationLayer
969 - @ref NESpaceToDepthLayerKernel / @ref NESpaceToDepthLayer
970 - New OpenCL kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100971 - @ref CLAbsLayer
972 - @ref CLElementwisePower
973 - @ref CLLogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100974 - @ref CLLSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100975 - @ref CLNegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100976 - @ref CLPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100977 - @ref CLSinLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000978 - CLBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100979 - @ref CLDepthToSpaceLayerKernel / @ref CLDepthToSpaceLayer
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100980 - CLGEMMLowpMatrixMultiplyNativeKernel
Michele Di Giorgioba14c922020-10-12 13:27:57 +0100981 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100982 - CLGEMMMatrixMultiplyNativeKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000983 - CLMeanStdDevNormalizationKernel /CLMeanStdDevNormalizationLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100984 - @ref CLSpaceToDepthLayerKernel / @ref CLSpaceToDepthLayer
985 - New examples:
986 - neon_opticalflow
987 - cl_cache
988 - neon_permute
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100989 - Added support for FP16 in @ref NEDeconvolutionLayer
990 - Added support for FP16 in @ref CLDeconvolutionLayer
991 - Added support for REDUCE_MIN and REDUCE_MAX in @ref ReductionOperation
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100992 - Enable the fusion of batch normalization with convolution and depthwise convolution layer for FP32 in the graph API (OpenCL only)
993 - 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 +0000994 - Re-factored the depthwise convolution layer kernel on Arm® Neon™ for generic cases
Jakub Sujakee301b32021-06-04 09:46:08 +0100995 - Added an optimized depthwise convolution layer kernel for 5x5 filters (Neon™ only)
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100996 - Added support to enable OpenCL kernel cache. Added example showing how to load the prebuilt OpenCL kernels from a binary cache file
997 - Altered @ref QuantizationInfo interface to support per-channel quantization.
Manuel Bottini387259a2020-05-21 17:14:36 +0100998 - The CLDepthwiseConvolutionLayer3x3 will be included by @ref CLDepthwiseConvolutionLayer to accommodate for future optimizations.
999 - The NEDepthwiseConvolutionLayerOptimized will be included by @ref NEDepthwiseConvolutionLayer to accommodate for future optimizations.
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001000 - Removed inner_border_right and inner_border_top parameters from @ref CLDeconvolutionLayer interface
1001 - Removed inner_border_right and inner_border_top parameters from @ref NEDeconvolutionLayer interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001002 - 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 +01001003
Michalis Spyroua9c44722019-04-05 17:18:36 +01001004v19.05 Public major release
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001005 - Various bug fixes.
1006 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001007 - New Arm® Neon™ kernels / functions:
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001008 - @ref NEBatchToSpaceLayerKernel / @ref NEBatchToSpaceLayer
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001009 - NEComplexPixelWiseMultiplicationKernel / @ref NEComplexPixelWiseMultiplication
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001010 - @ref NECropKernel / @ref NECropResize
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01001011 - NEDepthwiseConvolutionAssemblyDispatch
Michalis Spyrouca82e622019-05-10 16:43:20 +01001012 - @ref NEFFTDigitReverseKernel
1013 - @ref NEFFTRadixStageKernel
1014 - @ref NEFFTScaleKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001015 - NEGEMMLowpOffsetContributionOutputStageKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001016 - NEHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001017 - @ref NESpaceToBatchLayerKernel / @ref NESpaceToBatchLayer
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001018 - @ref NEFFT1D
1019 - @ref NEFFT2D
1020 - @ref NEFFTConvolutionLayer
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001021 - New OpenCL kernels / functions:
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001022 - CLComplexPixelWiseMultiplicationKernel / @ref CLComplexPixelWiseMultiplication
Sheri Zhang7e20e292021-02-02 11:49:34 +00001023 - CLCropKernel / @ref CLCropResize
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001024 - @ref CLDeconvolutionReshapeOutputKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001025 - @ref CLFFTDigitReverseKernel
1026 - @ref CLFFTRadixStageKernel
1027 - @ref CLFFTScaleKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001028 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001029 - CLGEMMMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001030 - CLHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001031 - @ref CLDirectDeconvolutionLayer
1032 - @ref CLFFT1D
1033 - @ref CLFFT2D
1034 - @ref CLFFTConvolutionLayer
Michalis Spyrouca82e622019-05-10 16:43:20 +01001035 - @ref CLGEMMDeconvolutionLayer
1036 - New OpenGLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001037 - GCConcatenateLayer
Michalis Spyroua9c44722019-04-05 17:18:36 +01001038 - Deprecated functions/interfaces
Georgios Pinitas09f24972019-05-17 18:14:40 +01001039 - GCDepthConcatenateLayer
1040 - NEWidthConcatenateLayer
1041 - NEDepthConcatenateLayer
1042 - CLWidthConcatenateLayer
1043 - CLDepthConcatenateLayer
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001044 - CLGEMMInterleave4x4
1045 - CLGEMMTranspose1xW
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001046 - Support different quantization info in CLConcatLayer.
1047 - Add checks on different input/output quantization info were not supported.
1048 - Tensors have different quantization information.
1049 - Add FP16 support checks.
1050 - Fix output quantization CLDeptwiseConv3x3 when activation is fused.
1051 - New graph examples:
1052 - graph_convolution
1053 - graph_fully_connected
1054 - graph_depthwise_convolution
1055 - Deepspeech v0.4.1
1056 - Add support for QASYMM8 in NEArithmeticSubtractionKernel.
1057 - Add support for QASYMM8 in NEPixelWiseMultiplicationKernel.
1058 - Add support for QASYMM8 NEDeconvolution.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001059 - Add support for DequantizationLayer for Neon/CL.
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001060 - Add support for dilation in CLDepthwiseConvolution.
1061 - Fuse offset contribution with the output stage when we use NEGEMMLowpMatrixMultiplyCore.
1062 - Optimize CLDeconvolution.
1063 - Add StackLayer to the graph API.
1064 - Add support for "reflect" padding mode in NEPad.
1065 - Winograd 7x7 NHWC on OpenCL.
1066 - Rework CL ML layers to run exclusively on CL.
1067 - Support different quantization info in PoolingLayer.
1068 - Implement and test import memory interfaces.
1069 - Added new tests and removed old ones.
1070 - Various clang-tidy fixes.
Michalis Spyroua9c44722019-04-05 17:18:36 +01001071
giuros01a69a88b2019-01-31 16:29:19 +00001072v19.02 Public major release
Isabella Gottardi62538972019-02-12 19:52:44 +00001073 - Various bug fixes.
1074 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001075 - New Arm® Neon™ kernels / functions:
Isabella Gottardi62538972019-02-12 19:52:44 +00001076 - @ref NETileKernel / @ref NETile
1077 - @ref NEFuseBatchNormalizationKernel / @ref NEFuseBatchNormalization
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001078 - NEElementwiseOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001079 - @ref NEElementwiseMax
1080 - @ref NEElementwiseMin
1081 - @ref NEElementwiseSquaredDiff
1082 - @ref NESelectKernel / @ref NESelect
1083 - @ref NESplit
1084 - @ref NESlice
1085 - @ref NEUnstack
1086 - @ref NEStridedSliceKernel / @ref NEStridedSlice
Sang-Hoon Park7249f152021-01-22 11:55:03 +00001087 - NEElementwiseUnaryKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001088 - @ref NERsqrtLayer
1089 - @ref NEExpLayer
1090 - @ref NEReverseKernel / @ref NEReverse
1091 - @ref NEArgMinMaxLayer
1092 - @ref NEStackLayerKernel / @ref NEStackLayer
1093 - @ref NERangeKernel / @ref NERange
1094 - @ref NEPadLayer
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001095 - NEMemsetKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001096 - @ref NEGatherKernel / @ref NEGather
1097 - @ref NEElementwiseComparison
1098 - @ref NEElementwiseComparisonStatic
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001099 - NEComparisonOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001100 - @ref NEElementwiseDivision
1101 - New OpenCL kernels / functions:
1102 - @ref CLSelectKernel / @ref CLSelect
1103 - @ref CLTileKernel / @ref CLTile
1104 - @ref CLComparisonKernel / @ref CLComparison
1105 - @ref CLArgMinMaxLayer
1106 - @ref CLElementwiseMax
1107 - @ref CLElementwiseMin
1108 - @ref CLElementwiseSquaredDiff
1109 - @ref CLStackLayerKernel / @ref CLStackLayer
1110 - @ref CLReverse / @ref CLReverseKernel
1111 - @ref CLRsqrtLayer
1112 - @ref CLExpLayer
Michele Di Giorgioc9c89052021-01-26 10:20:17 +00001113 - CLElementWiseUnaryLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001114 - CLGEMMReshapeLHSMatrixKernel
1115 - CLGEMMReshapeRHSMatrixKernel
1116 - CLGEMMMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001117 - @ref CLRangeKernel / @ref CLRange
1118 - @ref CLUnstack
1119 - @ref CLGatherKernel / @ref CLGather
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001120 - CLGEMMLowpMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001121 - New CPP kernels / functions:
1122 - @ref CPPDetectionOutputLayer
1123 - @ref CPPTopKV / @ref CPPTopKVKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001124 - Added new examples:
1125 - graph_ssd_mobilenet.cpp
1126 - graph_mobilenet_v2.cpp
1127 - graph_resnet12.cpp
1128 - graph_srcnn955.cpp
1129 - graph_vgg_vdsr.cpp
1130 - graph_inception_resnet_v1.cpp
1131 - Add 4D tensors support to
1132 - @ref NESoftmaxLayer
1133 - Fused activation in @ref CLWinogradConvolutionLayer
Jakub Sujakee301b32021-06-04 09:46:08 +01001134 - Extended @ref NEPermute to support more cases
1135 - Added Neon™/SVE GEMM Hybrid kernels
Isabella Gottardi62538972019-02-12 19:52:44 +00001136 - Added u8 and s8 hybrid assembly kernels
1137 - Introduced GEMM strategy name in NEGEMMAssemblyWrapper
1138 - Improved @ref CLTuner
1139 - Fused the bias addition within @ref CLGEMM
1140 - Added support for QASYMM8 LOGISTIC activation in @ref NEActivationLayer
1141 - Added NHWC data layout support to:
1142 - @ref NEScale for F16
1143 - @ref CLNormalizationLayer IN_MAP_2D for FP32/FP16
1144 - @ref NEL2NormalizeLayer for FP32/FP16
1145 - @ref NENormalizationLayer IN_MAP_2D for FP32/FP16
1146 - @ref CLROIAlignLayer
Manuel Bottini5209be52019-02-13 16:34:56 +00001147 - @ref CLGenerateProposalsLayer
Isabella Gottardi62538972019-02-12 19:52:44 +00001148 - Added QASYMM8 support to the following kernels:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001149 - NEArithmeticAdditionKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001150 - @ref NEScale
1151 - Added new tests and improved validation and benchmarking suites.
giuros01a69a88b2019-01-31 16:29:19 +00001152 - Deprecated functions/interfaces
1153 - Usage of inner_border_right and inner_border_top has been deprecated in @ref CLDeconvolutionLayer and @ref NEDeconvolutionLayer
1154
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001155v18.11 Public major release
1156 - Various bug fixes.
1157 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001158 - New Arm® Neon™ kernels / functions:
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001159 - @ref NEChannelShuffleLayer / @ref NEChannelShuffleLayerKernel
1160 - @ref NEReduceMean
1161 - @ref NEReorgLayer / @ref NEReorgLayerKernel
1162 - @ref NEPriorBoxLayer / @ref NEPriorBoxLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001163 - NEUpsampleLayer / NEUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001164 - NEYOLOLayer / NEYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001165 - New OpenCL kernels / functions:
1166 - @ref CLBatchToSpaceLayer / @ref CLBatchToSpaceLayerKernel
1167 - @ref CLBoundingBoxTransform / @ref CLBoundingBoxTransformKernel
Manuel Bottini5209be52019-02-13 16:34:56 +00001168 - @ref CLComputeAllAnchorsKernel
1169 - @ref CLGenerateProposalsLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001170 - @ref CLNormalizePlanarYUVLayer / @ref CLNormalizePlanarYUVLayerKernel
1171 - @ref CLReorgLayer / @ref CLReorgLayerKernel
1172 - @ref CLSpaceToBatchLayer / @ref CLSpaceToBatchLayerKernel
1173 - @ref CLPadLayer
1174 - @ref CLReduceMean
1175 - @ref CLPriorBoxLayer / @ref CLPriorBoxLayerKernel
1176 - @ref CLROIAlignLayer / @ref CLROIAlignLayerKernel
1177 - @ref CLSlice
1178 - @ref CLSplit
1179 - @ref CLStridedSlice / @ref CLStridedSliceKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001180 - CLUpsampleLayer / CLUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001181 - CLYOLOLayer / CLYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001182 - New CPP kernels / functions:
1183 - @ref CPPBoxWithNonMaximaSuppressionLimit / @ref CPPBoxWithNonMaximaSuppressionLimitKernel
1184 - Added the validate method in:
1185 - @ref NEDepthConvertLayer
1186 - @ref NEFloor / @ref CLFloor
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001187 - NEGEMMMatrixAdditionKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001188 - @ref NEReshapeLayer / @ref CLReshapeLayer
1189 - @ref CLScale
1190 - Added new examples:
1191 - graph_shufflenet.cpp
1192 - graph_yolov3.cpp
1193 - Added documentation for add a new function or kernel.
1194 - Improved doxygen documentation adding a list of the existing functions.
1195 - Add 4D tensors support to
Georgios Pinitas09f24972019-05-17 18:14:40 +01001196 - CLWidthConcatenateLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001197 - CLFlattenLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001198 - @ref CLSoftmaxLayer
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001199 - Add dot product support for CLDepthwiseConvolutionLayer3x3NHWCKernel non-unit stride
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001200 - Add SVE support
1201 - Fused batch normalization into convolution layer weights in @ref CLFuseBatchNormalization
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001202 - Fuses activation in CLDepthwiseConvolutionLayer3x3NCHWKernel, CLDepthwiseConvolutionLayer3x3NHWCKernel and @ref NEGEMMConvolutionLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001203 - Added NHWC data layout support to:
1204 - @ref CLChannelShuffleLayer
1205 - @ref CLDeconvolutionLayer
1206 - @ref CLL2NormalizeLayer
1207 - Added QASYMM8 support to the following kernels:
Manuel Bottini3b131ab2021-02-19 18:16:44 +00001208 - CLScaleKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001209 - NEDepthwiseConvolutionLayer3x3Kernel
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001210 - CLPixelWiseMultiplicationKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001211 - Added FP16 support to the following kernels:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001212 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001213 - NEDepthwiseConvolutionLayer3x3Kernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001214 - @ref CLNormalizePlanarYUVLayerKernel
1215 - @ref CLWinogradConvolutionLayer (5x5 kernel)
1216 - More tests added to both validation and benchmarking suites.
1217
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001218v18.08 Public major release
1219 - Various bug fixes.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001220 - Various optimisations.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001221 - Updated recommended NDK version to r17b.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001222 - Removed support for QS8/QS16 data types.
1223 - Added support for grouped convolution in @ref CLConvolutionLayer.
1224 - Added NHWC data layout support to:
Georgios Pinitas09f24972019-05-17 18:14:40 +01001225 - NEDepthConcatenateLayer / CLDepthConcatenateLayer
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001226 - @ref NEWinogradConvolutionLayer / @ref CLWinogradConvolutionLayer
1227 - @ref CLDepthwiseConvolutionLayer
1228 - @ref CLDirectConvolutionLayer
1229 - @ref CLConvolutionLayer
1230 - @ref CLScale
Manuel Bottinid844c082021-07-14 12:58:54 +01001231 - CLIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001232 - New Arm® Neon™ kernels / functions:
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001233 - @ref NERNNLayer
1234 - New OpenCL kernels / functions:
1235 - @ref CLArithmeticDivision
1236 - Introduced prepare() stage support in the graph API for GLES.
1237 - Added support for memory reusage when trying to allocate smaller CLTensors.
1238 - Enabled NHWC execution on graph examples.
1239 - Added JPEG accessor for validation purposes.
1240 - Added validate methods to some kernels / functions.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001241
1242v18.05 Public major release
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001243 - Various bug fixes.
1244 - Various optimisations.
Jakub Sujakee301b32021-06-04 09:46:08 +01001245 - Major redesign in the interface for the Neon™ kernels implemented in assembly.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001246 - 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 +01001247 - Added NEGEMMAssemblyWrapper and AssemblyKernelGlue which are used to execute assembly kernels in Neon™ functions.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001248 - Minor changes to the CPUInfo type to make it compatible with the new assembly gemm interface.
Jakub Sujakee301b32021-06-04 09:46:08 +01001249 - Moved Neon™ assembly kernels to the folder src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001250 - Improved doxygen documentation.
1251 - Improved memory management for layer's transitions.
1252 - Added support for NHWC data layout in tensors.
1253 - Added NHWC data layout support to:
1254 - @ref NEGEMMConvolutionLayer
1255 - @ref NEDirectConvolutionLayer
1256 - @ref NEPoolingLayer / @ref CLPoolingLayer
1257 - @ref NEBatchNormalizationLayer / @ref CLBatchNormalizationLayer
1258 - @ref NEDepthwiseConvolutionLayer
1259 - @ref NEScale
Georgios Pinitasf7c5a412020-12-03 14:38:33 +00001260 - NEIm2Col
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001261 - Added support for dilated convolutions in @ref NEConvolutionLayer and @ref CLConvolutionLayer.
1262 - New OpenCL kernels / functions:
1263 - @ref CLChannelShuffleLayer / @ref CLChannelShuffleLayerKernel
Teresa Charlin91b7f742021-04-12 13:57:00 +01001264 - CLConvertFullyConnectedWeightsKernel / @ref CLConvertFullyConnectedWeights
Sheri Zhang7e20e292021-02-02 11:49:34 +00001265 - @ref CLCopy / CLCopyKernel
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001266 - @ref CLLSTMLayer
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001267 - @ref CLRNNLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001268 - CLWidthConcatenateLayer / CLWidthConcatenateLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +01001269 - CLWinogradFilterTransformKernel / @ref CLWinogradConvolutionLayer
1270 - CLWinogradInputTransformKernel / CLWinogradInputTransform
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001271 - New Arm® Neon™ kernels / functions:
Teresa Charlin562bee52021-04-13 17:44:15 +01001272 - NEConvertFullyConnectedWeightsKernel / @ref NEConvertFullyConnectedWeights.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001273 - Created the validate method in @ref CLDepthwiseConvolutionLayer.
1274 - Beta and gamma are no longer mandatory arguments in @ref NEBatchNormalizationLayer and @ref CLBatchNormalizationLayer.
1275 - Added depth multiplier support in @ref NEDepthwiseConvolutionLayer and @ref CLDepthwiseConvolutionLayer.
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001276 - Added broadcast multiply support in @ref NEPixelWiseMultiplication / NEPixelWiseMultiplicationKernel.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001277 - Port mobilenet example to NHWC data layout.
1278 - Enabled Winograd method in @ref CLConvolutionLayer.
1279 - Renamed NEWinogradLayer to @ref NEWinogradConvolutionLayer.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001280 - Updated @ref NEWinogradConvolutionLayer to use highly optimised assembly kernels in src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001281 - Added memory manager support in GLES functions.
1282 - Major refactoring of the graph API.
1283 - Added GLES backend in the graph API.
1284 - Added support for the memory manager in the graph API.
1285 - Enabled Winograd Convolution method in the graph API.
1286 - Added support for grouped convolutions in the graph API.
Manuel Bottini10b38262021-02-19 18:16:44 +00001287 - Replaced NEDeconvolutionLayerUpsampleKernel with NEScaleKernel in @ref NEDeconvolutionLayer.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001288 - Added fast maths flag in @ref CLConvolutionLayer.
1289 - Added new tests and benchmarks in validation and benchmark frameworks
Jakub Sujakee301b32021-06-04 09:46:08 +01001290 - Merge Activation layer with Convolution Layer (Neon™, CL, GLES)
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001291 - Added support to OpenCL 2.0 SVM
1292 - Added support to import memory in OpenCL tensors.
1293 - Added the prepare() method to perform any one off pre-processing before running the function.
1294 - Added new examples:
1295 - graph_inception_v4.cpp
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001296 - graph_resnext50.cpp
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001297 - Added memory measurement instrument for CL.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001298
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001299v18.03 Public maintenance release
1300 - Various bug fixes.
Anthony Barbier3762e742018-03-02 11:49:33 +00001301 - Fixed bug in @ref NEActivationLayer
1302 - Fix in @ref CLTuner when using batches.
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001303 - Updated recommended NDK version to r16b (And fixed warnings).
1304 - Fixed bug in validation code.
1305 - Added Inception v4 graph example.
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001306 - Renamed NEWinogradLayer.cpp to @ref NEWinogradConvolutionLayer
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001307
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001308v18.02 Public major release
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001309 - Various Arm® Neon™ / OpenCL / GLES optimisations.
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001310 - Various bug fixes.
1311 - Changed default number of threads on big LITTLE systems.
1312 - Refactored examples and added:
1313 - graph_mobilenet_qassym8
1314 - graph_resnet
1315 - graph_squeezenet_v1_1
Anthony Barbier3762e742018-03-02 11:49:33 +00001316 - Renamed @ref CLConvolutionLayer into @ref CLGEMMConvolutionLayer and created a new @ref CLConvolutionLayer to select the fastest convolution method.
1317 - 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 +00001318 - Added in place support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001319 - @ref CLActivationLayer
1320 - @ref CLBatchNormalizationLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001321 - Added QASYMM8 support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001322 - @ref CLActivationLayer
1323 - @ref CLDepthwiseConvolutionLayer
1324 - @ref NEDepthwiseConvolutionLayer
1325 - @ref NESoftmaxLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001326 - Added FP16 support to:
Manuel Bottini387259a2020-05-21 17:14:36 +01001327 - CLDepthwiseConvolutionLayer3x3
Anthony Barbier3762e742018-03-02 11:49:33 +00001328 - @ref CLDepthwiseConvolutionLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001329 - Added broadcasting support to NEArithmeticAddition / @ref CLArithmeticAddition / @ref CLPixelWiseMultiplication
Anthony Barbier3762e742018-03-02 11:49:33 +00001330 - Added fused batched normalization and activation to @ref CLBatchNormalizationLayer and @ref NEBatchNormalizationLayer
1331 - Added support for non-square pooling to @ref NEPoolingLayer and @ref CLPoolingLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001332 - New OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001333 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001334 - New Arm® Neon™ kernels / functions
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001335 - Added name() method to all kernels.
1336 - Added support for Winograd 5x5.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001337 - NEPermuteKernel / @ref NEPermute
Michalis Spyrou96f977e2021-07-01 12:20:56 +01001338 - CpuWinogradConv2dTransformInputKernel / NEWinogradLayer
1339 - CpuWinogradConv2dTransformOutputKernel / NEWinogradLayer
1340 - CpuWinogradConv2dTransformWeightsKernel / NEWinogradLayer
Anthony Barbiere1553372018-07-16 18:53:52 +01001341 - Renamed NEWinogradLayerKernel into NEWinogradLayerBatchedGEMMKernel
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001342 - New GLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001343 - GCTensorShiftKernel / GCTensorShift
Pablo Tellof6c572c2018-02-14 12:47:30 +00001344
Anthony Barbier64c95a02018-01-22 18:48:55 +00001345v18.01 Public maintenance release
1346 - Various bug fixes
1347 - Added some of the missing validate() methods
Anthony Barbier3762e742018-03-02 11:49:33 +00001348 - Added @ref CLDeconvolutionLayerUpsampleKernel / @ref CLDeconvolutionLayer @ref CLDeconvolutionLayerUpsample
Sheri Zhang7e20e292021-02-02 11:49:34 +00001349 - Added CLPermuteKernel / @ref CLPermute
Anthony Barbier64c95a02018-01-22 18:48:55 +00001350 - Added method to clean the programs cache in the CL Kernel library.
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001351 - Added GCArithmeticAdditionKernel / GCArithmeticAddition
1352 - Added GCDepthwiseConvolutionLayer3x3Kernel / GCDepthwiseConvolutionLayer3x3
1353 - Added GCNormalizePlanarYUVLayerKernel / GCNormalizePlanarYUVLayer
1354 - Added GCScaleKernel / GCScale
1355 - Added GCWeightsReshapeKernel / GCConvolutionLayer
Anthony Barbier64c95a02018-01-22 18:48:55 +00001356 - Added FP16 support to the following GLES compute kernels:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001357 - GCCol2ImKernel
1358 - GCGEMMInterleave4x4Kernel
1359 - GCGEMMTranspose1xWKernel
1360 - GCIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001361 - Refactored Arm® Neon™ Winograd (NEWinogradLayerKernel)
Manuel Bottini327225d2021-04-13 13:09:30 +01001362 - Added NEDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001363 - Added QASYMM8 support to the following Arm® Neon™ kernels:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001364 - NEDepthwiseConvolutionLayer3x3Kernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001365 - @ref NEFillBorderKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +00001366 - NEPoolingLayerKernel
Anthony Barbier64c95a02018-01-22 18:48:55 +00001367 - Added new examples:
1368 - graph_cl_mobilenet_qasymm8.cpp
1369 - graph_inception_v3.cpp
1370 - gc_dc.cpp
1371 - More tests added to both validation and benchmarking suites.
1372
Gian Marcoff850932017-12-11 12:37:17 +00001373v17.12 Public major release
1374 - Most machine learning functions on OpenCL support the new data type QASYMM8
1375 - Introduced logging interface
1376 - Introduced opencl timer
1377 - Reworked GEMMLowp interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001378 - Added new Arm® Neon™ assembly kernels for GEMMLowp, SGEMM and HGEMM
Gian Marcoff850932017-12-11 12:37:17 +00001379 - Added validation method for most Machine Learning kernels / functions
1380 - Added new graph examples such as googlenet, mobilenet, squeezenet, vgg16 and vgg19
1381 - Added sgemm example for OpenCL
1382 - Added absolute difference example for GLES compute
1383 - Added new tests and benchmarks in validation and benchmark frameworks
1384 - Added new kernels / functions for GLES compute
1385
1386 - New OpenGL ES kernels / functions
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001387 - GCAbsoluteDifferenceKernel / GCAbsoluteDifference
1388 - GCActivationLayerKernel / GCActivationLayer
1389 - GCBatchNormalizationLayerKernel / GCBatchNormalizationLayer
1390 - GCCol2ImKernel
1391 - GCDepthConcatenateLayerKernel / GCDepthConcatenateLayer
1392 - GCDirectConvolutionLayerKernel / GCDirectConvolutionLayer
1393 - GCDropoutLayerKernel / GCDropoutLayer
1394 - GCFillBorderKernel / GCFillBorder
1395 - GCGEMMInterleave4x4Kernel / GCGEMMInterleave4x4
1396 - GCGEMMMatrixAccumulateBiasesKernel / GCGEMMMatrixAdditionKernel / GCGEMMMatrixMultiplyKernel / GCGEMM
1397 - GCGEMMTranspose1xWKernel / GCGEMMTranspose1xW
1398 - GCIm2ColKernel
1399 - GCNormalizationLayerKernel / GCNormalizationLayer
1400 - GCPixelWiseMultiplicationKernel / GCPixelWiseMultiplication
1401 - GCPoolingLayerKernel / GCPoolingLayer
1402 - GCLogits1DMaxKernel / GCLogits1DShiftExpSumKernel / GCLogits1DNormKernel / GCSoftmaxLayer
1403 - GCTransposeKernel / GCTranspose
Gian Marcoff850932017-12-11 12:37:17 +00001404
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001405 - New Arm® Neon™ kernels / functions
Pablo Telloeb82fd22018-02-23 13:43:50 +00001406 - arm_compute::NEGEMMLowpAArch64A53Kernel / arm_compute::NEGEMMLowpAArch64Kernel / arm_compute::NEGEMMLowpAArch64V8P4Kernel / arm_compute::NEGEMMInterleavedBlockedKernel / arm_compute::NEGEMMLowpAssemblyMatrixMultiplyCore
1407 - arm_compute::NEHGEMMAArch64FP16Kernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001408 - NEDepthwiseConvolutionLayer3x3Kernel / NEDepthwiseIm2ColKernel / NEGEMMMatrixVectorMultiplyKernel / NEDepthwiseVectorToTensorKernel / @ref NEDepthwiseConvolutionLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001409 - NEGEMMLowpOffsetContributionKernel / NEGEMMLowpMatrixAReductionKernel / NEGEMMLowpMatrixBReductionKernel / NEGEMMLowpMatrixMultiplyCore
Manuel Bottiniae58bdf2021-06-17 17:18:45 +01001410 - NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001411 - NEWinogradLayer / NEWinogradLayerKernel
Gian Marcoff850932017-12-11 12:37:17 +00001412
1413 - New OpenCL kernels / functions
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001414 - CLGEMMLowpOffsetContributionKernel / CLGEMMLowpMatrixAReductionKernel / CLGEMMLowpMatrixBReductionKernel / CLGEMMLowpMatrixMultiplyCore
1415 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Gian Marcoff850932017-12-11 12:37:17 +00001416
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001417 - New graph nodes for Arm® Neon™ and OpenCL
Georgios Pinitasd9eb2752018-04-03 13:44:29 +01001418 - graph::BranchLayer
1419 - graph::DepthConvertLayer
1420 - graph::DepthwiseConvolutionLayer
1421 - graph::DequantizationLayer
1422 - graph::FlattenLayer
1423 - graph::QuantizationLayer
1424 - graph::ReshapeLayer
Gian Marcoff850932017-12-11 12:37:17 +00001425
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001426v17.10 Public maintenance release
1427 - Bug fixes:
1428 - Check the maximum local workgroup size supported by OpenCL devices
1429 - Minor documentation updates (Fixed instructions to build the examples)
Anthony Barbier3762e742018-03-02 11:49:33 +00001430 - Introduced a graph::GraphContext
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001431 - Added a few new Graph nodes, support for branches and grouping.
1432 - Automatically enable cl_printf in debug builds
1433 - Fixed bare metal builds for armv7a
1434 - Added AlexNet and cartoon effect examples
1435 - 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)
1436
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001437v17.09 Public major release
1438 - Experimental Graph support: initial implementation of a simple stream API to easily chain machine learning layers.
Anthony Barbier3762e742018-03-02 11:49:33 +00001439 - 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 +01001440 - New validation and benchmark frameworks (Boost and Google frameworks replaced by homemade framework).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001441 - Most machine learning functions support both fixed point 8 and 16 bit (QS8, QS16) for both Arm® Neon™ and OpenCL.
1442 - New Arm® Neon™ kernels / functions:
Pablo Telloeb82fd22018-02-23 13:43:50 +00001443 - arm_compute::NEGEMMAssemblyBaseKernel arm_compute::NEGEMMAArch64Kernel
Manuel Bottini00f4dfc2021-03-10 09:55:14 +00001444 - NEDequantizationLayerKernel / @ref NEDequantizationLayer
Georgios Pinitas70eb53b2021-01-06 19:42:21 +00001445 - NEFloorKernel / @ref NEFloor
Anthony Barbier3762e742018-03-02 11:49:33 +00001446 - @ref NEL2NormalizeLayerKernel / @ref NEL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001447 - NEQuantizationLayerKernel NEMinMaxLayerKernel / @ref NEQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001448 - @ref NEROIPoolingLayerKernel / @ref NEROIPoolingLayer
1449 - @ref NEReductionOperationKernel / @ref NEReductionOperation
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001450 - NEReshapeLayerKernel / @ref NEReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001451
1452 - New OpenCL kernels / functions:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001453 - CLDepthwiseConvolutionLayer3x3NCHWKernel CLDepthwiseConvolutionLayer3x3NHWCKernel CLDepthwiseIm2ColKernel CLDepthwiseVectorToTensorKernel CLDepthwiseWeightsReshapeKernel / CLDepthwiseConvolutionLayer3x3 @ref CLDepthwiseConvolutionLayer CLDepthwiseSeparableConvolutionLayer
Manuel Bottini9e73c932021-03-02 17:40:42 +00001454 - CLDequantizationLayerKernel / CLDequantizationLayer
Sheri Zhang1efed922021-03-10 22:43:38 +00001455 - CLDirectConvolutionLayerKernel / @ref CLDirectConvolutionLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001456 - CLFlattenLayer
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001457 - CLFloorKernel / @ref CLFloor
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001458 - CLGEMMTranspose1xW
Michele Di Giorgioee82d342021-01-05 16:14:28 +00001459 - CLGEMMMatrixVectorMultiplyKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001460 - @ref CLL2NormalizeLayerKernel / @ref CLL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001461 - CLQuantizationLayerKernel CLMinMaxLayerKernel / @ref CLQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001462 - @ref CLROIPoolingLayerKernel / @ref CLROIPoolingLayer
1463 - @ref CLReductionOperationKernel / @ref CLReductionOperation
Sheri Zhang7e20e292021-02-02 11:49:34 +00001464 - CLReshapeLayerKernel / @ref CLReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001465
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001466v17.06 Public major release
1467 - Various bug fixes
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001468 - Added support for fixed point 8 bit (QS8) to the various Arm® Neon™ machine learning kernels.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001469 - Added unit tests and benchmarks (AlexNet, LeNet)
1470 - Added support for sub tensors.
1471 - Added infrastructure to provide GPU specific optimisation for some OpenCL kernels.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001472 - Added @ref OMPScheduler (OpenMP) scheduler for Neon
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001473 - Added @ref SingleThreadScheduler scheduler for Arm® Neon™ (For bare metal)
ramelg01b2eba7f2021-12-23 08:32:08 +00001474 - User can specify their own scheduler by implementing the @ref IScheduler interface.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001475 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001476 - @ref CLBatchNormalizationLayerKernel / @ref CLBatchNormalizationLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001477 - CLDepthConcatenateLayerKernel / CLDepthConcatenateLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001478 - CLHOGOrientationBinningKernel CLHOGBlockNormalizationKernel, CLHOGDetectorKernel / CLHOGDescriptor CLHOGDetector CLHOGGradient CLHOGMultiDetection
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001479 - CLLocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedLayer
Manuel Bottinid87aded2021-07-16 10:23:31 +01001480 - CLWeightsReshapeKernel / CLConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001481 - New C++ kernels:
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001482 - CPPDetectionWindowNonMaximaSuppressionKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001483 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001484 - @ref NEBatchNormalizationLayerKernel / @ref NEBatchNormalizationLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001485 - NEDepthConcatenateLayerKernel / NEDepthConcatenateLayer
Manuel Bottini327225d2021-04-13 13:09:30 +01001486 - NEDirectConvolutionLayerKernel / @ref NEDirectConvolutionLayer
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001487 - NELocallyConnectedMatrixMultiplyKernel / NELocallyConnectedLayer
Manuel Bottini29599d02021-07-06 15:01:35 +01001488 - NEWeightsReshapeKernel / NEConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001489
1490v17.05 Public bug fixes release
1491 - Various bug fixes
1492 - Remaining of the functions ported to use accurate padding.
1493 - Library does not link against OpenCL anymore (It uses dlopen / dlsym at runtime instead to determine whether or not OpenCL is available).
1494 - Added "free" method to allocator.
1495 - Minimum version of g++ required for armv7 Linux changed from 4.8 to 4.9
1496
1497v17.04 Public bug fixes release
1498
1499 The following functions have been ported to use the new accurate padding:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001500 - CLColorConvertKernel
1501 - CLEdgeNonMaxSuppressionKernel
1502 - CLEdgeTraceKernel
1503 - CLGaussianPyramidHorKernel
1504 - CLGaussianPyramidVertKernel
1505 - CLGradientKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001506 - NEChannelCombineKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001507 - NEFillArrayKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001508 - NEGaussianPyramidHorKernel
1509 - NEGaussianPyramidVertKernel
Georgios Pinitas09d34512018-08-30 16:02:11 +01001510 - NEHarrisScoreFP16Kernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001511 - NEHarrisScoreKernel
1512 - NEHOGDetectorKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +00001513 - NELogits1DMaxKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001514 - NELogits1DShiftExpSumKernel
1515 - NELogits1DNormKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001516 - NENonMaximaSuppression3x3FP16Kernel
1517 - NENonMaximaSuppression3x3Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001518
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001519v17.03.1 First Major public release of the sources
1520 - Renamed the library to arm_compute
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001521 - New CPP target introduced for C++ kernels shared between Arm® Neon™ and CL functions.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001522 - New padding calculation interface introduced and ported most kernels / functions to use it.
1523 - New OpenCL kernels / functions:
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +01001524 - CLGEMMLowpMatrixMultiplyKernel / CLGEMMLowp
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001525 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001526 - @ref NENormalizationLayerKernel / @ref NENormalizationLayer
Teresa Charlind1dc09c2021-03-04 15:24:45 +00001527 - NETransposeKernel / @ref NETranspose
Michalis Spyrou373b4072021-01-20 16:41:12 +00001528 - NELogits1DMaxKernel, NELogits1DShiftExpSumKernel, NELogits1DNormKernel / @ref NESoftmaxLayer
Manuel Bottini24b89202021-07-01 18:13:33 +01001529 - NEIm2ColKernel, NECol2ImKernel, NEConvolutionLayerWeightsReshapeKernel / @ref NEConvolutionLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +01001530 - NEGEMMMatrixAccumulateBiasesKernel / @ref NEFullyConnectedLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001531 - NEGEMMLowpMatrixMultiplyKernel / NEGEMMLowp
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001532
1533v17.03 Sources preview
1534 - New OpenCL kernels / functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001535 - CLGradientKernel, CLEdgeNonMaxSuppressionKernel, CLEdgeTraceKernel / CLCannyEdge
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001536 - GEMM refactoring + FP16 support: CLGEMMInterleave4x4Kernel, CLGEMMTranspose1xWKernel, CLGEMMMatrixMultiplyKernel, CLGEMMMatrixAdditionKernel / @ref CLGEMM
Michele Di Giorgiof6f78762020-07-06 11:27:21 +01001537 - CLGEMMMatrixAccumulateBiasesKernel / @ref CLFullyConnectedLayer
Teresa Charlin27886092021-02-25 20:15:01 +00001538 - CLTransposeKernel / @ref CLTranspose
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001539 - CLLKTrackerInitKernel, CLLKTrackerStage0Kernel, CLLKTrackerStage1Kernel, CLLKTrackerFinalizeKernel / CLOpticalFlow
Anthony Barbier3762e742018-03-02 11:49:33 +00001540 - @ref CLNormalizationLayerKernel / @ref CLNormalizationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001541 - CLLaplacianPyramid, CLLaplacianReconstruct
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001542 - New Arm® Neon™ kernels / functions:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001543 - NEActivationLayerKernel / @ref NEActivationLayer
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001544 - GEMM refactoring + FP16 support (Requires armv8.2 CPU): NEGEMMInterleave4x4Kernel, NEGEMMTranspose1xWKernel, NEGEMMMatrixMultiplyKernel, NEGEMMMatrixAdditionKernel / @ref NEGEMM
Michele Di Giorgio19289042021-02-03 16:05:00 +00001545 - NEPoolingLayerKernel / @ref NEPoolingLayer
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001546
1547v17.02.1 Sources preview
1548 - New OpenCL kernels / functions:
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +00001549 - CLLogits1DMaxKernel, CLLogits1DShiftExpSumKernel, CLLogits1DNormKernel / @ref CLSoftmaxLayer
Michele Di Giorgioe1314662021-02-01 17:09:32 +00001550 - CLPoolingLayerKernel / @ref CLPoolingLayer
Manuel Bottinid844c082021-07-14 12:58:54 +01001551 - CLIm2ColKernel, CLCol2ImKernel, CLConvolutionLayerWeightsReshapeKernel / CLConvolutionLayer
Adnan AlSinan6863fa02022-02-04 13:04:55 +00001552 - CLRemapKernel / CLRemap
Michalis Spyrou473cb012021-02-23 11:48:12 +00001553 - CLGaussianPyramidHorKernel, CLGaussianPyramidVertKernel / CLGaussianPyramid, CLGaussianPyramidHalf, CLGaussianPyramidOrb
1554 - CLMinMaxKernel, CLMinMaxLocationKernel / CLMinMaxLocation
1555 - CLNonLinearFilterKernel / CLNonLinearFilter
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001556 - New Arm® Neon™ FP16 kernels (Requires armv8.2 CPU)
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001557 - NEAccumulateWeightedFP16Kernel
1558 - NEBox3x3FP16Kernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001559 - NENonMaximaSuppression3x3FP16Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001560
1561v17.02 Sources preview
1562 - New OpenCL kernels / functions:
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001563 - CLActivationLayerKernel / @ref CLActivationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001564 - CLChannelCombineKernel / CLChannelCombine
1565 - CLDerivativeKernel / CLChannelExtract
1566 - CLFastCornersKernel / CLFastCorners
1567 - CLMeanStdDevKernel / CLMeanStdDev
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001568 - New Arm® Neon™ kernels / functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001569 - HOG / SVM: NEHOGOrientationBinningKernel, NEHOGBlockNormalizationKernel, NEHOGDetectorKernel, NEHOGNonMaximaSuppressionKernel / NEHOGDescriptor, NEHOGDetector, NEHOGGradient, NEHOGMultiDetection
1570 - NENonLinearFilterKernel / NENonLinearFilter
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001571 - Introduced a CLScheduler to manage the default context and command queue used by the runtime library and create synchronisation events.
1572 - Switched all the kernels / functions to use tensors instead of images.
1573 - Updated documentation to include instructions to build the library from sources.
1574
1575v16.12 Binary preview release
1576 - Original release
1577
Sheri Zhangd813bab2021-04-30 16:53:41 +01001578 */
Ramy Elgammal0d274b72022-08-05 13:14:57 +01001579} // namespace arm_compute