blob: d658b5354f01cfb9f7bf3770efe4cf37e487d6c9 [file] [log] [blame]
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +00001///
SiCong Li5afb2492023-02-01 14:39:41 +00002/// Copyright (c) 2017-2023 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
SiCong Li5afb2492023-02-01 14:39:41 +000043v23.02 Public major release
Jakub Sujakc7799a72023-02-06 17:42:47 +000044 - New features:
45 - Rework the experimental dynamic fusion interface by identifying auxiliary and intermediate tensors, and specifying an explicit output operator.
46 - Add the following operators to the experimental dynamic fusion API:
47 - GpuAdd, GpuCast, GpuClamp, GpuDepthwiseConv2d, GpuMul, GpuOutput, GpuPool2d, GpuReshape, GpuResize, GpuSoftmax, GpuSub.
48 - Add SME/SME2 kernels for GeMM, Winograd convolution, Depthwise convolution and Pooling.
49 - Add new flag @ref ITensorInfo::lock_paddings() to tensors to prevent extending tensor paddings.
50 - Add new OpenCL kernel to compute indirect convolution:
51 - \link opencl::kernels::ClIndirectConv2dKernel ClIndirectConv2dKernel \endlink
52 - Add new OpenCL kernel to compute transposed convolution:
53 - \link opencl::kernels::ClTransposedConvolutionKernel ClTransposedConvolutionKernel \endlink
54 - Add experimental support for CPU only Bazel and CMake builds.
55 - Performance optimizations:
56 - Optimize CPU base-e exponential functions for FP32.
57 - Optimize CPU StridedSlice by copying first dimension elements in bulk where possible.
58 - Optimize CPU quantized Subtraction by reusing the quantized Addition kernel.
59 - Optimize CPU ReduceMean by removing quantization steps and performing the operation in integer domain.
60 - Optimize GPU Scale and Dynamic Fusion GpuResize by removing quantization steps and performing the operation in integer domain.
SiCong Li5afb2492023-02-01 14:39:41 +000061 - Update recommended/minimum NDK version to r20b.
Jakub Sujakc7799a72023-02-06 17:42:47 +000062 - Various optimizations and bug fixes.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010063
Viet-Hoa Dob1f82882022-11-11 11:29:50 +000064v22.11 Public major release
65 - New features:
66 - Add new experimental dynamic fusion API.
Viet-Hoa Do293ab602022-11-15 10:51:26 +000067 - Add CPU batch matrix multiplication with adj_x = false and adj_y = false for FP32.
Viet-Hoa Dob1f82882022-11-11 11:29:50 +000068 - Add CPU MeanStdDevNorm for QASYMM8.
69 - Add CPU and GPU GELU activation function for FP32 and FP16.
70 - Add CPU swish activation function for FP32 and FP16.
71 - Performance optimizations:
72 - Optimize CPU bilinear scale for FP32, FP16, QASYMM8, QASYMM8_SIGNED, U8 and S8.
73 - Optimize CPU activation functions using LUT-based implementation:
74 - Sigmoid function for QASYMM8 and QASYMM8_SIGNED.
75 - Hard swish function for QASYMM8_SIGNED.
76 - Optimize CPU addition for QASYMM8 and QASYMM8_SIGNED using fixed-point arithmetic.
77 - Optimize CPU multiplication, subtraction and activation layers by considering tensors as 1D.
78 - Optimize GPU depthwise convolution kernel and heuristic.
79 - Optimize GPU Conv2d heuristic.
80 - Optimize CPU MeanStdDevNorm for FP16.
81 - Optimize CPU tanh activation function for FP16 using rational approximation.
82 - Improve GPU GeMMLowp start-up time.
83 - Various optimizations and bug fixes.
84
SiCong Life1b1f62022-05-19 18:58:31 +010085v22.08 Public major release
Ramy Elgammal0d274b72022-08-05 13:14:57 +010086 - Various bug fixes.
87 - Disable unsafe FP optimizations causing accuracy issues in:
88 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
89 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv3dKernel \endlink
90 - @ref CLDepthwiseConvolutionLayerNativeKernel
91 - Add Dynamic Fusion of Elementwise Operators: Div, Floor, Add.
92 - Optimize the gemm_reshaped_rhs_nly_nt OpenCL kernel using the arm_matrix_multiply extension available for Arm® Mali™-G715 and Arm® Mali™-G615.
93 - Add support for the arm_matrix_multiply extension in the gemmlowp_mm_reshaped_only_rhs_t OpenCL kernel.
94 - Expand GPUTarget list with missing Mali™ GPUs product names: G57, G68, G78AE, G610, G510, G310.
95 - Extend the direct convolution 2d interface to configure the block size.
96 - Update ClConv2D heuristic to use direct convolution.
97 - Use official Khronos® OpenCL extensions:
98 - Add cl_khr_integer_dot_product extension support.
99 - Add support of OpenCL 3.0 non-uniform workgroup.
100 - Cpu performance optimizations:
101 - Add LUT-based implementation of Hard Swish and Leaky ReLU activation function for aarch64 build.
102 - Optimize Add layer by considering the input tensors as 1D array.
103 - Add fixed-format BF16, FP16 and FP32 Neon™ GEMM kernels to support variable weights.
104 - Add new winograd convolution kernels implementation and update the ACL \link arm_compute::cpu::CpuWinogradConv2d CpuWinogradConv2d\endlink operator.
105 - Add experimental support for native builds for Windows on Arm®.
Ramy Elgammal966218d2022-08-11 16:23:22 +0100106 - 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 +0100107 - Build flag change: toolchain_prefix, compiler_prefix:
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100108 - Use empty string "" to suppress any prefixes.
109 - Use "auto" to use default (auto) prefixes chosen by the build script. This is the default behavior when unspecified.
110 - Any other string will be used as custom prefixes to the compiler and the rest of toolchain tools.
111 - The default behaviour when prefix is unspecified does not change, but its signifier has been changed from empty string "" to "auto".
112 - armv7a with Android build will no longer be tested or maintained.
SiCong Life1b1f62022-05-19 18:58:31 +0100113
Adnan AlSinan2921e5b2022-05-16 14:30:41 +0100114v22.05 Public major release
115 - Various bug fixes.
116 - Various optimizations.
117 - Add support for NDK r23b.
118 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
119 - New Arm® Neon™ kernels / functions :
120 - \link opencl::kernels::ClPool3dKernel ClPool3dKernel \endlink
121 - New OpenCL kernels / functions :
122 - \link cpu::kernels::CpuPool3dKernel CpuPool3dKernel \endlink
123 - Improve the start-up times for the following OpenCL kernels:
124 - \link opencl::kernels::ClWinogradInputTransformKernel ClWinogradInputTransformKernel \endlink
125 - \link opencl::kernels::ClWinogradOutputTransformKernel ClWinogradOutputTransformKernel \endlink
126 - \link opencl::kernels::ClWinogradFilterTransformKernel ClWinogradFilterTransformKernel \endlink
127 - \link opencl::kernels::ClHeightConcatenateKernel ClHeightConcatenateKernel \endlink
128 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
129 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
130 - \link cpu::kernels::CpuDepthwiseConv2dNativeKernel CpuDepthwiseConv2dNativeKernel \endlink
131 - \link cpu::kernels::CpuGemmMatrixAdditionKernel CpuGemmMatrixAdditionKernel \endlink
132 - \link cpu::kernels::CpuGemmMatrixMultiplyKernel CpuGemmMatrixMultiplyKernel \endlink
133 - @ref NEFuseBatchNormalizationKernel
134 - @ref NEL2NormalizeLayerKernel
135
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000136v22.02 Public major release
137 - Various bug fixes.
138 - Various optimizations.
139 - Update A510 arm_gemm cpu Kernels.
140 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
141 - Improve the start-up time for the following OpenCL kernels:
142 - @ref CLScale
143 - @ref CLGEMM
144 - @ref CLDepthwiseConvolutionLayer
145 - \link opencl::kernels::ClIm2ColKernel ClIm2ColKernel \endlink
146 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
147 - Remove functions:
148 - CLRemap
149 - NERemap
150 - Remove padding from OpenCL kernels:
151 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
152 - Remove padding from Cpu kernels:
153 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
154 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
155 - \link cpu::kernels::CpuActivationKernel CpuActivationKernel \endlink
156 - \link cpu::kernels::CpuAddKernel CpuAddKernel \endlink
157 - \link cpu::kernels::CpuElementwiseKernel CpuElementwiseKernel \endlink
158 - \link cpu::CpuSoftmaxGeneric CpuSoftmaxKernel \endlink
159 - @ref NEBoundingBoxTransformKernel
160 - @ref NECropKernel
161 - @ref NEComputeAllAnchorsKernel
162 - @ref NEInstanceNormalizationLayerKernel
Adnan AlSinanbb8b2352022-02-14 14:30:38 +0000163 - NEMaxUnpoolingLayerKernel
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000164 - @ref NEMeanStdDevNormalizationKernel
165 - @ref NERangeKernel
166 - @ref NEROIAlignLayerKernel
167 - @ref NESelectKernel
168
Sheri Zhang5dda2172021-10-15 19:54:17 +0100169v21.11 Public major release
170 - Various bug fixes.
Gunes Bayir08773702021-11-05 12:34:34 +0000171 - Various optimizations:
172 - 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 +0000173 - Improve performance of Softmax on GPU for Uint8/Int8
Sheri Zhang5dda2172021-10-15 19:54:17 +0100174 - New OpenCL kernels / functions:
175 - @ref CLConv3D
176 - New Arm® Neon™ kernels / functions:
177 - @ref NEConv3D
Gunes Bayir08773702021-11-05 12:34:34 +0000178 - Support configurable build by a selected subset of operator list
179 - Support MobileBert on Neon™ backend
180 - Improve operator/function logging
181 - Remove padding from OpenCL kernels:
182 - ClPool2dKernel
183 - ClScaleKernel
184 - ClGemmMatrixMultiplyReshapedKernel
185 - Remove padding from Cpu kernels:
186 - CpuPool2dKernel
187 - Remove Y padding from OpenCL kernels:
188 - ClGemmMatrixMultiplyKernel
189 - ClGemmReshapedRHSMatrixKernel
190 - Remove legacy GeMM kernels in gemm_v1.cl
Sheri Zhang5dda2172021-10-15 19:54:17 +0100191
Freddie Liardet77014ff2021-08-05 15:50:31 +0100192v21.08 Public major release
193 - Various bug fixes.
194 - Various optimizations:
195 - Improve LWS (Local-Workgroup-Size) heuristic in OpenCL for GeMM, Direct Convolution and Winograd Transformations when OpenCL tuner is not used
196 - Improve QASYMM8/QSYMM8 performance on OpenCL for various Arm® Mali™ GPU architectures
197 - Add dynamic weights support in Fully connected layer (CPU/GPU)
198 - Various performance optimizations for floating-point data types (CPU/GPU)
199 - Add a reduced core library build arm_compute_core_v2
200 - Expose Operator API
201 - Support fat binary build for arm8.2-a via fat_binary build flag
202 - Add CPU discovery capabilities
203 - Add data type f16 support for:
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000204 - CLRemapKernel
Freddie Liardet77014ff2021-08-05 15:50:31 +0100205 - Port the following functions to stateless API:
206 - @ref CLConvolutionLayer
207 - @ref CLFlattenLayer
208 - @ref CLFullyConnectedLayer
209 - @ref CLGEMM
210 - @ref CLGEMMConvolutionLayer
211 - @ref CLGEMMLowpMatrixMultiplyCore
212 - @ref CLWinogradConvolutionLayer
213 - @ref NEConvolutionLayer
214 - @ref NEFlattenLayer
215 - @ref NEFullyConnectedLayer
216 - @ref NEGEMM
217 - @ref NEGEMMConv2d
218 - @ref NEGEMMConvolutionLayer
219 - @ref NEGEMMLowpMatrixMultiplyCore
220 - @ref NEWinogradConvolutionLayer
221 - Remove the following functions:
222 - CLWinogradInputTransform
223 - Remove CLCoreRuntimeContext
224 - Remove ICPPSimpleKernel
225 - Rename file arm_compute/runtime/CL/functions/CLElementWiseUnaryLayer.h to arm_compute/runtime/CL/functions/CLElementwiseUnaryLayer.h
226
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000227v21.05 Public major release
Sheri Zhangc2bed952021-05-06 12:12:38 +0100228 - Various bug fixes.
229 - Various optimisations.
230 - Various documentation updates:
Jakub Sujakee301b32021-06-04 09:46:08 +0100231 - Add supported operators and corresponding Android NNAPI operators.
232 - Documentation reorg into user guide and contributor guide.
Sheri Zhangc2bed952021-05-06 12:12:38 +0100233 - Add support for a global allocator for OpenCL tensors
234 - Add experimental support for [CLVK](https://github.com/kpet/clvk).
235 - Add data type S32 support for:
236 - @ref opencl::kernels::ClArithmeticKernel
237 - Add data type QASYMM8 support for:
238 - @ref CLROIPoolingLayer
239 - @ref CLROIPoolingLayerKernel
240 - @ref NEROIPoolingLayer
241 - @ref NEROIPoolingLayerKernel
242 - Add per-channel quantization support for:
243 - @ref CLDeconvolutionLayer
244 - @ref CLDirectDeconvolutionLayer
245 - @ref NEConvolutionLayer
246 - @ref NEDeconvolutionLayer
247 - Remove padding from OpenCL kernels:
248 - @ref CLL2NormalizeLayerKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100249 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Sheri Zhangc2bed952021-05-06 12:12:38 +0100250 - @ref CLNormalizationLayerKernel
251 - @ref CLNormalizePlanarYUVLayerKernel
252 - @ref opencl::kernels::ClMulKernel
253 - @ref CLReductionOperationKernel
254 - @ref CLROIPoolingLayerKernel
255 - Remove computer vision support from Arm® Neon™ backend
256 - Remove the following functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000257 - NEAbsoluteDifference
258 - NEAccumulate
259 - NEBox3x3
260 - NECannyEdge
261 - NEChannelCombine
262 - NEChannelExtract
263 - NEColorConvert
Michalis Spyrou473cb012021-02-23 11:48:12 +0000264 - NEConvolution
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000265 - NEDerivative
266 - NEDilate
267 - NEEqualizeHistogram
268 - NEErode
269 - NEFastCorners
270 - NEGaussian3x3
271 - NEGaussian5x5
272 - NEGaussianPyramid
273 - NEHOGDescriptor
274 - NEHOGDetector
275 - NEHOGGradient
276 - NEHOGMultiDetection
277 - NEHarrisCorners
278 - NEHistogram
279 - NEIntegralImage
280 - NELaplacianPyramid
281 - NELaplacianReconstruct
282 - NEMagnitude
283 - NEMeanStdDev
284 - NEMedian3x3
285 - NEMinMaxLocation
286 - NENonLinearFilter
287 - NEOpticalFlow
288 - NEPhase
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000289 - NEScharr3x3
290 - NESobel3x3
291 - NESobel5x5
292 - NESobel7x7
293 - NETableLookup
294 - NEThreshold
295 - NEWarpAffine
Michalis Spyrou473cb012021-02-23 11:48:12 +0000296 - NEWarpPerspectiveKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000297 - Remove all GLES kernels / functions / tests / examples
Sheri Zhangc2bed952021-05-06 12:12:38 +0100298 - Remove computer vision support from CL backend
299 - Remove the following functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000300 - CLAbsoluteDifference
301 - CLAccumulate
302 - CLBox3x3
303 - CLCannyEdge
304 - CLChannelCombine
305 - CLChannelExtract
306 - CLColorConvert
307 - CLConvolution
308 - CLDerivative
309 - CLDilate
310 - CLEqualizeHistogram
311 - CLErode
312 - CLFastCorners
313 - CLGaussian3x3
314 - CLGaussian5x5
315 - CLGaussianPyramid
316 - CLHOGDescriptor
317 - CLHOGDetector
318 - CLHOGGradient
319 - CLHOGMultiDetection
320 - CLHarrisCorners
321 - CLHistogram
322 - CLIntegralImage
323 - CLLaplacianPyramid
324 - CLLaplacianReconstruct
325 - CLMagnitude
326 - CLMeanStdDev
327 - CLMedian3x3
328 - CLMinMaxLocation
329 - CLNonLinearFilter
330 - CLOpticalFlow
331 - CLPhase
332 - CLScharr3x3
333 - CLSobel3x3
334 - CLSobel5x5
335 - CLSobel7x7
336 - CLTableLookup
337 - CLThreshold
338 - CLWarpAffine
339 - CLWarpPerspective
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100340
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000341v21.02 Public major release
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000342 - Various bug fixes.
343 - Various optimisations.
Georgios Pinitas45514032020-12-30 00:03:09 +0000344 - Upgrade C++ standard to C++14
345 - Add macOS support
Giorgio Arena1055dc12021-02-19 09:53:06 +0000346 - Add Armv8-R AArch64 architecture support
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000347 - Add SVE/SVE2 support for:
Manuel Bottini10b38262021-02-19 18:16:44 +0000348 - NEScaleKernel
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000349 - @ref NEActivationLayer
350 - @ref NEArithmeticAddition
351 - @ref NEBatchNormalizationLayerKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000352 - @ref cpu::kernels::CpuLogits1DSoftmaxKernel
353 - @ref cpu::kernels::CpuLogits1DMaxKernel
354 - @ref cpu::kernels::CpuElementwiseUnaryKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000355 - Remove padding from OpenCL kernels:
Sheri Zhang1efed922021-03-10 22:43:38 +0000356 - CLDirectConvolutionLayerKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000357 - @ref CLArgMinMaxLayerKernel
358 - @ref CLPadLayerKernel
359 - @ref CLROIAlignLayerKernel
360 - @ref CLRangeKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000361 - CLScaleKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000362 - @ref CLSelectKernel
363 - @ref CLBitwiseKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000364 - @ref opencl::kernels::ClFloorKernel
Teresa Charlin27886092021-02-25 20:15:01 +0000365 - CLTransposeKernel
Giorgio Arena5b50f422021-02-17 11:43:05 +0000366 - Deprecate functions in CLTuner:
367 - add_lws_to_table
368 - import_lws_table
369 - lws_table
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000370 - Remove functions:
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000371 - NELocallyConnectedLayer / CLLocallyConnectedLayer
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000372 - NEIm2Col
373 - NECol2Im
374 - NEGEMMInterleave4x4
375 - NEGEMMTranspose1xW
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +0000376 - NEComputeAllAnchors / CLComputeAllAnchors
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000377 - NEGEMMAssemblyDispatch
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000378 - NEUpsampleLayer / CLUpsampleLayer
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000379 - Remove kernels:
Georgios Pinitasd308df32020-12-01 16:56:36 +0000380 - NEGEMMMatrixVectorMultiplyKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000381 - NELocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedMatrixMultiplyKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000382 - NEUpsampleLayerKernel / CLUpsampleLayerKernel
Gian Marco Iodicef5aad512021-02-08 17:34:40 +0000383 - Extend OpenCL tuner with workgroup batch size support
384 - 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 +0000385 - Add functionality to load the OpenCL GEMM heuristics at runtime
386 - The GEMM heuristic file (MLGO) can be used to update the default GEMM heuristics available for OpenCL
Giorgio Arenacd7d1782021-02-22 14:58:37 +0000387 - 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 +0100388 - Note: data-type decoupling is in progress and experimental. Warning of unused symbols might be raised
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000389
SiCong Li96209c72020-08-21 12:28:30 +0100390v20.11 Public major release
morgolock70b1eb82020-11-24 13:54:19 +0000391 - Various bug fixes.
392 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000393 - 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 +0000394 This is planned to be resolved in 21.02 release.
morgolock70b1eb82020-11-24 13:54:19 +0000395 - Added new data type QASYMM8_SIGNED support for @ref NEROIAlignLayer.
SiCong Li903f8cc2020-08-27 10:17:10 +0100396 - Added new data type S32 support for:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000397 - NEArithmeticSubtraction
398 - NEArithmeticSubtractionKernel
SiCong Libb88f892020-08-28 11:18:47 +0100399 - @ref NEPixelWiseMultiplication
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000400 - NEPixelWiseMultiplicationKernel
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000401 - NEElementwiseDivision
402 - NEDivisionOperationKernel
SiCong Li96209c72020-08-21 12:28:30 +0100403 - Interface change
404 - Properly support softmax axis to have the same meaning as other major frameworks. That is, axis now defines the dimension
405 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.
406 The supported value range of axis is [-rank, rank).
407 This change applies to the following functions:
408 - @ref NESoftmaxLayer
409 - @ref NELogSoftmaxLayer
410 - @ref CLSoftmaxLayer
411 - @ref CLLogSoftmaxLayer
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000412 - GCSoftmaxLayer
Sheri Zhang824061d2020-10-26 15:46:37 +0000413 - New OpenCL kernels / functions:
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100414 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
morgolock0e728492020-11-20 11:03:33 +0000415 - @ref CLLogicalNot
416 - @ref CLLogicalAnd
417 - @ref CLLogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000418 - New Arm® Neon™ kernels / functions:
morgolock0e728492020-11-20 11:03:33 +0000419 - @ref NELogicalNot
420 - @ref NELogicalAnd
421 - @ref NELogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000422 - Removed padding from Arm® Neon™ kernels:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000423 - NEComplexPixelWiseMultiplicationKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000424 - NENonMaximaSuppression3x3Kernel
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000425 - NERemapKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100426 - NEGEMMInterleave4x4Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100427 - NEDirectConvolutionLayerKernel
Manuel Bottini10b38262021-02-19 18:16:44 +0000428 - NEScaleKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000429 - NELocallyConnectedMatrixMultiplyKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100430 - NEGEMMLowpOffsetContributionKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100431 - NEGEMMTranspose1xWKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +0000432 - NEPoolingLayerKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000433 - NEConvolutionKernel
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100434 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100435 - NEGEMMLowpMatrixMultiplyKernel
Michele Di Giorgio53832b22021-06-21 14:45:44 +0100436 - NEGEMMMatrixMultiplyKernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100437 - NEDirectConvolutionLayerOutputStageKernel
Sheri Zhanged367132020-10-08 15:46:16 +0100438 - @ref NEReductionOperationKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100439 - NEGEMMLowpMatrixAReductionKernel
440 - NEGEMMLowpMatrixBReductionKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000441 - Removed padding from OpenCL kernels:
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000442 - CLBatchConcatenateLayerKernel
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000443 - CLElementwiseOperationKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000444 - @ref CLBatchNormalizationLayerKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000445 - CLPoolingLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100446 - CLWinogradInputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100447 - CLGEMMLowpMatrixMultiplyNativeKernel
448 - CLGEMMLowpMatrixAReductionKernel
449 - CLGEMMLowpMatrixBReductionKernel
450 - CLGEMMLowpOffsetContributionOutputStageKernel
451 - CLGEMMLowpOffsetContributionKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100452 - CLWinogradOutputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100453 - CLGEMMLowpMatrixMultiplyReshapedKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000454 - @ref CLFuseBatchNormalizationKernel
455 - @ref CLDepthwiseConvolutionLayerNativeKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100456 - CLDepthConvertLayerKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000457 - CLCopyKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100458 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000459 - CLActivationLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100460 - CLWinogradFilterTransformKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000461 - CLWidthConcatenateLayerKernel
462 - CLWidthConcatenate4TensorsKernel
463 - CLWidthConcatenate2TensorsKernel
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000464 - CLLogits1DMaxShiftExpSumKernel
465 - CLLogits1DNormKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000466 - CLHeightConcatenateLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100467 - CLGEMMMatrixMultiplyKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100468 - CLGEMMLowpQuantizeDownInt32ScaleKernel
469 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
470 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000471 - CLDepthConcatenateLayerKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100472 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000473 - Removed OpenCL kernels / functions:
474 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
475 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel
476 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel
morgolock00c76012020-11-06 10:40:12 +0000477 - 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 +0100478 - CLLocallyConnectedLayer
479 - CLLocallyConnectedMatrixMultiplyKernel
morgolock00c76012020-11-06 10:40:12 +0000480 - CLAbsoluteDifference
481 - CLAbsoluteDifferenceKernel
482 - CLAccumulate
483 - CLAccumulateKernel
484 - CLAccumulateSquared
485 - CLAccumulateSquaredKernel
486 - CLAccumulateWeighted
487 - CLAccumulateWeightedKernel
488 - CLAccumulateWeightedFP16Kernel
489 - CLBox3x3
490 - CLBox3x3Kernel
491 - CLBox3x3FP16Kernel
492 - CLCannyEdge
493 - CLChannelCombine
494 - CLChannelCombineKernel
495 - CLChannelExtract
496 - CLChannelExtractKernel
497 - CLColorConvert
498 - CLColorConvertKernel
499 - CLConvolution3x3
500 - CLConvolutionRectangle
501 - CLConvolutionRectangleKernel
502 - CLConvolutionSquare
503 - CLConvolutionKernel
504 - CLDerivative
505 - CLDerivativeKernel
506 - CLDilate
507 - CLDilateKernel
508 - CLEqualizeHistogram
509 - CLErode
510 - CLErodeKernel
511 - CLFastCorners
512 - CLFastCornersKernel
513 - CLGaussian3x3
514 - CLGaussian3x3Kernel
515 - CLGaussian5x5
516 - CLGaussian5x5HorKernel
517 - CLGaussian5x5VertKernel
518 - CLGaussianPyramid
519 - CLGaussianPyramidHalf
520 - CLGaussianPyramidOrb
521 - CLHarrisCorners
522 - CLHarrisScoreKernel
523 - CLHarrisScoreFP16Kernel
524 - CLHistogram
525 - CLHistogramKernel
526 - CLHOGOrientationBinningKernel
527 - CLHOGBlockNormalizationKernel
528 - CLHOGDetectorKernel
529 - CLHOGNonMaximaSuppressionKernel
530 - CLHOGDescriptor
531 - CLHOGDetector
532 - CLHOGGradient
533 - CLHOGMultiDetection
534 - CLHOGOrientationBinningKernel
535 - CLHOGBlockNormalizationKernel
536 - CLHOGDetectorKernel
537 - CLIntegralImage
538 - CLIntegralImageKernel
539 - CLLaplacianReconstruct
540 - CLLaplacianPyramid
541 - CLMagnitude
542 - CLMagnitudePhaseKernel
543 - CLMedian3x3
544 - CLMedian3x3Kernel
545 - CLMinMaxLocation
546 - CLMinMaxLocationKernel
547 - CLNonLinearFilter
548 - CLNonLinearFilterKernel
549 - CLNonMaximaSuppression3x3
550 - CLNonMaximaSuppression3x3FP16Kernel
551 - CLNonMaximaSuppression3x3Kernel
552 - CLOpticalFlow
553 - CLPhase
554 - CLRemap
555 - CLRemapKernel
556 - CLScharr3x3
557 - CLScharr3x3Kernel
558 - CLSobel3x3
559 - CLSobel3x3Kernel
560 - CLSobel5x5
561 - CLSobel5x5HorKernel
562 - CLSobel5x5VertKernel
563 - CLSobel7x7
564 - CLSobel7x7HorKernel
565 - CLSobel7x7VertKernel
566 - CLThreshold
567 - CLThresholdKernel
568 - CLWarpAffine
569 - CLWarpAffineKernel
570 - CLWarpPerspective
571 - CLWarpPerspectiveKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000572 - 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 +0100573 - NELocallyConnectedLayer
574 - NELocallyConnectedMatrixMultiplyKernel
morgolock0c862652020-11-06 08:59:45 +0000575 - NEAbsoluteDifference
576 - NEAbsoluteDifferenceKernel
577 - NEAccumulate
578 - NEAccumulateKernel
579 - NEAccumulateSquared
580 - NEAccumulateSquaredKernel
581 - NEAccumulateWeighted
582 - NEAccumulateWeightedKernel
583 - NEAccumulateWeightedFP16Kernel
584 - NEBox3x3
585 - NEBox3x3Kernel
586 - NEBox3x3FP16Kernel
587 - NECannyEdge
588 - NEChannelCombine
589 - NEChannelCombineKernel
590 - NEChannelExtract
591 - NEChannelExtractKernel
592 - NEColorConvert
593 - NEColorConvertKernel
594 - NEConvolution3x3
595 - NEConvolutionRectangle
596 - NEConvolutionRectangleKernel
597 - NEConvolutionSquare
598 - NEConvolutionKernel
599 - NEDerivative
600 - NEDerivativeKernel
601 - NEDilate
602 - NEDilateKernel
603 - NEEqualizeHistogram
604 - NEErode
605 - NEErodeKernel
606 - NEFastCorners
607 - NEFastCornersKernel
608 - NEGaussian3x3
609 - NEGaussian3x3Kernel
610 - NEGaussian5x5
611 - NEGaussian5x5HorKernel
612 - NEGaussian5x5VertKernel
613 - NEGaussianPyramid
614 - NEGaussianPyramidHalf
615 - NEGaussianPyramidOrb
616 - NEHarrisCorners
617 - NEHarrisScoreKernel
618 - NEHarrisScoreFP16Kernel
619 - NEHistogram
620 - NEHistogramKernel
621 - NEHOGOrientationBinningKernel
622 - NEHOGBlockNormalizationKernel
623 - NEHOGDetectorKernel
624 - NEHOGNonMaximaSuppressionKernel
625 - NEHOGDescriptor
626 - NEHOGDetector
627 - NEHOGGradient
628 - NEHOGMultiDetection
629 - NEHOGOrientationBinningKernel
630 - NEHOGBlockNormalizationKernel
631 - NEHOGDetectorKernel
632 - NEIntegralImage
633 - NEIntegralImageKernel
634 - NELaplacianReconstruct
635 - NELaplacianPyramid
636 - NEMagnitude
637 - NEMagnitudePhaseKernel
638 - NEMedian3x3
639 - NEMedian3x3Kernel
640 - NEMinMaxLocation
641 - NEMinMaxLocationKernel
642 - NENonLinearFilter
643 - NENonLinearFilterKernel
644 - NENonMaximaSuppression3x3
645 - NENonMaximaSuppression3x3FP16Kernel
646 - NENonMaximaSuppression3x3Kernel
647 - NEOpticalFlow
648 - NEPhase
649 - NERemap
650 - NERemapKernel
651 - NEScharr3x3
652 - NEScharr3x3Kernel
653 - NESobel3x3
654 - NESobel3x3Kernel
655 - NESobel5x5
656 - NESobel5x5HorKernel
657 - NESobel5x5VertKernel
658 - NESobel7x7
659 - NESobel7x7HorKernel
660 - NESobel7x7VertKernel
661 - NEThreshold
662 - NEThresholdKernel
663 - NEWarpAffine
664 - NEWarpAffineKernel
665 - NEWarpPerspective
666 - NEWarpPerspectiveKernel
morgolockd6ee9ed2020-11-19 10:07:14 +0000667 - Deprecated GLES kernels / functions (If a kernel is used only by the function that is being deprecated, the kernel is deprecated together):
668 - GCAbsoluteDifference
669 - GCActivationLayer
670 - GCArithmeticAddition
671 - GCBatchNormalizationLayer
672 - GCConcatenateLayer
673 - GCConvolutionLayer
674 - GCDepthwiseConvolutionLayer
675 - GCDirectConvolutionLayer
676 - GCDropoutLayer
677 - GCFillBorder
678 - GCFullyConnectedLayer
679 - GCGEMM
680 - GCGEMMInterleave4x4
681 - GCGEMMTranspose1xW
682 - GCNormalizationLayer
683 - GCNormalizePlanarYUVLayer
684 - GCPixelWiseMultiplication
685 - GCPoolingLayer
686 - GCScale
687 - GCSoftmaxLayer
688 - GCTensorShift
689 - GCTranspose
690
SiCong Li96209c72020-08-21 12:28:30 +0100691
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100692v20.08 Public major release
693 - Various bug fixes.
694 - Various optimisations.
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100695 - Added new data type QASYMM8_SIGNED support for:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100696 - @ref CLArgMinMaxLayer
697 - @ref CLArgMinMaxLayerKernel
698 - Added new data type U8 support for:
699 - @ref NECropKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000700 - CLCropKernel
Jakub Sujakee301b32021-06-04 09:46:08 +0100701 - Added align_corner support for nearest neighbor interpolation in:
Manuel Bottini10b38262021-02-19 18:16:44 +0000702 - NEScaleKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000703 - CLScaleKernel
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100704 - New OpenCL kernels / functions:
705 - @ref CLMaxUnpoolingLayerKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000706 - New Arm® Neon™ kernels / functions:
Dana Zlotnik149203b2022-01-26 12:38:03 +0200707 - NEMaxUnpoolingLayerKernel
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100708 - New graph example:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100709 - graph_yolov3_output_detector
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100710 - GEMMTuner improvements:
711 - Added fp16 support
712 - Output json files for easier integration
713 - Enabled tuning for export_to_cl_image_rhs option for RHS tensors
714 - More robust script for running benchmarks
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100715 - Removed padding from:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000716 - NEPixelWiseMultiplicationKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000717 - NEHeightConcatenateLayerKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000718 - NEThresholdKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000719 - NEBatchConcatenateLayerKernel
Teresa Charlind1dc09c2021-03-04 15:24:45 +0000720 - NETransposeKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100721 - @ref NEBatchNormalizationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000722 - NEArithmeticSubtractionKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100723 - @ref NEBoundingBoxTransformKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +0000724 - NELogits1DMaxKernel
725 - NELogits1DSoftmaxKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100726 - @ref NEROIPoolingLayerKernel
727 - @ref NEROIAlignLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +0000728 - NEYOLOLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000729 - NEUpsampleLayerKernel
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000730 - NEFloorKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000731 - NEWidthConcatenateLayerKernel
732 - NEDepthConcatenateLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100733 - @ref NENormalizationLayerKernel
734 - @ref NEL2NormalizeLayerKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +0100735 - NEFillArrayKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100736 - NEDepthConvertLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100737 - @ref NERangeKernel
738 - @ref NEPriorBoxLayer
Sheri Zhanged367132020-10-08 15:46:16 +0100739 - Removed OpenCL kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100740 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
741 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000742 - Removed Arm® Neon™ kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100743 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
744 - NEGEMMMatrixAccumulateBiasesKernel
SiCong Lid004a7a2020-05-28 15:26:41 +0100745 - Deprecated functions / interfaces:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000746 - Non-descriptor based interfaces for NEThreshold, CLThreshold
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000747 - Non-descriptor based interfaces for @ref NEScale, @ref CLScale and GCScale
748 - In @ref NESoftmaxLayer, @ref NELogSoftmaxLayer, @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer :
749 The default "axis" value for @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer is changed from 1 to 0.
morgolock9c7fed82020-08-05 12:30:56 +0100750 Only axis 0 is supported.
751 The default "axis" value for @ref NESoftmaxLayer, @ref NELogSoftmaxLayer is changed from 1 to 0.
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100752 Only axis 0 is supported.
Sang-Hoon Parka0205b92020-07-07 09:36:09 +0100753 - The support for quantized data types has been removed from @ref CLLogSoftmaxLayer due to implementation complexity.
Manuel Bottinid844c082021-07-14 12:58:54 +0100754 - 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 +0100755 - This change allows to use @ref CLGEMMConvolutionLayer without extra padding for the input and output.
756 - Only the weights/bias of @ref CLGEMMConvolutionLayer could require padding for the computation.
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100757 - Only on Arm® Mali™ Midgard GPUs, @ref CLGEMMConvolutionLayer could require padding since CLGEMMMatrixMultiplyKernel is called and currently requires padding.
758 - 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 +0100759 - 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 +0100760 - The padding requirement for the OpenCL image object is considered into the CLGEMMReshapeRHSMatrixKernel.
761 - The reshaped RHS matrix stores the weights when GEMM is used to accelerate CLGEMMConvolutionLayer.
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100762
Georgios Pinitasfd7780d2020-03-17 11:41:00 +0000763v20.05 Public major release
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000764 - Various bug fixes.
765 - Various optimisations.
Michele Di Giorgio36a551f2020-04-23 11:55:29 +0100766 - Updated recommended NDK version to r18b.
767 - Updated recommended gcc version to Linaro 6.3.1.
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000768 - Added Bfloat16 type support
769 - Added Bfloat16 support in:
Manuel Bottini29599d02021-07-06 15:01:35 +0100770 - NEWeightsReshapeKernel
771 - NEConvolutionLayerReshapeWeights
Manuel Bottini90028992021-06-30 18:29:18 +0100772 - NEIm2ColKernel
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000773 - NEIm2Col
Georgios Pinitas11d84152021-04-28 10:20:18 +0100774 - NEDepthConvertLayerKernel
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000775 - @ref NEDepthConvertLayer
776 - @ref NEGEMMConvolutionLayer
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000777 - NEGEMMAssemblyDispatch
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000778 - Added new data type QASYMM8_SIGNED support for:
779 - @ref CLDirectConvolutionLayer
780 - @ref CLDeconvolutionLayer
781 - @ref CLDirectDeconvolutionLayer
782 - @ref CLGEMMDeconvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100783 - CLGEMMLowpMatrixMultiplyReshapedKernel
784 - CLGEMMLowpQuantizeDownInt32ScaleKernel
785 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000786 - @ref CLReductionOperation
787 - @ref CLReduceMean
Sheri Zhang359c48e2020-04-30 22:53:39 +0100788 - @ref NEScale
Manuel Bottini10b38262021-02-19 18:16:44 +0000789 - NEScaleKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000790 - NEUpsampleLayer
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000791 - @ref NECast
792 - @ref NEReductionOperation
793 - @ref NEReduceMean
794 - @ref NEArgMinMaxLayer
795 - @ref NEDeconvolutionLayer
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100796 - NEGEMMLowpQuantizeDownInt32ScaleKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000797 - @ref CPPBoxWithNonMaximaSuppressionLimit
798 - @ref CPPDetectionPostProcessLayer
799 - @ref CPPPermuteKernel
800 - @ref CPPPermute
801 - @ref CPPTopKVKernel
802 - @ref CPPTopKV
Sheri Zhang359c48e2020-04-30 22:53:39 +0100803 - @ref CPPUpsample
804 - @ref CPPUpsampleKernel
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100805 - New OpenCL kernels / functions:
806 - @ref CLQLSTMLayer
807 - @ref CLQLSTMLayerNormalizationKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000808 - New Arm® Neon™ kernels / functions:
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100809 - @ref NEQLSTMLayer
810 - @ref NEQLSTMLayerNormalizationKernel
811 - Added HARD_SWISH support in:
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000812 - CLActivationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000813 - NEActivationLayerKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000814 - Deprecated OpenCL kernels / functions:
815 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
816 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000817 - Deprecated Arm® Neon™ kernels / functions:
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000818 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
819 - Removed CPP kernels / functions:
820 - CPPFlipWeightsKernel
Manuel Bottini387259a2020-05-21 17:14:36 +0100821 - Removed PoolingLayerInfo constructors without Data Layout.
822 - Removed CLDepthwiseConvolutionLayer3x3
823 - Removed NEDepthwiseConvolutionLayerOptimized
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000824 - Added support for Winograd 3x3,4x4 on Arm® Neon™ FP16:
Manuel Bottini075253a2020-05-22 12:57:18 +0100825 - @ref NEWinogradConvolutionLayer
Michalis Spyrou96f977e2021-07-01 12:20:56 +0100826 - CpuWinogradConv2dTransformInputKernel
827 - CpuWinogradConv2dTransformOutputKernel
828 - CpuWinogradConv2dTransformWeightsKernel
Manuel Bottini075253a2020-05-22 12:57:18 +0100829 - Added CLCompileContext
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000830 - Added Arm® Neon™ GEMM kernel with 2D window support
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000831
Michele Di Giorgio740872e2020-03-04 15:29:49 +0000832v20.02.1 Maintenance release
833 - Added Android-NN build script.
834
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000835v20.02 Public major release
836 - Various bug fixes.
837 - Various optimisations.
838 - Added new data type QASYMM8_SIGNED support for:
839 - @ref CLDepthwiseConvolutionLayer
Manuel Bottini387259a2020-05-21 17:14:36 +0100840 - CLDepthwiseConvolutionLayer3x3
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000841 - @ref CLGEMMConvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100842 - CLGEMMLowpMatrixMultiplyCore
843 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
844 - CLGEMMLowpMatrixMultiplyNativeKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000845 - @ref NEActivationLayer
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000846 - NEComparisonOperationKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000847 - @ref NEConvolutionLayer
848 - @ref NEDepthwiseConvolutionLayer
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100849 - NEDepthwiseConvolutionLayer3x3Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100850 - NEDirectConvolutionLayerOutputStageKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000851 - @ref NEElementwiseComparison
852 - @ref NEElementwiseMax
853 - @ref NEElementwiseMin
854 - @ref NEElementwiseSquaredDiff
855 - @ref NEFullyConnectedLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +0100856 - NEGEMMMatrixVectorMultiplyKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000857 - @ref NEPixelWiseMultiplication
858 - @ref NEPoolingLayer
859 - @ref NEPReluLayer
860 - Added support for QSYMM8_PER_CHANNEL in:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100861 - NEDepthwiseConvolutionLayer3x3Kernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000862 - Added support for split sizes in:
863 - @ref CLSplit
864 - @ref NESplit
865 - New OpenCL kernels / functions:
866 - @ref CLFill
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100867 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000868 - New Arm® Neon™ kernels / functions:
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000869 - @ref NEFill
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100870 - NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000871 - Deprecated Arm® Neon™ functions / interfaces:
Manuel Bottini387259a2020-05-21 17:14:36 +0100872 - CLDepthwiseConvolutionLayer3x3
873 - NEDepthwiseConvolutionLayerOptimized
874 - PoolingLayerInfo constructors without Data Layout.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000875 - Added support for quantization with multiplier greater than 1 on Arm® Neon™ and CL.
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000876 - Added support for quantized inputs of type QASYMM8_SIGNED and QASYMM8 to @ref CLQuantizationLayer.
877 - Added the ability to build bootcode for bare metal.
878 - Added support for generating synthetic QASYMM8 graphs.
879 - Added support for F16 datatype in VGG16.
880 - Removed pre-built binaries for GLES.
881
Michele Di Giorgiod374ff22020-01-21 10:03:20 +0000882v19.11.1 Public maintenance release
883 - Fix offset calculation in NEReductionOperationKernel.
884 - Fix data layout in NEScaleKernel for nhwc.
885 - Retain configuration step data layout to avoid side-effects.
886 - Perform sqrt in double domain for L2 pooling.
887 - Fix output shape calculation for Reduce Mean
888 - Restrict cases where optimized NEPadLayer runs.
889
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100890v19.11 Public major release
SiCong Lica1f98c2019-11-28 11:06:11 +0000891 - Various bug fixes.
892 - Various optimisations.
SiCong Li1f7f9882019-11-28 14:59:35 +0000893 - Updated recommended NDK version to r17c.
SiCong Lica1f98c2019-11-28 11:06:11 +0000894 - Deprecated OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100895 - CLDepthwiseConvolutionLayerReshapeWeightsGenericKernel
896 - CLDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000897 - CLDepthwiseSeparableConvolutionLayer
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100898 - CLDepthwiseVectorToTensorKernel
899 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000900 - Deprecated Arm® Neon™ kernels / functions:
Giorgio Arenad93e2632019-10-15 11:09:33 +0100901 - NEDepthwiseWeightsReshapeKernel
902 - NEDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000903 - NEDepthwiseSeparableConvolutionLayer
Giorgio Arenad93e2632019-10-15 11:09:33 +0100904 - NEDepthwiseVectorToTensorKernel
Manuel Bottini05069f02019-09-26 17:18:26 +0100905 - NEDepthwiseConvolutionLayer3x3
SiCong Lica1f98c2019-11-28 11:06:11 +0000906 - New OpenCL kernels / functions:
907 - @ref CLInstanceNormalizationLayerKernel / @ref CLInstanceNormalizationLayer
908 - @ref CLDepthwiseConvolutionLayerNativeKernel to replace the old generic depthwise convolution (see Deprecated
909 OpenCL kernels / functions)
910 - @ref CLLogSoftmaxLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000911 - New Arm® Neon™ kernels / functions:
SiCong Lica1f98c2019-11-28 11:06:11 +0000912 - @ref NEBoundingBoxTransformKernel / @ref NEBoundingBoxTransform
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +0000913 - @ref NEComputeAllAnchorsKernel / NEComputeAllAnchors
SiCong Lica1f98c2019-11-28 11:06:11 +0000914 - @ref NEDetectionPostProcessLayer
915 - @ref NEGenerateProposalsLayer
916 - @ref NEInstanceNormalizationLayerKernel / @ref NEInstanceNormalizationLayer
917 - @ref NELogSoftmaxLayer
918 - @ref NEROIAlignLayerKernel / @ref NEROIAlignLayer
919 - Added QASYMM8 support for:
920 - @ref CLGenerateProposalsLayer
921 - @ref CLROIAlignLayer
922 - @ref CPPBoxWithNonMaximaSuppressionLimit
923 - Added QASYMM16 support for:
924 - @ref CLBoundingBoxTransform
925 - Added FP16 support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100926 - CLGEMMMatrixMultiplyReshapedKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000927 - Added new data type QASYMM8_PER_CHANNEL support for:
Manuel Bottini9e73c932021-03-02 17:40:42 +0000928 - CLDequantizationLayer
SiCong Lica1f98c2019-11-28 11:06:11 +0000929 - @ref NEDequantizationLayer
930 - Added new data type QSYMM8_PER_CHANNEL support for:
931 - @ref CLConvolutionLayer
932 - @ref NEConvolutionLayer
933 - @ref CLDepthwiseConvolutionLayer
934 - @ref NEDepthwiseConvolutionLayer
935 - Added FP16 mixed-precision support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100936 - CLGEMMMatrixMultiplyReshapedKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000937 - CLPoolingLayerKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000938 - Added FP32 and FP16 ELU activation for:
939 - @ref CLActivationLayer
940 - @ref NEActivationLayer
941 - Added asymmetric padding support for:
942 - @ref CLDirectDeconvolutionLayer
943 - @ref CLGEMMDeconvolutionLayer
944 - @ref NEDeconvolutionLayer
945 - Added SYMMETRIC and REFLECT modes for @ref CLPadLayerKernel / @ref CLPadLayer.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000946 - Replaced the calls to NECopyKernel and NEMemsetKernel with @ref NEPadLayer in @ref NEGenerateProposalsLayer.
947 - Replaced the calls to CLCopyKernel and CLMemsetKernel with @ref CLPadLayer in @ref CLGenerateProposalsLayer.
SiCong Lica1f98c2019-11-28 11:06:11 +0000948 - Improved performance for CL Inception V3 - FP16.
949 - Improved accuracy for CL Inception V3 - FP16 by enabling FP32 accumulator (mixed-precision).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000950 - Improved Arm® Neon™ performance by enabling fusing batch normalization with convolution and depth-wise convolution layer.
951 - Improved Arm® Neon™ performance for MobileNet-SSD by improving the output detection performance.
SiCong Lica1f98c2019-11-28 11:06:11 +0000952 - Optimized @ref CLPadLayer.
953 - Optimized CL generic depthwise convolution layer by introducing @ref CLDepthwiseConvolutionLayerNativeKernel.
954 - Reduced memory consumption by implementing weights sharing.
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100955
Michele Di Giorgiod374ff22020-01-21 10:03:20 +0000956v19.08.1 Public maintenance release
957 - Fix offset calculation in NEReductionOperationKernel.
958 - Fix data layout in NEScaleKernel for nhwc.
959 - Retain configuration step data layout to avoid side-effects.
960 - Perform sqrt in double domain for L2 pooling.
961 - Fix output shape calculation for Reduce Mean
962 - Fix broadcast CLPixelwiseMultiplication with 5D tensors
963
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100964v19.08 Public major release
965 - Various bug fixes.
966 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000967 - Deprecated Arm® Neon™ functions
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100968 - NEDepthConcatenateLayer
969 - NEWidthConcatenateLayer
970 - Deprecated OpenCL kernels / functions
971 - CLDepthConcatenateLayer
972 - CLGEMMInterleave4x4Kernel / CLGEMMInterleave4x4
973 - CLGEMMTranspose1xWKernel / CLGEMMTranspose1xW
974 - CLWidthConcatenateLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000975 - New Arm® Neon™ kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100976 - @ref NEAbsLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100977 - @ref NECast
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100978 - @ref NEElementwisePower
979 - @ref NELogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100980 - @ref NELSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100981 - @ref NENegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100982 - @ref NEPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100983 - @ref NESinLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000984 - NEBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100985 - @ref NEDepthToSpaceLayerKernel / @ref NEDepthToSpaceLayer
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100986 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100987 - NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100988 - @ref NEMeanStdDevNormalizationKernel / @ref NEMeanStdDevNormalizationLayer
989 - @ref NESpaceToDepthLayerKernel / @ref NESpaceToDepthLayer
990 - New OpenCL kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100991 - @ref CLAbsLayer
992 - @ref CLElementwisePower
993 - @ref CLLogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100994 - @ref CLLSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100995 - @ref CLNegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100996 - @ref CLPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100997 - @ref CLSinLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000998 - CLBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100999 - @ref CLDepthToSpaceLayerKernel / @ref CLDepthToSpaceLayer
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001000 - CLGEMMLowpMatrixMultiplyNativeKernel
Michele Di Giorgioba14c922020-10-12 13:27:57 +01001001 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001002 - CLGEMMMatrixMultiplyNativeKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001003 - CLMeanStdDevNormalizationKernel /CLMeanStdDevNormalizationLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001004 - @ref CLSpaceToDepthLayerKernel / @ref CLSpaceToDepthLayer
1005 - New examples:
1006 - neon_opticalflow
1007 - cl_cache
1008 - neon_permute
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001009 - Added support for FP16 in @ref NEDeconvolutionLayer
1010 - Added support for FP16 in @ref CLDeconvolutionLayer
1011 - Added support for REDUCE_MIN and REDUCE_MAX in @ref ReductionOperation
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001012 - Enable the fusion of batch normalization with convolution and depthwise convolution layer for FP32 in the graph API (OpenCL only)
1013 - 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 +00001014 - Re-factored the depthwise convolution layer kernel on Arm® Neon™ for generic cases
Jakub Sujakee301b32021-06-04 09:46:08 +01001015 - Added an optimized depthwise convolution layer kernel for 5x5 filters (Neon™ only)
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001016 - Added support to enable OpenCL kernel cache. Added example showing how to load the prebuilt OpenCL kernels from a binary cache file
1017 - Altered @ref QuantizationInfo interface to support per-channel quantization.
Manuel Bottini387259a2020-05-21 17:14:36 +01001018 - The CLDepthwiseConvolutionLayer3x3 will be included by @ref CLDepthwiseConvolutionLayer to accommodate for future optimizations.
1019 - The NEDepthwiseConvolutionLayerOptimized will be included by @ref NEDepthwiseConvolutionLayer to accommodate for future optimizations.
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001020 - Removed inner_border_right and inner_border_top parameters from @ref CLDeconvolutionLayer interface
1021 - Removed inner_border_right and inner_border_top parameters from @ref NEDeconvolutionLayer interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001022 - 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 +01001023
Michalis Spyroua9c44722019-04-05 17:18:36 +01001024v19.05 Public major release
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001025 - Various bug fixes.
1026 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001027 - New Arm® Neon™ kernels / functions:
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001028 - @ref NEBatchToSpaceLayerKernel / @ref NEBatchToSpaceLayer
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001029 - NEComplexPixelWiseMultiplicationKernel / @ref NEComplexPixelWiseMultiplication
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001030 - @ref NECropKernel / @ref NECropResize
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01001031 - NEDepthwiseConvolutionAssemblyDispatch
Michalis Spyrouca82e622019-05-10 16:43:20 +01001032 - @ref NEFFTDigitReverseKernel
1033 - @ref NEFFTRadixStageKernel
1034 - @ref NEFFTScaleKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001035 - NEGEMMLowpOffsetContributionOutputStageKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001036 - NEHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001037 - @ref NESpaceToBatchLayerKernel / @ref NESpaceToBatchLayer
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001038 - @ref NEFFT1D
1039 - @ref NEFFT2D
1040 - @ref NEFFTConvolutionLayer
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001041 - New OpenCL kernels / functions:
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001042 - CLComplexPixelWiseMultiplicationKernel / @ref CLComplexPixelWiseMultiplication
Sheri Zhang7e20e292021-02-02 11:49:34 +00001043 - CLCropKernel / @ref CLCropResize
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001044 - @ref CLDeconvolutionReshapeOutputKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001045 - @ref CLFFTDigitReverseKernel
1046 - @ref CLFFTRadixStageKernel
1047 - @ref CLFFTScaleKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001048 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001049 - CLGEMMMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001050 - CLHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001051 - @ref CLDirectDeconvolutionLayer
1052 - @ref CLFFT1D
1053 - @ref CLFFT2D
1054 - @ref CLFFTConvolutionLayer
Michalis Spyrouca82e622019-05-10 16:43:20 +01001055 - @ref CLGEMMDeconvolutionLayer
1056 - New OpenGLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001057 - GCConcatenateLayer
Michalis Spyroua9c44722019-04-05 17:18:36 +01001058 - Deprecated functions/interfaces
Georgios Pinitas09f24972019-05-17 18:14:40 +01001059 - GCDepthConcatenateLayer
1060 - NEWidthConcatenateLayer
1061 - NEDepthConcatenateLayer
1062 - CLWidthConcatenateLayer
1063 - CLDepthConcatenateLayer
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001064 - CLGEMMInterleave4x4
1065 - CLGEMMTranspose1xW
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001066 - Support different quantization info in CLConcatLayer.
1067 - Add checks on different input/output quantization info were not supported.
1068 - Tensors have different quantization information.
1069 - Add FP16 support checks.
1070 - Fix output quantization CLDeptwiseConv3x3 when activation is fused.
1071 - New graph examples:
1072 - graph_convolution
1073 - graph_fully_connected
1074 - graph_depthwise_convolution
1075 - Deepspeech v0.4.1
1076 - Add support for QASYMM8 in NEArithmeticSubtractionKernel.
1077 - Add support for QASYMM8 in NEPixelWiseMultiplicationKernel.
1078 - Add support for QASYMM8 NEDeconvolution.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001079 - Add support for DequantizationLayer for Neon/CL.
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001080 - Add support for dilation in CLDepthwiseConvolution.
1081 - Fuse offset contribution with the output stage when we use NEGEMMLowpMatrixMultiplyCore.
1082 - Optimize CLDeconvolution.
1083 - Add StackLayer to the graph API.
1084 - Add support for "reflect" padding mode in NEPad.
1085 - Winograd 7x7 NHWC on OpenCL.
1086 - Rework CL ML layers to run exclusively on CL.
1087 - Support different quantization info in PoolingLayer.
1088 - Implement and test import memory interfaces.
1089 - Added new tests and removed old ones.
1090 - Various clang-tidy fixes.
Michalis Spyroua9c44722019-04-05 17:18:36 +01001091
giuros01a69a88b2019-01-31 16:29:19 +00001092v19.02 Public major release
Isabella Gottardi62538972019-02-12 19:52:44 +00001093 - Various bug fixes.
1094 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001095 - New Arm® Neon™ kernels / functions:
Isabella Gottardi62538972019-02-12 19:52:44 +00001096 - @ref NETileKernel / @ref NETile
1097 - @ref NEFuseBatchNormalizationKernel / @ref NEFuseBatchNormalization
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001098 - NEElementwiseOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001099 - @ref NEElementwiseMax
1100 - @ref NEElementwiseMin
1101 - @ref NEElementwiseSquaredDiff
1102 - @ref NESelectKernel / @ref NESelect
1103 - @ref NESplit
1104 - @ref NESlice
1105 - @ref NEUnstack
1106 - @ref NEStridedSliceKernel / @ref NEStridedSlice
Sang-Hoon Park7249f152021-01-22 11:55:03 +00001107 - NEElementwiseUnaryKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001108 - @ref NERsqrtLayer
1109 - @ref NEExpLayer
1110 - @ref NEReverseKernel / @ref NEReverse
1111 - @ref NEArgMinMaxLayer
1112 - @ref NEStackLayerKernel / @ref NEStackLayer
1113 - @ref NERangeKernel / @ref NERange
1114 - @ref NEPadLayer
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001115 - NEMemsetKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001116 - @ref NEGatherKernel / @ref NEGather
1117 - @ref NEElementwiseComparison
1118 - @ref NEElementwiseComparisonStatic
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001119 - NEComparisonOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001120 - @ref NEElementwiseDivision
1121 - New OpenCL kernels / functions:
1122 - @ref CLSelectKernel / @ref CLSelect
1123 - @ref CLTileKernel / @ref CLTile
1124 - @ref CLComparisonKernel / @ref CLComparison
1125 - @ref CLArgMinMaxLayer
1126 - @ref CLElementwiseMax
1127 - @ref CLElementwiseMin
1128 - @ref CLElementwiseSquaredDiff
1129 - @ref CLStackLayerKernel / @ref CLStackLayer
1130 - @ref CLReverse / @ref CLReverseKernel
1131 - @ref CLRsqrtLayer
1132 - @ref CLExpLayer
Michele Di Giorgioc9c89052021-01-26 10:20:17 +00001133 - CLElementWiseUnaryLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001134 - CLGEMMReshapeLHSMatrixKernel
1135 - CLGEMMReshapeRHSMatrixKernel
1136 - CLGEMMMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001137 - @ref CLRangeKernel / @ref CLRange
1138 - @ref CLUnstack
1139 - @ref CLGatherKernel / @ref CLGather
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001140 - CLGEMMLowpMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001141 - New CPP kernels / functions:
1142 - @ref CPPDetectionOutputLayer
1143 - @ref CPPTopKV / @ref CPPTopKVKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001144 - Added new examples:
1145 - graph_ssd_mobilenet.cpp
1146 - graph_mobilenet_v2.cpp
1147 - graph_resnet12.cpp
1148 - graph_srcnn955.cpp
1149 - graph_vgg_vdsr.cpp
1150 - graph_inception_resnet_v1.cpp
1151 - Add 4D tensors support to
1152 - @ref NESoftmaxLayer
1153 - Fused activation in @ref CLWinogradConvolutionLayer
Jakub Sujakee301b32021-06-04 09:46:08 +01001154 - Extended @ref NEPermute to support more cases
1155 - Added Neon™/SVE GEMM Hybrid kernels
Isabella Gottardi62538972019-02-12 19:52:44 +00001156 - Added u8 and s8 hybrid assembly kernels
1157 - Introduced GEMM strategy name in NEGEMMAssemblyWrapper
1158 - Improved @ref CLTuner
1159 - Fused the bias addition within @ref CLGEMM
1160 - Added support for QASYMM8 LOGISTIC activation in @ref NEActivationLayer
1161 - Added NHWC data layout support to:
1162 - @ref NEScale for F16
1163 - @ref CLNormalizationLayer IN_MAP_2D for FP32/FP16
1164 - @ref NEL2NormalizeLayer for FP32/FP16
1165 - @ref NENormalizationLayer IN_MAP_2D for FP32/FP16
1166 - @ref CLROIAlignLayer
Manuel Bottini5209be52019-02-13 16:34:56 +00001167 - @ref CLGenerateProposalsLayer
Isabella Gottardi62538972019-02-12 19:52:44 +00001168 - Added QASYMM8 support to the following kernels:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001169 - NEArithmeticAdditionKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001170 - @ref NEScale
1171 - Added new tests and improved validation and benchmarking suites.
giuros01a69a88b2019-01-31 16:29:19 +00001172 - Deprecated functions/interfaces
1173 - Usage of inner_border_right and inner_border_top has been deprecated in @ref CLDeconvolutionLayer and @ref NEDeconvolutionLayer
1174
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001175v18.11 Public major release
1176 - Various bug fixes.
1177 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001178 - New Arm® Neon™ kernels / functions:
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001179 - @ref NEChannelShuffleLayer / @ref NEChannelShuffleLayerKernel
1180 - @ref NEReduceMean
1181 - @ref NEReorgLayer / @ref NEReorgLayerKernel
1182 - @ref NEPriorBoxLayer / @ref NEPriorBoxLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001183 - NEUpsampleLayer / NEUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001184 - NEYOLOLayer / NEYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001185 - New OpenCL kernels / functions:
1186 - @ref CLBatchToSpaceLayer / @ref CLBatchToSpaceLayerKernel
1187 - @ref CLBoundingBoxTransform / @ref CLBoundingBoxTransformKernel
Manuel Bottini5209be52019-02-13 16:34:56 +00001188 - @ref CLComputeAllAnchorsKernel
1189 - @ref CLGenerateProposalsLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001190 - @ref CLNormalizePlanarYUVLayer / @ref CLNormalizePlanarYUVLayerKernel
1191 - @ref CLReorgLayer / @ref CLReorgLayerKernel
1192 - @ref CLSpaceToBatchLayer / @ref CLSpaceToBatchLayerKernel
1193 - @ref CLPadLayer
1194 - @ref CLReduceMean
1195 - @ref CLPriorBoxLayer / @ref CLPriorBoxLayerKernel
1196 - @ref CLROIAlignLayer / @ref CLROIAlignLayerKernel
1197 - @ref CLSlice
1198 - @ref CLSplit
1199 - @ref CLStridedSlice / @ref CLStridedSliceKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001200 - CLUpsampleLayer / CLUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001201 - CLYOLOLayer / CLYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001202 - New CPP kernels / functions:
1203 - @ref CPPBoxWithNonMaximaSuppressionLimit / @ref CPPBoxWithNonMaximaSuppressionLimitKernel
1204 - Added the validate method in:
1205 - @ref NEDepthConvertLayer
1206 - @ref NEFloor / @ref CLFloor
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001207 - NEGEMMMatrixAdditionKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001208 - @ref NEReshapeLayer / @ref CLReshapeLayer
1209 - @ref CLScale
1210 - Added new examples:
1211 - graph_shufflenet.cpp
1212 - graph_yolov3.cpp
1213 - Added documentation for add a new function or kernel.
1214 - Improved doxygen documentation adding a list of the existing functions.
1215 - Add 4D tensors support to
Georgios Pinitas09f24972019-05-17 18:14:40 +01001216 - CLWidthConcatenateLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001217 - CLFlattenLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001218 - @ref CLSoftmaxLayer
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001219 - Add dot product support for CLDepthwiseConvolutionLayer3x3NHWCKernel non-unit stride
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001220 - Add SVE support
1221 - Fused batch normalization into convolution layer weights in @ref CLFuseBatchNormalization
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001222 - Fuses activation in CLDepthwiseConvolutionLayer3x3NCHWKernel, CLDepthwiseConvolutionLayer3x3NHWCKernel and @ref NEGEMMConvolutionLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001223 - Added NHWC data layout support to:
1224 - @ref CLChannelShuffleLayer
1225 - @ref CLDeconvolutionLayer
1226 - @ref CLL2NormalizeLayer
1227 - Added QASYMM8 support to the following kernels:
Manuel Bottini3b131ab2021-02-19 18:16:44 +00001228 - CLScaleKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001229 - NEDepthwiseConvolutionLayer3x3Kernel
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001230 - CLPixelWiseMultiplicationKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001231 - Added FP16 support to the following kernels:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001232 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001233 - NEDepthwiseConvolutionLayer3x3Kernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001234 - @ref CLNormalizePlanarYUVLayerKernel
1235 - @ref CLWinogradConvolutionLayer (5x5 kernel)
1236 - More tests added to both validation and benchmarking suites.
1237
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001238v18.08 Public major release
1239 - Various bug fixes.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001240 - Various optimisations.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001241 - Updated recommended NDK version to r17b.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001242 - Removed support for QS8/QS16 data types.
1243 - Added support for grouped convolution in @ref CLConvolutionLayer.
1244 - Added NHWC data layout support to:
Georgios Pinitas09f24972019-05-17 18:14:40 +01001245 - NEDepthConcatenateLayer / CLDepthConcatenateLayer
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001246 - @ref NEWinogradConvolutionLayer / @ref CLWinogradConvolutionLayer
1247 - @ref CLDepthwiseConvolutionLayer
1248 - @ref CLDirectConvolutionLayer
1249 - @ref CLConvolutionLayer
1250 - @ref CLScale
Manuel Bottinid844c082021-07-14 12:58:54 +01001251 - CLIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001252 - New Arm® Neon™ kernels / functions:
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001253 - @ref NERNNLayer
1254 - New OpenCL kernels / functions:
1255 - @ref CLArithmeticDivision
1256 - Introduced prepare() stage support in the graph API for GLES.
1257 - Added support for memory reusage when trying to allocate smaller CLTensors.
1258 - Enabled NHWC execution on graph examples.
1259 - Added JPEG accessor for validation purposes.
1260 - Added validate methods to some kernels / functions.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001261
1262v18.05 Public major release
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001263 - Various bug fixes.
1264 - Various optimisations.
Jakub Sujakee301b32021-06-04 09:46:08 +01001265 - Major redesign in the interface for the Neon™ kernels implemented in assembly.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001266 - 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 +01001267 - Added NEGEMMAssemblyWrapper and AssemblyKernelGlue which are used to execute assembly kernels in Neon™ functions.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001268 - Minor changes to the CPUInfo type to make it compatible with the new assembly gemm interface.
Jakub Sujakee301b32021-06-04 09:46:08 +01001269 - Moved Neon™ assembly kernels to the folder src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001270 - Improved doxygen documentation.
1271 - Improved memory management for layer's transitions.
1272 - Added support for NHWC data layout in tensors.
1273 - Added NHWC data layout support to:
1274 - @ref NEGEMMConvolutionLayer
1275 - @ref NEDirectConvolutionLayer
1276 - @ref NEPoolingLayer / @ref CLPoolingLayer
1277 - @ref NEBatchNormalizationLayer / @ref CLBatchNormalizationLayer
1278 - @ref NEDepthwiseConvolutionLayer
1279 - @ref NEScale
Georgios Pinitasf7c5a412020-12-03 14:38:33 +00001280 - NEIm2Col
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001281 - Added support for dilated convolutions in @ref NEConvolutionLayer and @ref CLConvolutionLayer.
1282 - New OpenCL kernels / functions:
1283 - @ref CLChannelShuffleLayer / @ref CLChannelShuffleLayerKernel
Teresa Charlin91b7f742021-04-12 13:57:00 +01001284 - CLConvertFullyConnectedWeightsKernel / @ref CLConvertFullyConnectedWeights
Sheri Zhang7e20e292021-02-02 11:49:34 +00001285 - @ref CLCopy / CLCopyKernel
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001286 - @ref CLLSTMLayer
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001287 - @ref CLRNNLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001288 - CLWidthConcatenateLayer / CLWidthConcatenateLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +01001289 - CLWinogradFilterTransformKernel / @ref CLWinogradConvolutionLayer
1290 - CLWinogradInputTransformKernel / CLWinogradInputTransform
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001291 - New Arm® Neon™ kernels / functions:
Teresa Charlin562bee52021-04-13 17:44:15 +01001292 - NEConvertFullyConnectedWeightsKernel / @ref NEConvertFullyConnectedWeights.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001293 - Created the validate method in @ref CLDepthwiseConvolutionLayer.
1294 - Beta and gamma are no longer mandatory arguments in @ref NEBatchNormalizationLayer and @ref CLBatchNormalizationLayer.
1295 - Added depth multiplier support in @ref NEDepthwiseConvolutionLayer and @ref CLDepthwiseConvolutionLayer.
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001296 - Added broadcast multiply support in @ref NEPixelWiseMultiplication / NEPixelWiseMultiplicationKernel.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001297 - Port mobilenet example to NHWC data layout.
1298 - Enabled Winograd method in @ref CLConvolutionLayer.
1299 - Renamed NEWinogradLayer to @ref NEWinogradConvolutionLayer.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001300 - Updated @ref NEWinogradConvolutionLayer to use highly optimised assembly kernels in src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001301 - Added memory manager support in GLES functions.
1302 - Major refactoring of the graph API.
1303 - Added GLES backend in the graph API.
1304 - Added support for the memory manager in the graph API.
1305 - Enabled Winograd Convolution method in the graph API.
1306 - Added support for grouped convolutions in the graph API.
Manuel Bottini10b38262021-02-19 18:16:44 +00001307 - Replaced NEDeconvolutionLayerUpsampleKernel with NEScaleKernel in @ref NEDeconvolutionLayer.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001308 - Added fast maths flag in @ref CLConvolutionLayer.
1309 - Added new tests and benchmarks in validation and benchmark frameworks
Jakub Sujakee301b32021-06-04 09:46:08 +01001310 - Merge Activation layer with Convolution Layer (Neon™, CL, GLES)
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001311 - Added support to OpenCL 2.0 SVM
1312 - Added support to import memory in OpenCL tensors.
1313 - Added the prepare() method to perform any one off pre-processing before running the function.
1314 - Added new examples:
1315 - graph_inception_v4.cpp
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001316 - graph_resnext50.cpp
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001317 - Added memory measurement instrument for CL.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001318
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001319v18.03 Public maintenance release
1320 - Various bug fixes.
Anthony Barbier3762e742018-03-02 11:49:33 +00001321 - Fixed bug in @ref NEActivationLayer
1322 - Fix in @ref CLTuner when using batches.
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001323 - Updated recommended NDK version to r16b (And fixed warnings).
1324 - Fixed bug in validation code.
1325 - Added Inception v4 graph example.
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001326 - Renamed NEWinogradLayer.cpp to @ref NEWinogradConvolutionLayer
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001327
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001328v18.02 Public major release
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001329 - Various Arm® Neon™ / OpenCL / GLES optimisations.
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001330 - Various bug fixes.
1331 - Changed default number of threads on big LITTLE systems.
1332 - Refactored examples and added:
1333 - graph_mobilenet_qassym8
1334 - graph_resnet
1335 - graph_squeezenet_v1_1
Anthony Barbier3762e742018-03-02 11:49:33 +00001336 - Renamed @ref CLConvolutionLayer into @ref CLGEMMConvolutionLayer and created a new @ref CLConvolutionLayer to select the fastest convolution method.
1337 - 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 +00001338 - Added in place support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001339 - @ref CLActivationLayer
1340 - @ref CLBatchNormalizationLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001341 - Added QASYMM8 support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001342 - @ref CLActivationLayer
1343 - @ref CLDepthwiseConvolutionLayer
1344 - @ref NEDepthwiseConvolutionLayer
1345 - @ref NESoftmaxLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001346 - Added FP16 support to:
Manuel Bottini387259a2020-05-21 17:14:36 +01001347 - CLDepthwiseConvolutionLayer3x3
Anthony Barbier3762e742018-03-02 11:49:33 +00001348 - @ref CLDepthwiseConvolutionLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001349 - Added broadcasting support to NEArithmeticAddition / @ref CLArithmeticAddition / @ref CLPixelWiseMultiplication
Anthony Barbier3762e742018-03-02 11:49:33 +00001350 - Added fused batched normalization and activation to @ref CLBatchNormalizationLayer and @ref NEBatchNormalizationLayer
1351 - Added support for non-square pooling to @ref NEPoolingLayer and @ref CLPoolingLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001352 - New OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001353 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001354 - New Arm® Neon™ kernels / functions
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001355 - Added name() method to all kernels.
1356 - Added support for Winograd 5x5.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001357 - NEPermuteKernel / @ref NEPermute
Michalis Spyrou96f977e2021-07-01 12:20:56 +01001358 - CpuWinogradConv2dTransformInputKernel / NEWinogradLayer
1359 - CpuWinogradConv2dTransformOutputKernel / NEWinogradLayer
1360 - CpuWinogradConv2dTransformWeightsKernel / NEWinogradLayer
Anthony Barbiere1553372018-07-16 18:53:52 +01001361 - Renamed NEWinogradLayerKernel into NEWinogradLayerBatchedGEMMKernel
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001362 - New GLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001363 - GCTensorShiftKernel / GCTensorShift
Pablo Tellof6c572c2018-02-14 12:47:30 +00001364
Anthony Barbier64c95a02018-01-22 18:48:55 +00001365v18.01 Public maintenance release
1366 - Various bug fixes
1367 - Added some of the missing validate() methods
Anthony Barbier3762e742018-03-02 11:49:33 +00001368 - Added @ref CLDeconvolutionLayerUpsampleKernel / @ref CLDeconvolutionLayer @ref CLDeconvolutionLayerUpsample
Sheri Zhang7e20e292021-02-02 11:49:34 +00001369 - Added CLPermuteKernel / @ref CLPermute
Anthony Barbier64c95a02018-01-22 18:48:55 +00001370 - Added method to clean the programs cache in the CL Kernel library.
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001371 - Added GCArithmeticAdditionKernel / GCArithmeticAddition
1372 - Added GCDepthwiseConvolutionLayer3x3Kernel / GCDepthwiseConvolutionLayer3x3
1373 - Added GCNormalizePlanarYUVLayerKernel / GCNormalizePlanarYUVLayer
1374 - Added GCScaleKernel / GCScale
1375 - Added GCWeightsReshapeKernel / GCConvolutionLayer
Anthony Barbier64c95a02018-01-22 18:48:55 +00001376 - Added FP16 support to the following GLES compute kernels:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001377 - GCCol2ImKernel
1378 - GCGEMMInterleave4x4Kernel
1379 - GCGEMMTranspose1xWKernel
1380 - GCIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001381 - Refactored Arm® Neon™ Winograd (NEWinogradLayerKernel)
Manuel Bottini327225d2021-04-13 13:09:30 +01001382 - Added NEDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001383 - Added QASYMM8 support to the following Arm® Neon™ kernels:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001384 - NEDepthwiseConvolutionLayer3x3Kernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001385 - @ref NEFillBorderKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +00001386 - NEPoolingLayerKernel
Anthony Barbier64c95a02018-01-22 18:48:55 +00001387 - Added new examples:
1388 - graph_cl_mobilenet_qasymm8.cpp
1389 - graph_inception_v3.cpp
1390 - gc_dc.cpp
1391 - More tests added to both validation and benchmarking suites.
1392
Gian Marcoff850932017-12-11 12:37:17 +00001393v17.12 Public major release
1394 - Most machine learning functions on OpenCL support the new data type QASYMM8
1395 - Introduced logging interface
1396 - Introduced opencl timer
1397 - Reworked GEMMLowp interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001398 - Added new Arm® Neon™ assembly kernels for GEMMLowp, SGEMM and HGEMM
Gian Marcoff850932017-12-11 12:37:17 +00001399 - Added validation method for most Machine Learning kernels / functions
1400 - Added new graph examples such as googlenet, mobilenet, squeezenet, vgg16 and vgg19
1401 - Added sgemm example for OpenCL
1402 - Added absolute difference example for GLES compute
1403 - Added new tests and benchmarks in validation and benchmark frameworks
1404 - Added new kernels / functions for GLES compute
1405
1406 - New OpenGL ES kernels / functions
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001407 - GCAbsoluteDifferenceKernel / GCAbsoluteDifference
1408 - GCActivationLayerKernel / GCActivationLayer
1409 - GCBatchNormalizationLayerKernel / GCBatchNormalizationLayer
1410 - GCCol2ImKernel
1411 - GCDepthConcatenateLayerKernel / GCDepthConcatenateLayer
1412 - GCDirectConvolutionLayerKernel / GCDirectConvolutionLayer
1413 - GCDropoutLayerKernel / GCDropoutLayer
1414 - GCFillBorderKernel / GCFillBorder
1415 - GCGEMMInterleave4x4Kernel / GCGEMMInterleave4x4
1416 - GCGEMMMatrixAccumulateBiasesKernel / GCGEMMMatrixAdditionKernel / GCGEMMMatrixMultiplyKernel / GCGEMM
1417 - GCGEMMTranspose1xWKernel / GCGEMMTranspose1xW
1418 - GCIm2ColKernel
1419 - GCNormalizationLayerKernel / GCNormalizationLayer
1420 - GCPixelWiseMultiplicationKernel / GCPixelWiseMultiplication
1421 - GCPoolingLayerKernel / GCPoolingLayer
1422 - GCLogits1DMaxKernel / GCLogits1DShiftExpSumKernel / GCLogits1DNormKernel / GCSoftmaxLayer
1423 - GCTransposeKernel / GCTranspose
Gian Marcoff850932017-12-11 12:37:17 +00001424
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001425 - New Arm® Neon™ kernels / functions
Pablo Telloeb82fd22018-02-23 13:43:50 +00001426 - arm_compute::NEGEMMLowpAArch64A53Kernel / arm_compute::NEGEMMLowpAArch64Kernel / arm_compute::NEGEMMLowpAArch64V8P4Kernel / arm_compute::NEGEMMInterleavedBlockedKernel / arm_compute::NEGEMMLowpAssemblyMatrixMultiplyCore
1427 - arm_compute::NEHGEMMAArch64FP16Kernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001428 - NEDepthwiseConvolutionLayer3x3Kernel / NEDepthwiseIm2ColKernel / NEGEMMMatrixVectorMultiplyKernel / NEDepthwiseVectorToTensorKernel / @ref NEDepthwiseConvolutionLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001429 - NEGEMMLowpOffsetContributionKernel / NEGEMMLowpMatrixAReductionKernel / NEGEMMLowpMatrixBReductionKernel / NEGEMMLowpMatrixMultiplyCore
Manuel Bottiniae58bdf2021-06-17 17:18:45 +01001430 - NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001431 - NEWinogradLayer / NEWinogradLayerKernel
Gian Marcoff850932017-12-11 12:37:17 +00001432
1433 - New OpenCL kernels / functions
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001434 - CLGEMMLowpOffsetContributionKernel / CLGEMMLowpMatrixAReductionKernel / CLGEMMLowpMatrixBReductionKernel / CLGEMMLowpMatrixMultiplyCore
1435 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Gian Marcoff850932017-12-11 12:37:17 +00001436
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001437 - New graph nodes for Arm® Neon™ and OpenCL
Georgios Pinitasd9eb2752018-04-03 13:44:29 +01001438 - graph::BranchLayer
1439 - graph::DepthConvertLayer
1440 - graph::DepthwiseConvolutionLayer
1441 - graph::DequantizationLayer
1442 - graph::FlattenLayer
1443 - graph::QuantizationLayer
1444 - graph::ReshapeLayer
Gian Marcoff850932017-12-11 12:37:17 +00001445
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001446v17.10 Public maintenance release
1447 - Bug fixes:
1448 - Check the maximum local workgroup size supported by OpenCL devices
1449 - Minor documentation updates (Fixed instructions to build the examples)
Anthony Barbier3762e742018-03-02 11:49:33 +00001450 - Introduced a graph::GraphContext
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001451 - Added a few new Graph nodes, support for branches and grouping.
1452 - Automatically enable cl_printf in debug builds
1453 - Fixed bare metal builds for armv7a
1454 - Added AlexNet and cartoon effect examples
1455 - 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)
1456
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001457v17.09 Public major release
1458 - Experimental Graph support: initial implementation of a simple stream API to easily chain machine learning layers.
Anthony Barbier3762e742018-03-02 11:49:33 +00001459 - 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 +01001460 - New validation and benchmark frameworks (Boost and Google frameworks replaced by homemade framework).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001461 - Most machine learning functions support both fixed point 8 and 16 bit (QS8, QS16) for both Arm® Neon™ and OpenCL.
1462 - New Arm® Neon™ kernels / functions:
Pablo Telloeb82fd22018-02-23 13:43:50 +00001463 - arm_compute::NEGEMMAssemblyBaseKernel arm_compute::NEGEMMAArch64Kernel
Manuel Bottini00f4dfc2021-03-10 09:55:14 +00001464 - NEDequantizationLayerKernel / @ref NEDequantizationLayer
Georgios Pinitas70eb53b2021-01-06 19:42:21 +00001465 - NEFloorKernel / @ref NEFloor
Anthony Barbier3762e742018-03-02 11:49:33 +00001466 - @ref NEL2NormalizeLayerKernel / @ref NEL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001467 - NEQuantizationLayerKernel NEMinMaxLayerKernel / @ref NEQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001468 - @ref NEROIPoolingLayerKernel / @ref NEROIPoolingLayer
1469 - @ref NEReductionOperationKernel / @ref NEReductionOperation
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001470 - NEReshapeLayerKernel / @ref NEReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001471
1472 - New OpenCL kernels / functions:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001473 - CLDepthwiseConvolutionLayer3x3NCHWKernel CLDepthwiseConvolutionLayer3x3NHWCKernel CLDepthwiseIm2ColKernel CLDepthwiseVectorToTensorKernel CLDepthwiseWeightsReshapeKernel / CLDepthwiseConvolutionLayer3x3 @ref CLDepthwiseConvolutionLayer CLDepthwiseSeparableConvolutionLayer
Manuel Bottini9e73c932021-03-02 17:40:42 +00001474 - CLDequantizationLayerKernel / CLDequantizationLayer
Sheri Zhang1efed922021-03-10 22:43:38 +00001475 - CLDirectConvolutionLayerKernel / @ref CLDirectConvolutionLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001476 - CLFlattenLayer
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001477 - CLFloorKernel / @ref CLFloor
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001478 - CLGEMMTranspose1xW
Michele Di Giorgioee82d342021-01-05 16:14:28 +00001479 - CLGEMMMatrixVectorMultiplyKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001480 - @ref CLL2NormalizeLayerKernel / @ref CLL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001481 - CLQuantizationLayerKernel CLMinMaxLayerKernel / @ref CLQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001482 - @ref CLROIPoolingLayerKernel / @ref CLROIPoolingLayer
1483 - @ref CLReductionOperationKernel / @ref CLReductionOperation
Sheri Zhang7e20e292021-02-02 11:49:34 +00001484 - CLReshapeLayerKernel / @ref CLReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001485
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001486v17.06 Public major release
1487 - Various bug fixes
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001488 - Added support for fixed point 8 bit (QS8) to the various Arm® Neon™ machine learning kernels.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001489 - Added unit tests and benchmarks (AlexNet, LeNet)
1490 - Added support for sub tensors.
1491 - Added infrastructure to provide GPU specific optimisation for some OpenCL kernels.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001492 - Added @ref OMPScheduler (OpenMP) scheduler for Neon
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001493 - Added @ref SingleThreadScheduler scheduler for Arm® Neon™ (For bare metal)
ramelg01b2eba7f2021-12-23 08:32:08 +00001494 - User can specify their own scheduler by implementing the @ref IScheduler interface.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001495 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001496 - @ref CLBatchNormalizationLayerKernel / @ref CLBatchNormalizationLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001497 - CLDepthConcatenateLayerKernel / CLDepthConcatenateLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001498 - CLHOGOrientationBinningKernel CLHOGBlockNormalizationKernel, CLHOGDetectorKernel / CLHOGDescriptor CLHOGDetector CLHOGGradient CLHOGMultiDetection
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001499 - CLLocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedLayer
Manuel Bottinid87aded2021-07-16 10:23:31 +01001500 - CLWeightsReshapeKernel / CLConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001501 - New C++ kernels:
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001502 - CPPDetectionWindowNonMaximaSuppressionKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001503 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001504 - @ref NEBatchNormalizationLayerKernel / @ref NEBatchNormalizationLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001505 - NEDepthConcatenateLayerKernel / NEDepthConcatenateLayer
Manuel Bottini327225d2021-04-13 13:09:30 +01001506 - NEDirectConvolutionLayerKernel / @ref NEDirectConvolutionLayer
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001507 - NELocallyConnectedMatrixMultiplyKernel / NELocallyConnectedLayer
Manuel Bottini29599d02021-07-06 15:01:35 +01001508 - NEWeightsReshapeKernel / NEConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001509
1510v17.05 Public bug fixes release
1511 - Various bug fixes
1512 - Remaining of the functions ported to use accurate padding.
1513 - Library does not link against OpenCL anymore (It uses dlopen / dlsym at runtime instead to determine whether or not OpenCL is available).
1514 - Added "free" method to allocator.
1515 - Minimum version of g++ required for armv7 Linux changed from 4.8 to 4.9
1516
1517v17.04 Public bug fixes release
1518
1519 The following functions have been ported to use the new accurate padding:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001520 - CLColorConvertKernel
1521 - CLEdgeNonMaxSuppressionKernel
1522 - CLEdgeTraceKernel
1523 - CLGaussianPyramidHorKernel
1524 - CLGaussianPyramidVertKernel
1525 - CLGradientKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001526 - NEChannelCombineKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001527 - NEFillArrayKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001528 - NEGaussianPyramidHorKernel
1529 - NEGaussianPyramidVertKernel
Georgios Pinitas09d34512018-08-30 16:02:11 +01001530 - NEHarrisScoreFP16Kernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001531 - NEHarrisScoreKernel
1532 - NEHOGDetectorKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +00001533 - NELogits1DMaxKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001534 - NELogits1DShiftExpSumKernel
1535 - NELogits1DNormKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001536 - NENonMaximaSuppression3x3FP16Kernel
1537 - NENonMaximaSuppression3x3Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001538
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001539v17.03.1 First Major public release of the sources
1540 - Renamed the library to arm_compute
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001541 - New CPP target introduced for C++ kernels shared between Arm® Neon™ and CL functions.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001542 - New padding calculation interface introduced and ported most kernels / functions to use it.
1543 - New OpenCL kernels / functions:
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +01001544 - CLGEMMLowpMatrixMultiplyKernel / CLGEMMLowp
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001545 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001546 - @ref NENormalizationLayerKernel / @ref NENormalizationLayer
Teresa Charlind1dc09c2021-03-04 15:24:45 +00001547 - NETransposeKernel / @ref NETranspose
Michalis Spyrou373b4072021-01-20 16:41:12 +00001548 - NELogits1DMaxKernel, NELogits1DShiftExpSumKernel, NELogits1DNormKernel / @ref NESoftmaxLayer
Manuel Bottini24b89202021-07-01 18:13:33 +01001549 - NEIm2ColKernel, NECol2ImKernel, NEConvolutionLayerWeightsReshapeKernel / @ref NEConvolutionLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +01001550 - NEGEMMMatrixAccumulateBiasesKernel / @ref NEFullyConnectedLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001551 - NEGEMMLowpMatrixMultiplyKernel / NEGEMMLowp
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001552
1553v17.03 Sources preview
1554 - New OpenCL kernels / functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001555 - CLGradientKernel, CLEdgeNonMaxSuppressionKernel, CLEdgeTraceKernel / CLCannyEdge
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001556 - GEMM refactoring + FP16 support: CLGEMMInterleave4x4Kernel, CLGEMMTranspose1xWKernel, CLGEMMMatrixMultiplyKernel, CLGEMMMatrixAdditionKernel / @ref CLGEMM
Michele Di Giorgiof6f78762020-07-06 11:27:21 +01001557 - CLGEMMMatrixAccumulateBiasesKernel / @ref CLFullyConnectedLayer
Teresa Charlin27886092021-02-25 20:15:01 +00001558 - CLTransposeKernel / @ref CLTranspose
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001559 - CLLKTrackerInitKernel, CLLKTrackerStage0Kernel, CLLKTrackerStage1Kernel, CLLKTrackerFinalizeKernel / CLOpticalFlow
Anthony Barbier3762e742018-03-02 11:49:33 +00001560 - @ref CLNormalizationLayerKernel / @ref CLNormalizationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001561 - CLLaplacianPyramid, CLLaplacianReconstruct
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001562 - New Arm® Neon™ kernels / functions:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001563 - NEActivationLayerKernel / @ref NEActivationLayer
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001564 - GEMM refactoring + FP16 support (Requires armv8.2 CPU): NEGEMMInterleave4x4Kernel, NEGEMMTranspose1xWKernel, NEGEMMMatrixMultiplyKernel, NEGEMMMatrixAdditionKernel / @ref NEGEMM
Michele Di Giorgio19289042021-02-03 16:05:00 +00001565 - NEPoolingLayerKernel / @ref NEPoolingLayer
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001566
1567v17.02.1 Sources preview
1568 - New OpenCL kernels / functions:
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +00001569 - CLLogits1DMaxKernel, CLLogits1DShiftExpSumKernel, CLLogits1DNormKernel / @ref CLSoftmaxLayer
Michele Di Giorgioe1314662021-02-01 17:09:32 +00001570 - CLPoolingLayerKernel / @ref CLPoolingLayer
Manuel Bottinid844c082021-07-14 12:58:54 +01001571 - CLIm2ColKernel, CLCol2ImKernel, CLConvolutionLayerWeightsReshapeKernel / CLConvolutionLayer
Adnan AlSinan6863fa02022-02-04 13:04:55 +00001572 - CLRemapKernel / CLRemap
Michalis Spyrou473cb012021-02-23 11:48:12 +00001573 - CLGaussianPyramidHorKernel, CLGaussianPyramidVertKernel / CLGaussianPyramid, CLGaussianPyramidHalf, CLGaussianPyramidOrb
1574 - CLMinMaxKernel, CLMinMaxLocationKernel / CLMinMaxLocation
1575 - CLNonLinearFilterKernel / CLNonLinearFilter
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001576 - New Arm® Neon™ FP16 kernels (Requires armv8.2 CPU)
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001577 - NEAccumulateWeightedFP16Kernel
1578 - NEBox3x3FP16Kernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001579 - NENonMaximaSuppression3x3FP16Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001580
1581v17.02 Sources preview
1582 - New OpenCL kernels / functions:
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001583 - CLActivationLayerKernel / @ref CLActivationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001584 - CLChannelCombineKernel / CLChannelCombine
1585 - CLDerivativeKernel / CLChannelExtract
1586 - CLFastCornersKernel / CLFastCorners
1587 - CLMeanStdDevKernel / CLMeanStdDev
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001588 - New Arm® Neon™ kernels / functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001589 - HOG / SVM: NEHOGOrientationBinningKernel, NEHOGBlockNormalizationKernel, NEHOGDetectorKernel, NEHOGNonMaximaSuppressionKernel / NEHOGDescriptor, NEHOGDetector, NEHOGGradient, NEHOGMultiDetection
1590 - NENonLinearFilterKernel / NENonLinearFilter
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001591 - Introduced a CLScheduler to manage the default context and command queue used by the runtime library and create synchronisation events.
1592 - Switched all the kernels / functions to use tensors instead of images.
1593 - Updated documentation to include instructions to build the library from sources.
1594
1595v16.12 Binary preview release
1596 - Original release
1597
Sheri Zhangd813bab2021-04-30 16:53:41 +01001598 */
Ramy Elgammal0d274b72022-08-05 13:14:57 +01001599} // namespace arm_compute