blob: f592fdbc5e7bd27b7b0b0e3e40529701c738658a [file] [log] [blame]
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +00001///
SiCong Li90e57202023-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 Li90e57202023-02-01 14:39:41 +000043v23.02 Public major release
Jakub Sujak06db85e2023-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.
Jakub Sujak9eefd4b2023-02-10 14:36:48 +000049 - Add new CPU operator AddMulAdd for float and quantized types.
Jakub Sujak06db85e2023-02-06 17:42:47 +000050 - Add new flag @ref ITensorInfo::lock_paddings() to tensors to prevent extending tensor paddings.
Jakub Sujak06db85e2023-02-06 17:42:47 +000051 - Add experimental support for CPU only Bazel and CMake builds.
52 - Performance optimizations:
53 - Optimize CPU base-e exponential functions for FP32.
54 - Optimize CPU StridedSlice by copying first dimension elements in bulk where possible.
55 - Optimize CPU quantized Subtraction by reusing the quantized Addition kernel.
56 - Optimize CPU ReduceMean by removing quantization steps and performing the operation in integer domain.
57 - Optimize GPU Scale and Dynamic Fusion GpuResize by removing quantization steps and performing the operation in integer domain.
Jakub Sujak9eefd4b2023-02-10 14:36:48 +000058 - Update the heuristic for CLDepthwiseConvolutionNative kernel.
59 - Add new optimized OpenCL kernel to compute indirect convolution:
60 - \link opencl::kernels::ClIndirectConv2dKernel ClIndirectConv2dKernel \endlink
61 - Add new optimized OpenCL kernel to compute transposed convolution:
62 - \link opencl::kernels::ClTransposedConvolutionKernel ClTransposedConvolutionKernel \endlink
SiCong Li90e57202023-02-01 14:39:41 +000063 - Update recommended/minimum NDK version to r20b.
Jakub Sujak06db85e2023-02-06 17:42:47 +000064 - Various optimizations and bug fixes.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065
Viet-Hoa Dob1f82882022-11-11 11:29:50 +000066v22.11 Public major release
67 - New features:
68 - Add new experimental dynamic fusion API.
Viet-Hoa Do293ab602022-11-15 10:51:26 +000069 - Add CPU batch matrix multiplication with adj_x = false and adj_y = false for FP32.
Viet-Hoa Dob1f82882022-11-11 11:29:50 +000070 - Add CPU MeanStdDevNorm for QASYMM8.
71 - Add CPU and GPU GELU activation function for FP32 and FP16.
72 - Add CPU swish activation function for FP32 and FP16.
73 - Performance optimizations:
74 - Optimize CPU bilinear scale for FP32, FP16, QASYMM8, QASYMM8_SIGNED, U8 and S8.
75 - Optimize CPU activation functions using LUT-based implementation:
76 - Sigmoid function for QASYMM8 and QASYMM8_SIGNED.
77 - Hard swish function for QASYMM8_SIGNED.
78 - Optimize CPU addition for QASYMM8 and QASYMM8_SIGNED using fixed-point arithmetic.
79 - Optimize CPU multiplication, subtraction and activation layers by considering tensors as 1D.
80 - Optimize GPU depthwise convolution kernel and heuristic.
81 - Optimize GPU Conv2d heuristic.
82 - Optimize CPU MeanStdDevNorm for FP16.
83 - Optimize CPU tanh activation function for FP16 using rational approximation.
84 - Improve GPU GeMMLowp start-up time.
85 - Various optimizations and bug fixes.
86
SiCong Life1b1f62022-05-19 18:58:31 +010087v22.08 Public major release
Ramy Elgammal0d274b72022-08-05 13:14:57 +010088 - Various bug fixes.
89 - Disable unsafe FP optimizations causing accuracy issues in:
90 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
91 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv3dKernel \endlink
92 - @ref CLDepthwiseConvolutionLayerNativeKernel
93 - Add Dynamic Fusion of Elementwise Operators: Div, Floor, Add.
94 - Optimize the gemm_reshaped_rhs_nly_nt OpenCL kernel using the arm_matrix_multiply extension available for Arm® Mali™-G715 and Arm® Mali™-G615.
95 - Add support for the arm_matrix_multiply extension in the gemmlowp_mm_reshaped_only_rhs_t OpenCL kernel.
96 - Expand GPUTarget list with missing Mali™ GPUs product names: G57, G68, G78AE, G610, G510, G310.
97 - Extend the direct convolution 2d interface to configure the block size.
98 - Update ClConv2D heuristic to use direct convolution.
99 - Use official Khronos® OpenCL extensions:
100 - Add cl_khr_integer_dot_product extension support.
101 - Add support of OpenCL 3.0 non-uniform workgroup.
102 - Cpu performance optimizations:
103 - Add LUT-based implementation of Hard Swish and Leaky ReLU activation function for aarch64 build.
104 - Optimize Add layer by considering the input tensors as 1D array.
105 - Add fixed-format BF16, FP16 and FP32 Neon™ GEMM kernels to support variable weights.
106 - Add new winograd convolution kernels implementation and update the ACL \link arm_compute::cpu::CpuWinogradConv2d CpuWinogradConv2d\endlink operator.
Jakub Sujak117e17e2023-02-21 10:52:57 +0000107 - Add experimental support for native builds for Windows® on Arm™.
Ramy Elgammal966218d2022-08-11 16:23:22 +0100108 - 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 +0100109 - Build flag change: toolchain_prefix, compiler_prefix:
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100110 - Use empty string "" to suppress any prefixes.
111 - Use "auto" to use default (auto) prefixes chosen by the build script. This is the default behavior when unspecified.
112 - Any other string will be used as custom prefixes to the compiler and the rest of toolchain tools.
113 - The default behaviour when prefix is unspecified does not change, but its signifier has been changed from empty string "" to "auto".
114 - armv7a with Android build will no longer be tested or maintained.
SiCong Life1b1f62022-05-19 18:58:31 +0100115
Adnan AlSinan2921e5b2022-05-16 14:30:41 +0100116v22.05 Public major release
117 - Various bug fixes.
118 - Various optimizations.
119 - Add support for NDK r23b.
120 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
121 - New Arm® Neon™ kernels / functions :
122 - \link opencl::kernels::ClPool3dKernel ClPool3dKernel \endlink
123 - New OpenCL kernels / functions :
124 - \link cpu::kernels::CpuPool3dKernel CpuPool3dKernel \endlink
125 - Improve the start-up times for the following OpenCL kernels:
126 - \link opencl::kernels::ClWinogradInputTransformKernel ClWinogradInputTransformKernel \endlink
127 - \link opencl::kernels::ClWinogradOutputTransformKernel ClWinogradOutputTransformKernel \endlink
128 - \link opencl::kernels::ClWinogradFilterTransformKernel ClWinogradFilterTransformKernel \endlink
129 - \link opencl::kernels::ClHeightConcatenateKernel ClHeightConcatenateKernel \endlink
130 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
131 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
132 - \link cpu::kernels::CpuDepthwiseConv2dNativeKernel CpuDepthwiseConv2dNativeKernel \endlink
133 - \link cpu::kernels::CpuGemmMatrixAdditionKernel CpuGemmMatrixAdditionKernel \endlink
134 - \link cpu::kernels::CpuGemmMatrixMultiplyKernel CpuGemmMatrixMultiplyKernel \endlink
135 - @ref NEFuseBatchNormalizationKernel
136 - @ref NEL2NormalizeLayerKernel
137
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000138v22.02 Public major release
139 - Various bug fixes.
140 - Various optimizations.
141 - Update A510 arm_gemm cpu Kernels.
142 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
143 - Improve the start-up time for the following OpenCL kernels:
144 - @ref CLScale
145 - @ref CLGEMM
146 - @ref CLDepthwiseConvolutionLayer
147 - \link opencl::kernels::ClIm2ColKernel ClIm2ColKernel \endlink
148 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
149 - Remove functions:
150 - CLRemap
151 - NERemap
152 - Remove padding from OpenCL kernels:
153 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
154 - Remove padding from Cpu kernels:
155 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
156 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
157 - \link cpu::kernels::CpuActivationKernel CpuActivationKernel \endlink
158 - \link cpu::kernels::CpuAddKernel CpuAddKernel \endlink
159 - \link cpu::kernels::CpuElementwiseKernel CpuElementwiseKernel \endlink
160 - \link cpu::CpuSoftmaxGeneric CpuSoftmaxKernel \endlink
161 - @ref NEBoundingBoxTransformKernel
162 - @ref NECropKernel
163 - @ref NEComputeAllAnchorsKernel
164 - @ref NEInstanceNormalizationLayerKernel
Adnan AlSinanbb8b2352022-02-14 14:30:38 +0000165 - NEMaxUnpoolingLayerKernel
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000166 - @ref NEMeanStdDevNormalizationKernel
167 - @ref NERangeKernel
168 - @ref NEROIAlignLayerKernel
169 - @ref NESelectKernel
170
Sheri Zhang5dda2172021-10-15 19:54:17 +0100171v21.11 Public major release
172 - Various bug fixes.
Gunes Bayir08773702021-11-05 12:34:34 +0000173 - Various optimizations:
174 - 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 +0000175 - Improve performance of Softmax on GPU for Uint8/Int8
Sheri Zhang5dda2172021-10-15 19:54:17 +0100176 - New OpenCL kernels / functions:
177 - @ref CLConv3D
178 - New Arm® Neon™ kernels / functions:
179 - @ref NEConv3D
Gunes Bayir08773702021-11-05 12:34:34 +0000180 - Support configurable build by a selected subset of operator list
181 - Support MobileBert on Neon™ backend
182 - Improve operator/function logging
183 - Remove padding from OpenCL kernels:
184 - ClPool2dKernel
185 - ClScaleKernel
186 - ClGemmMatrixMultiplyReshapedKernel
187 - Remove padding from Cpu kernels:
188 - CpuPool2dKernel
189 - Remove Y padding from OpenCL kernels:
190 - ClGemmMatrixMultiplyKernel
191 - ClGemmReshapedRHSMatrixKernel
192 - Remove legacy GeMM kernels in gemm_v1.cl
Sheri Zhang5dda2172021-10-15 19:54:17 +0100193
Freddie Liardet77014ff2021-08-05 15:50:31 +0100194v21.08 Public major release
195 - Various bug fixes.
196 - Various optimizations:
197 - Improve LWS (Local-Workgroup-Size) heuristic in OpenCL for GeMM, Direct Convolution and Winograd Transformations when OpenCL tuner is not used
198 - Improve QASYMM8/QSYMM8 performance on OpenCL for various Arm® Mali™ GPU architectures
199 - Add dynamic weights support in Fully connected layer (CPU/GPU)
200 - Various performance optimizations for floating-point data types (CPU/GPU)
201 - Add a reduced core library build arm_compute_core_v2
202 - Expose Operator API
203 - Support fat binary build for arm8.2-a via fat_binary build flag
204 - Add CPU discovery capabilities
205 - Add data type f16 support for:
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000206 - CLRemapKernel
Freddie Liardet77014ff2021-08-05 15:50:31 +0100207 - Port the following functions to stateless API:
208 - @ref CLConvolutionLayer
209 - @ref CLFlattenLayer
210 - @ref CLFullyConnectedLayer
211 - @ref CLGEMM
212 - @ref CLGEMMConvolutionLayer
213 - @ref CLGEMMLowpMatrixMultiplyCore
214 - @ref CLWinogradConvolutionLayer
215 - @ref NEConvolutionLayer
216 - @ref NEFlattenLayer
217 - @ref NEFullyConnectedLayer
218 - @ref NEGEMM
219 - @ref NEGEMMConv2d
220 - @ref NEGEMMConvolutionLayer
221 - @ref NEGEMMLowpMatrixMultiplyCore
222 - @ref NEWinogradConvolutionLayer
223 - Remove the following functions:
224 - CLWinogradInputTransform
225 - Remove CLCoreRuntimeContext
226 - Remove ICPPSimpleKernel
227 - Rename file arm_compute/runtime/CL/functions/CLElementWiseUnaryLayer.h to arm_compute/runtime/CL/functions/CLElementwiseUnaryLayer.h
228
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000229v21.05 Public major release
Sheri Zhangc2bed952021-05-06 12:12:38 +0100230 - Various bug fixes.
231 - Various optimisations.
232 - Various documentation updates:
Jakub Sujakee301b32021-06-04 09:46:08 +0100233 - Add supported operators and corresponding Android NNAPI operators.
234 - Documentation reorg into user guide and contributor guide.
Sheri Zhangc2bed952021-05-06 12:12:38 +0100235 - Add support for a global allocator for OpenCL tensors
236 - Add experimental support for [CLVK](https://github.com/kpet/clvk).
237 - Add data type S32 support for:
238 - @ref opencl::kernels::ClArithmeticKernel
239 - Add data type QASYMM8 support for:
240 - @ref CLROIPoolingLayer
241 - @ref CLROIPoolingLayerKernel
242 - @ref NEROIPoolingLayer
243 - @ref NEROIPoolingLayerKernel
244 - Add per-channel quantization support for:
245 - @ref CLDeconvolutionLayer
246 - @ref CLDirectDeconvolutionLayer
247 - @ref NEConvolutionLayer
248 - @ref NEDeconvolutionLayer
249 - Remove padding from OpenCL kernels:
250 - @ref CLL2NormalizeLayerKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100251 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Sheri Zhangc2bed952021-05-06 12:12:38 +0100252 - @ref CLNormalizationLayerKernel
253 - @ref CLNormalizePlanarYUVLayerKernel
254 - @ref opencl::kernels::ClMulKernel
255 - @ref CLReductionOperationKernel
256 - @ref CLROIPoolingLayerKernel
257 - Remove computer vision support from Arm® Neon™ backend
258 - Remove the following functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000259 - NEAbsoluteDifference
260 - NEAccumulate
261 - NEBox3x3
262 - NECannyEdge
263 - NEChannelCombine
264 - NEChannelExtract
265 - NEColorConvert
Michalis Spyrou473cb012021-02-23 11:48:12 +0000266 - NEConvolution
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000267 - NEDerivative
268 - NEDilate
269 - NEEqualizeHistogram
270 - NEErode
271 - NEFastCorners
272 - NEGaussian3x3
273 - NEGaussian5x5
274 - NEGaussianPyramid
275 - NEHOGDescriptor
276 - NEHOGDetector
277 - NEHOGGradient
278 - NEHOGMultiDetection
279 - NEHarrisCorners
280 - NEHistogram
281 - NEIntegralImage
282 - NELaplacianPyramid
283 - NELaplacianReconstruct
284 - NEMagnitude
285 - NEMeanStdDev
286 - NEMedian3x3
287 - NEMinMaxLocation
288 - NENonLinearFilter
289 - NEOpticalFlow
290 - NEPhase
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000291 - NEScharr3x3
292 - NESobel3x3
293 - NESobel5x5
294 - NESobel7x7
295 - NETableLookup
296 - NEThreshold
297 - NEWarpAffine
Michalis Spyrou473cb012021-02-23 11:48:12 +0000298 - NEWarpPerspectiveKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000299 - Remove all GLES kernels / functions / tests / examples
Sheri Zhangc2bed952021-05-06 12:12:38 +0100300 - Remove computer vision support from CL backend
301 - Remove the following functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000302 - CLAbsoluteDifference
303 - CLAccumulate
304 - CLBox3x3
305 - CLCannyEdge
306 - CLChannelCombine
307 - CLChannelExtract
308 - CLColorConvert
309 - CLConvolution
310 - CLDerivative
311 - CLDilate
312 - CLEqualizeHistogram
313 - CLErode
314 - CLFastCorners
315 - CLGaussian3x3
316 - CLGaussian5x5
317 - CLGaussianPyramid
318 - CLHOGDescriptor
319 - CLHOGDetector
320 - CLHOGGradient
321 - CLHOGMultiDetection
322 - CLHarrisCorners
323 - CLHistogram
324 - CLIntegralImage
325 - CLLaplacianPyramid
326 - CLLaplacianReconstruct
327 - CLMagnitude
328 - CLMeanStdDev
329 - CLMedian3x3
330 - CLMinMaxLocation
331 - CLNonLinearFilter
332 - CLOpticalFlow
333 - CLPhase
334 - CLScharr3x3
335 - CLSobel3x3
336 - CLSobel5x5
337 - CLSobel7x7
338 - CLTableLookup
339 - CLThreshold
340 - CLWarpAffine
341 - CLWarpPerspective
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100342
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000343v21.02 Public major release
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000344 - Various bug fixes.
345 - Various optimisations.
Georgios Pinitas45514032020-12-30 00:03:09 +0000346 - Upgrade C++ standard to C++14
347 - Add macOS support
Giorgio Arena1055dc12021-02-19 09:53:06 +0000348 - Add Armv8-R AArch64 architecture support
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000349 - Add SVE/SVE2 support for:
Manuel Bottini10b38262021-02-19 18:16:44 +0000350 - NEScaleKernel
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000351 - @ref NEActivationLayer
352 - @ref NEArithmeticAddition
353 - @ref NEBatchNormalizationLayerKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000354 - @ref cpu::kernels::CpuLogits1DSoftmaxKernel
355 - @ref cpu::kernels::CpuLogits1DMaxKernel
356 - @ref cpu::kernels::CpuElementwiseUnaryKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000357 - Remove padding from OpenCL kernels:
Sheri Zhang1efed922021-03-10 22:43:38 +0000358 - CLDirectConvolutionLayerKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000359 - @ref CLArgMinMaxLayerKernel
360 - @ref CLPadLayerKernel
361 - @ref CLROIAlignLayerKernel
362 - @ref CLRangeKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000363 - CLScaleKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000364 - @ref CLSelectKernel
365 - @ref CLBitwiseKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000366 - @ref opencl::kernels::ClFloorKernel
Teresa Charlin27886092021-02-25 20:15:01 +0000367 - CLTransposeKernel
Giorgio Arena5b50f422021-02-17 11:43:05 +0000368 - Deprecate functions in CLTuner:
369 - add_lws_to_table
370 - import_lws_table
371 - lws_table
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000372 - Remove functions:
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000373 - NELocallyConnectedLayer / CLLocallyConnectedLayer
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000374 - NEIm2Col
375 - NECol2Im
376 - NEGEMMInterleave4x4
377 - NEGEMMTranspose1xW
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +0000378 - NEComputeAllAnchors / CLComputeAllAnchors
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000379 - NEGEMMAssemblyDispatch
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000380 - NEUpsampleLayer / CLUpsampleLayer
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000381 - Remove kernels:
Georgios Pinitasd308df32020-12-01 16:56:36 +0000382 - NEGEMMMatrixVectorMultiplyKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000383 - NELocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedMatrixMultiplyKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000384 - NEUpsampleLayerKernel / CLUpsampleLayerKernel
Gian Marco Iodicef5aad512021-02-08 17:34:40 +0000385 - Extend OpenCL tuner with workgroup batch size support
386 - 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 +0000387 - Add functionality to load the OpenCL GEMM heuristics at runtime
388 - The GEMM heuristic file (MLGO) can be used to update the default GEMM heuristics available for OpenCL
Giorgio Arenacd7d1782021-02-22 14:58:37 +0000389 - 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 +0100390 - Note: data-type decoupling is in progress and experimental. Warning of unused symbols might be raised
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000391
SiCong Li96209c72020-08-21 12:28:30 +0100392v20.11 Public major release
morgolock70b1eb82020-11-24 13:54:19 +0000393 - Various bug fixes.
394 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000395 - 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 +0000396 This is planned to be resolved in 21.02 release.
morgolock70b1eb82020-11-24 13:54:19 +0000397 - Added new data type QASYMM8_SIGNED support for @ref NEROIAlignLayer.
SiCong Li903f8cc2020-08-27 10:17:10 +0100398 - Added new data type S32 support for:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000399 - NEArithmeticSubtraction
400 - NEArithmeticSubtractionKernel
SiCong Libb88f892020-08-28 11:18:47 +0100401 - @ref NEPixelWiseMultiplication
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000402 - NEPixelWiseMultiplicationKernel
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000403 - NEElementwiseDivision
404 - NEDivisionOperationKernel
SiCong Li96209c72020-08-21 12:28:30 +0100405 - Interface change
406 - Properly support softmax axis to have the same meaning as other major frameworks. That is, axis now defines the dimension
407 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.
408 The supported value range of axis is [-rank, rank).
409 This change applies to the following functions:
410 - @ref NESoftmaxLayer
411 - @ref NELogSoftmaxLayer
412 - @ref CLSoftmaxLayer
413 - @ref CLLogSoftmaxLayer
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000414 - GCSoftmaxLayer
Sheri Zhang824061d2020-10-26 15:46:37 +0000415 - New OpenCL kernels / functions:
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100416 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
morgolock0e728492020-11-20 11:03:33 +0000417 - @ref CLLogicalNot
418 - @ref CLLogicalAnd
419 - @ref CLLogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000420 - New Arm® Neon™ kernels / functions:
morgolock0e728492020-11-20 11:03:33 +0000421 - @ref NELogicalNot
422 - @ref NELogicalAnd
423 - @ref NELogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000424 - Removed padding from Arm® Neon™ kernels:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000425 - NEComplexPixelWiseMultiplicationKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000426 - NENonMaximaSuppression3x3Kernel
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000427 - NERemapKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100428 - NEGEMMInterleave4x4Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100429 - NEDirectConvolutionLayerKernel
Manuel Bottini10b38262021-02-19 18:16:44 +0000430 - NEScaleKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000431 - NELocallyConnectedMatrixMultiplyKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100432 - NEGEMMLowpOffsetContributionKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100433 - NEGEMMTranspose1xWKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +0000434 - NEPoolingLayerKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000435 - NEConvolutionKernel
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100436 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100437 - NEGEMMLowpMatrixMultiplyKernel
Michele Di Giorgio53832b22021-06-21 14:45:44 +0100438 - NEGEMMMatrixMultiplyKernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100439 - NEDirectConvolutionLayerOutputStageKernel
Sheri Zhanged367132020-10-08 15:46:16 +0100440 - @ref NEReductionOperationKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100441 - NEGEMMLowpMatrixAReductionKernel
442 - NEGEMMLowpMatrixBReductionKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000443 - Removed padding from OpenCL kernels:
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000444 - CLBatchConcatenateLayerKernel
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000445 - CLElementwiseOperationKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000446 - @ref CLBatchNormalizationLayerKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000447 - CLPoolingLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100448 - CLWinogradInputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100449 - CLGEMMLowpMatrixMultiplyNativeKernel
450 - CLGEMMLowpMatrixAReductionKernel
451 - CLGEMMLowpMatrixBReductionKernel
452 - CLGEMMLowpOffsetContributionOutputStageKernel
453 - CLGEMMLowpOffsetContributionKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100454 - CLWinogradOutputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100455 - CLGEMMLowpMatrixMultiplyReshapedKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000456 - @ref CLFuseBatchNormalizationKernel
457 - @ref CLDepthwiseConvolutionLayerNativeKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100458 - CLDepthConvertLayerKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000459 - CLCopyKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100460 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000461 - CLActivationLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100462 - CLWinogradFilterTransformKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000463 - CLWidthConcatenateLayerKernel
464 - CLWidthConcatenate4TensorsKernel
465 - CLWidthConcatenate2TensorsKernel
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000466 - CLLogits1DMaxShiftExpSumKernel
467 - CLLogits1DNormKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000468 - CLHeightConcatenateLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100469 - CLGEMMMatrixMultiplyKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100470 - CLGEMMLowpQuantizeDownInt32ScaleKernel
471 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
472 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000473 - CLDepthConcatenateLayerKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100474 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000475 - Removed OpenCL kernels / functions:
476 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
477 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel
478 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel
morgolock00c76012020-11-06 10:40:12 +0000479 - 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 +0100480 - CLLocallyConnectedLayer
481 - CLLocallyConnectedMatrixMultiplyKernel
morgolock00c76012020-11-06 10:40:12 +0000482 - CLAbsoluteDifference
483 - CLAbsoluteDifferenceKernel
484 - CLAccumulate
485 - CLAccumulateKernel
486 - CLAccumulateSquared
487 - CLAccumulateSquaredKernel
488 - CLAccumulateWeighted
489 - CLAccumulateWeightedKernel
490 - CLAccumulateWeightedFP16Kernel
491 - CLBox3x3
492 - CLBox3x3Kernel
493 - CLBox3x3FP16Kernel
494 - CLCannyEdge
495 - CLChannelCombine
496 - CLChannelCombineKernel
497 - CLChannelExtract
498 - CLChannelExtractKernel
499 - CLColorConvert
500 - CLColorConvertKernel
501 - CLConvolution3x3
502 - CLConvolutionRectangle
503 - CLConvolutionRectangleKernel
504 - CLConvolutionSquare
505 - CLConvolutionKernel
506 - CLDerivative
507 - CLDerivativeKernel
508 - CLDilate
509 - CLDilateKernel
510 - CLEqualizeHistogram
511 - CLErode
512 - CLErodeKernel
513 - CLFastCorners
514 - CLFastCornersKernel
515 - CLGaussian3x3
516 - CLGaussian3x3Kernel
517 - CLGaussian5x5
518 - CLGaussian5x5HorKernel
519 - CLGaussian5x5VertKernel
520 - CLGaussianPyramid
521 - CLGaussianPyramidHalf
522 - CLGaussianPyramidOrb
523 - CLHarrisCorners
524 - CLHarrisScoreKernel
525 - CLHarrisScoreFP16Kernel
526 - CLHistogram
527 - CLHistogramKernel
528 - CLHOGOrientationBinningKernel
529 - CLHOGBlockNormalizationKernel
530 - CLHOGDetectorKernel
531 - CLHOGNonMaximaSuppressionKernel
532 - CLHOGDescriptor
533 - CLHOGDetector
534 - CLHOGGradient
535 - CLHOGMultiDetection
536 - CLHOGOrientationBinningKernel
537 - CLHOGBlockNormalizationKernel
538 - CLHOGDetectorKernel
539 - CLIntegralImage
540 - CLIntegralImageKernel
541 - CLLaplacianReconstruct
542 - CLLaplacianPyramid
543 - CLMagnitude
544 - CLMagnitudePhaseKernel
545 - CLMedian3x3
546 - CLMedian3x3Kernel
547 - CLMinMaxLocation
548 - CLMinMaxLocationKernel
549 - CLNonLinearFilter
550 - CLNonLinearFilterKernel
551 - CLNonMaximaSuppression3x3
552 - CLNonMaximaSuppression3x3FP16Kernel
553 - CLNonMaximaSuppression3x3Kernel
554 - CLOpticalFlow
555 - CLPhase
556 - CLRemap
557 - CLRemapKernel
558 - CLScharr3x3
559 - CLScharr3x3Kernel
560 - CLSobel3x3
561 - CLSobel3x3Kernel
562 - CLSobel5x5
563 - CLSobel5x5HorKernel
564 - CLSobel5x5VertKernel
565 - CLSobel7x7
566 - CLSobel7x7HorKernel
567 - CLSobel7x7VertKernel
568 - CLThreshold
569 - CLThresholdKernel
570 - CLWarpAffine
571 - CLWarpAffineKernel
572 - CLWarpPerspective
573 - CLWarpPerspectiveKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000574 - 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 +0100575 - NELocallyConnectedLayer
576 - NELocallyConnectedMatrixMultiplyKernel
morgolock0c862652020-11-06 08:59:45 +0000577 - NEAbsoluteDifference
578 - NEAbsoluteDifferenceKernel
579 - NEAccumulate
580 - NEAccumulateKernel
581 - NEAccumulateSquared
582 - NEAccumulateSquaredKernel
583 - NEAccumulateWeighted
584 - NEAccumulateWeightedKernel
585 - NEAccumulateWeightedFP16Kernel
586 - NEBox3x3
587 - NEBox3x3Kernel
588 - NEBox3x3FP16Kernel
589 - NECannyEdge
590 - NEChannelCombine
591 - NEChannelCombineKernel
592 - NEChannelExtract
593 - NEChannelExtractKernel
594 - NEColorConvert
595 - NEColorConvertKernel
596 - NEConvolution3x3
597 - NEConvolutionRectangle
598 - NEConvolutionRectangleKernel
599 - NEConvolutionSquare
600 - NEConvolutionKernel
601 - NEDerivative
602 - NEDerivativeKernel
603 - NEDilate
604 - NEDilateKernel
605 - NEEqualizeHistogram
606 - NEErode
607 - NEErodeKernel
608 - NEFastCorners
609 - NEFastCornersKernel
610 - NEGaussian3x3
611 - NEGaussian3x3Kernel
612 - NEGaussian5x5
613 - NEGaussian5x5HorKernel
614 - NEGaussian5x5VertKernel
615 - NEGaussianPyramid
616 - NEGaussianPyramidHalf
617 - NEGaussianPyramidOrb
618 - NEHarrisCorners
619 - NEHarrisScoreKernel
620 - NEHarrisScoreFP16Kernel
621 - NEHistogram
622 - NEHistogramKernel
623 - NEHOGOrientationBinningKernel
624 - NEHOGBlockNormalizationKernel
625 - NEHOGDetectorKernel
626 - NEHOGNonMaximaSuppressionKernel
627 - NEHOGDescriptor
628 - NEHOGDetector
629 - NEHOGGradient
630 - NEHOGMultiDetection
631 - NEHOGOrientationBinningKernel
632 - NEHOGBlockNormalizationKernel
633 - NEHOGDetectorKernel
634 - NEIntegralImage
635 - NEIntegralImageKernel
636 - NELaplacianReconstruct
637 - NELaplacianPyramid
638 - NEMagnitude
639 - NEMagnitudePhaseKernel
640 - NEMedian3x3
641 - NEMedian3x3Kernel
642 - NEMinMaxLocation
643 - NEMinMaxLocationKernel
644 - NENonLinearFilter
645 - NENonLinearFilterKernel
646 - NENonMaximaSuppression3x3
647 - NENonMaximaSuppression3x3FP16Kernel
648 - NENonMaximaSuppression3x3Kernel
649 - NEOpticalFlow
650 - NEPhase
651 - NERemap
652 - NERemapKernel
653 - NEScharr3x3
654 - NEScharr3x3Kernel
655 - NESobel3x3
656 - NESobel3x3Kernel
657 - NESobel5x5
658 - NESobel5x5HorKernel
659 - NESobel5x5VertKernel
660 - NESobel7x7
661 - NESobel7x7HorKernel
662 - NESobel7x7VertKernel
663 - NEThreshold
664 - NEThresholdKernel
665 - NEWarpAffine
666 - NEWarpAffineKernel
667 - NEWarpPerspective
668 - NEWarpPerspectiveKernel
morgolockd6ee9ed2020-11-19 10:07:14 +0000669 - Deprecated GLES kernels / functions (If a kernel is used only by the function that is being deprecated, the kernel is deprecated together):
670 - GCAbsoluteDifference
671 - GCActivationLayer
672 - GCArithmeticAddition
673 - GCBatchNormalizationLayer
674 - GCConcatenateLayer
675 - GCConvolutionLayer
676 - GCDepthwiseConvolutionLayer
677 - GCDirectConvolutionLayer
678 - GCDropoutLayer
679 - GCFillBorder
680 - GCFullyConnectedLayer
681 - GCGEMM
682 - GCGEMMInterleave4x4
683 - GCGEMMTranspose1xW
684 - GCNormalizationLayer
685 - GCNormalizePlanarYUVLayer
686 - GCPixelWiseMultiplication
687 - GCPoolingLayer
688 - GCScale
689 - GCSoftmaxLayer
690 - GCTensorShift
691 - GCTranspose
692
SiCong Li96209c72020-08-21 12:28:30 +0100693
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100694v20.08 Public major release
695 - Various bug fixes.
696 - Various optimisations.
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100697 - Added new data type QASYMM8_SIGNED support for:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100698 - @ref CLArgMinMaxLayer
699 - @ref CLArgMinMaxLayerKernel
700 - Added new data type U8 support for:
701 - @ref NECropKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000702 - CLCropKernel
Jakub Sujakee301b32021-06-04 09:46:08 +0100703 - Added align_corner support for nearest neighbor interpolation in:
Manuel Bottini10b38262021-02-19 18:16:44 +0000704 - NEScaleKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000705 - CLScaleKernel
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100706 - New OpenCL kernels / functions:
707 - @ref CLMaxUnpoolingLayerKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000708 - New Arm® Neon™ kernels / functions:
Dana Zlotnik149203b2022-01-26 12:38:03 +0200709 - NEMaxUnpoolingLayerKernel
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100710 - New graph example:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100711 - graph_yolov3_output_detector
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100712 - GEMMTuner improvements:
713 - Added fp16 support
714 - Output json files for easier integration
715 - Enabled tuning for export_to_cl_image_rhs option for RHS tensors
716 - More robust script for running benchmarks
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100717 - Removed padding from:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000718 - NEPixelWiseMultiplicationKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000719 - NEHeightConcatenateLayerKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000720 - NEThresholdKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000721 - NEBatchConcatenateLayerKernel
Teresa Charlind1dc09c2021-03-04 15:24:45 +0000722 - NETransposeKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100723 - @ref NEBatchNormalizationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000724 - NEArithmeticSubtractionKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100725 - @ref NEBoundingBoxTransformKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +0000726 - NELogits1DMaxKernel
727 - NELogits1DSoftmaxKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100728 - @ref NEROIPoolingLayerKernel
729 - @ref NEROIAlignLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +0000730 - NEYOLOLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000731 - NEUpsampleLayerKernel
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000732 - NEFloorKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000733 - NEWidthConcatenateLayerKernel
734 - NEDepthConcatenateLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100735 - @ref NENormalizationLayerKernel
736 - @ref NEL2NormalizeLayerKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +0100737 - NEFillArrayKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100738 - NEDepthConvertLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100739 - @ref NERangeKernel
740 - @ref NEPriorBoxLayer
Sheri Zhanged367132020-10-08 15:46:16 +0100741 - Removed OpenCL kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100742 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
743 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000744 - Removed Arm® Neon™ kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100745 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
746 - NEGEMMMatrixAccumulateBiasesKernel
SiCong Lid004a7a2020-05-28 15:26:41 +0100747 - Deprecated functions / interfaces:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000748 - Non-descriptor based interfaces for NEThreshold, CLThreshold
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000749 - Non-descriptor based interfaces for @ref NEScale, @ref CLScale and GCScale
750 - In @ref NESoftmaxLayer, @ref NELogSoftmaxLayer, @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer :
751 The default "axis" value for @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer is changed from 1 to 0.
morgolock9c7fed82020-08-05 12:30:56 +0100752 Only axis 0 is supported.
753 The default "axis" value for @ref NESoftmaxLayer, @ref NELogSoftmaxLayer is changed from 1 to 0.
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100754 Only axis 0 is supported.
Sang-Hoon Parka0205b92020-07-07 09:36:09 +0100755 - The support for quantized data types has been removed from @ref CLLogSoftmaxLayer due to implementation complexity.
Manuel Bottinid844c082021-07-14 12:58:54 +0100756 - 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 +0100757 - This change allows to use @ref CLGEMMConvolutionLayer without extra padding for the input and output.
758 - Only the weights/bias of @ref CLGEMMConvolutionLayer could require padding for the computation.
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100759 - Only on Arm® Mali™ Midgard GPUs, @ref CLGEMMConvolutionLayer could require padding since CLGEMMMatrixMultiplyKernel is called and currently requires padding.
760 - 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 +0100761 - 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 +0100762 - The padding requirement for the OpenCL image object is considered into the CLGEMMReshapeRHSMatrixKernel.
763 - The reshaped RHS matrix stores the weights when GEMM is used to accelerate CLGEMMConvolutionLayer.
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100764
Georgios Pinitasfd7780d2020-03-17 11:41:00 +0000765v20.05 Public major release
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000766 - Various bug fixes.
767 - Various optimisations.
Michele Di Giorgio36a551f2020-04-23 11:55:29 +0100768 - Updated recommended NDK version to r18b.
769 - Updated recommended gcc version to Linaro 6.3.1.
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000770 - Added Bfloat16 type support
771 - Added Bfloat16 support in:
Manuel Bottini29599d02021-07-06 15:01:35 +0100772 - NEWeightsReshapeKernel
773 - NEConvolutionLayerReshapeWeights
Manuel Bottini90028992021-06-30 18:29:18 +0100774 - NEIm2ColKernel
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000775 - NEIm2Col
Georgios Pinitas11d84152021-04-28 10:20:18 +0100776 - NEDepthConvertLayerKernel
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000777 - @ref NEDepthConvertLayer
778 - @ref NEGEMMConvolutionLayer
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000779 - NEGEMMAssemblyDispatch
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000780 - Added new data type QASYMM8_SIGNED support for:
781 - @ref CLDirectConvolutionLayer
782 - @ref CLDeconvolutionLayer
783 - @ref CLDirectDeconvolutionLayer
784 - @ref CLGEMMDeconvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100785 - CLGEMMLowpMatrixMultiplyReshapedKernel
786 - CLGEMMLowpQuantizeDownInt32ScaleKernel
787 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000788 - @ref CLReductionOperation
789 - @ref CLReduceMean
Sheri Zhang359c48e2020-04-30 22:53:39 +0100790 - @ref NEScale
Manuel Bottini10b38262021-02-19 18:16:44 +0000791 - NEScaleKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000792 - NEUpsampleLayer
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000793 - @ref NECast
794 - @ref NEReductionOperation
795 - @ref NEReduceMean
796 - @ref NEArgMinMaxLayer
797 - @ref NEDeconvolutionLayer
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100798 - NEGEMMLowpQuantizeDownInt32ScaleKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000799 - @ref CPPBoxWithNonMaximaSuppressionLimit
800 - @ref CPPDetectionPostProcessLayer
801 - @ref CPPPermuteKernel
802 - @ref CPPPermute
803 - @ref CPPTopKVKernel
804 - @ref CPPTopKV
Sheri Zhang359c48e2020-04-30 22:53:39 +0100805 - @ref CPPUpsample
806 - @ref CPPUpsampleKernel
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100807 - New OpenCL kernels / functions:
808 - @ref CLQLSTMLayer
809 - @ref CLQLSTMLayerNormalizationKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000810 - New Arm® Neon™ kernels / functions:
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100811 - @ref NEQLSTMLayer
812 - @ref NEQLSTMLayerNormalizationKernel
813 - Added HARD_SWISH support in:
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000814 - CLActivationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000815 - NEActivationLayerKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000816 - Deprecated OpenCL kernels / functions:
817 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
818 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000819 - Deprecated Arm® Neon™ kernels / functions:
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000820 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
821 - Removed CPP kernels / functions:
822 - CPPFlipWeightsKernel
Manuel Bottini387259a2020-05-21 17:14:36 +0100823 - Removed PoolingLayerInfo constructors without Data Layout.
824 - Removed CLDepthwiseConvolutionLayer3x3
825 - Removed NEDepthwiseConvolutionLayerOptimized
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000826 - Added support for Winograd 3x3,4x4 on Arm® Neon™ FP16:
Manuel Bottini075253a2020-05-22 12:57:18 +0100827 - @ref NEWinogradConvolutionLayer
Michalis Spyrou96f977e2021-07-01 12:20:56 +0100828 - CpuWinogradConv2dTransformInputKernel
829 - CpuWinogradConv2dTransformOutputKernel
830 - CpuWinogradConv2dTransformWeightsKernel
Manuel Bottini075253a2020-05-22 12:57:18 +0100831 - Added CLCompileContext
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000832 - Added Arm® Neon™ GEMM kernel with 2D window support
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000833
Michele Di Giorgio740872e2020-03-04 15:29:49 +0000834v20.02.1 Maintenance release
835 - Added Android-NN build script.
836
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000837v20.02 Public major release
838 - Various bug fixes.
839 - Various optimisations.
840 - Added new data type QASYMM8_SIGNED support for:
841 - @ref CLDepthwiseConvolutionLayer
Manuel Bottini387259a2020-05-21 17:14:36 +0100842 - CLDepthwiseConvolutionLayer3x3
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000843 - @ref CLGEMMConvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100844 - CLGEMMLowpMatrixMultiplyCore
845 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
846 - CLGEMMLowpMatrixMultiplyNativeKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000847 - @ref NEActivationLayer
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000848 - NEComparisonOperationKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000849 - @ref NEConvolutionLayer
850 - @ref NEDepthwiseConvolutionLayer
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100851 - NEDepthwiseConvolutionLayer3x3Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100852 - NEDirectConvolutionLayerOutputStageKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000853 - @ref NEElementwiseComparison
854 - @ref NEElementwiseMax
855 - @ref NEElementwiseMin
856 - @ref NEElementwiseSquaredDiff
857 - @ref NEFullyConnectedLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +0100858 - NEGEMMMatrixVectorMultiplyKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000859 - @ref NEPixelWiseMultiplication
860 - @ref NEPoolingLayer
861 - @ref NEPReluLayer
862 - Added support for QSYMM8_PER_CHANNEL in:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100863 - NEDepthwiseConvolutionLayer3x3Kernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000864 - Added support for split sizes in:
865 - @ref CLSplit
866 - @ref NESplit
867 - New OpenCL kernels / functions:
868 - @ref CLFill
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100869 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000870 - New Arm® Neon™ kernels / functions:
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000871 - @ref NEFill
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100872 - NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000873 - Deprecated Arm® Neon™ functions / interfaces:
Manuel Bottini387259a2020-05-21 17:14:36 +0100874 - CLDepthwiseConvolutionLayer3x3
875 - NEDepthwiseConvolutionLayerOptimized
876 - PoolingLayerInfo constructors without Data Layout.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000877 - Added support for quantization with multiplier greater than 1 on Arm® Neon™ and CL.
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000878 - Added support for quantized inputs of type QASYMM8_SIGNED and QASYMM8 to @ref CLQuantizationLayer.
879 - Added the ability to build bootcode for bare metal.
880 - Added support for generating synthetic QASYMM8 graphs.
881 - Added support for F16 datatype in VGG16.
882 - Removed pre-built binaries for GLES.
883
Michele Di Giorgiod374ff22020-01-21 10:03:20 +0000884v19.11.1 Public maintenance release
885 - Fix offset calculation in NEReductionOperationKernel.
886 - Fix data layout in NEScaleKernel for nhwc.
887 - Retain configuration step data layout to avoid side-effects.
888 - Perform sqrt in double domain for L2 pooling.
889 - Fix output shape calculation for Reduce Mean
890 - Restrict cases where optimized NEPadLayer runs.
891
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100892v19.11 Public major release
SiCong Lica1f98c2019-11-28 11:06:11 +0000893 - Various bug fixes.
894 - Various optimisations.
SiCong Li1f7f9882019-11-28 14:59:35 +0000895 - Updated recommended NDK version to r17c.
SiCong Lica1f98c2019-11-28 11:06:11 +0000896 - Deprecated OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100897 - CLDepthwiseConvolutionLayerReshapeWeightsGenericKernel
898 - CLDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000899 - CLDepthwiseSeparableConvolutionLayer
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100900 - CLDepthwiseVectorToTensorKernel
901 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000902 - Deprecated Arm® Neon™ kernels / functions:
Giorgio Arenad93e2632019-10-15 11:09:33 +0100903 - NEDepthwiseWeightsReshapeKernel
904 - NEDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000905 - NEDepthwiseSeparableConvolutionLayer
Giorgio Arenad93e2632019-10-15 11:09:33 +0100906 - NEDepthwiseVectorToTensorKernel
Manuel Bottini05069f02019-09-26 17:18:26 +0100907 - NEDepthwiseConvolutionLayer3x3
SiCong Lica1f98c2019-11-28 11:06:11 +0000908 - New OpenCL kernels / functions:
909 - @ref CLInstanceNormalizationLayerKernel / @ref CLInstanceNormalizationLayer
910 - @ref CLDepthwiseConvolutionLayerNativeKernel to replace the old generic depthwise convolution (see Deprecated
911 OpenCL kernels / functions)
912 - @ref CLLogSoftmaxLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000913 - New Arm® Neon™ kernels / functions:
SiCong Lica1f98c2019-11-28 11:06:11 +0000914 - @ref NEBoundingBoxTransformKernel / @ref NEBoundingBoxTransform
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +0000915 - @ref NEComputeAllAnchorsKernel / NEComputeAllAnchors
SiCong Lica1f98c2019-11-28 11:06:11 +0000916 - @ref NEDetectionPostProcessLayer
917 - @ref NEGenerateProposalsLayer
918 - @ref NEInstanceNormalizationLayerKernel / @ref NEInstanceNormalizationLayer
919 - @ref NELogSoftmaxLayer
920 - @ref NEROIAlignLayerKernel / @ref NEROIAlignLayer
921 - Added QASYMM8 support for:
922 - @ref CLGenerateProposalsLayer
923 - @ref CLROIAlignLayer
924 - @ref CPPBoxWithNonMaximaSuppressionLimit
925 - Added QASYMM16 support for:
926 - @ref CLBoundingBoxTransform
927 - Added FP16 support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100928 - CLGEMMMatrixMultiplyReshapedKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000929 - Added new data type QASYMM8_PER_CHANNEL support for:
Manuel Bottini9e73c932021-03-02 17:40:42 +0000930 - CLDequantizationLayer
SiCong Lica1f98c2019-11-28 11:06:11 +0000931 - @ref NEDequantizationLayer
932 - Added new data type QSYMM8_PER_CHANNEL support for:
933 - @ref CLConvolutionLayer
934 - @ref NEConvolutionLayer
935 - @ref CLDepthwiseConvolutionLayer
936 - @ref NEDepthwiseConvolutionLayer
937 - Added FP16 mixed-precision support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100938 - CLGEMMMatrixMultiplyReshapedKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000939 - CLPoolingLayerKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000940 - Added FP32 and FP16 ELU activation for:
941 - @ref CLActivationLayer
942 - @ref NEActivationLayer
943 - Added asymmetric padding support for:
944 - @ref CLDirectDeconvolutionLayer
945 - @ref CLGEMMDeconvolutionLayer
946 - @ref NEDeconvolutionLayer
947 - Added SYMMETRIC and REFLECT modes for @ref CLPadLayerKernel / @ref CLPadLayer.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000948 - Replaced the calls to NECopyKernel and NEMemsetKernel with @ref NEPadLayer in @ref NEGenerateProposalsLayer.
949 - Replaced the calls to CLCopyKernel and CLMemsetKernel with @ref CLPadLayer in @ref CLGenerateProposalsLayer.
SiCong Lica1f98c2019-11-28 11:06:11 +0000950 - Improved performance for CL Inception V3 - FP16.
951 - Improved accuracy for CL Inception V3 - FP16 by enabling FP32 accumulator (mixed-precision).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000952 - Improved Arm® Neon™ performance by enabling fusing batch normalization with convolution and depth-wise convolution layer.
953 - Improved Arm® Neon™ performance for MobileNet-SSD by improving the output detection performance.
SiCong Lica1f98c2019-11-28 11:06:11 +0000954 - Optimized @ref CLPadLayer.
955 - Optimized CL generic depthwise convolution layer by introducing @ref CLDepthwiseConvolutionLayerNativeKernel.
956 - Reduced memory consumption by implementing weights sharing.
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100957
Michele Di Giorgiod374ff22020-01-21 10:03:20 +0000958v19.08.1 Public maintenance release
959 - Fix offset calculation in NEReductionOperationKernel.
960 - Fix data layout in NEScaleKernel for nhwc.
961 - Retain configuration step data layout to avoid side-effects.
962 - Perform sqrt in double domain for L2 pooling.
963 - Fix output shape calculation for Reduce Mean
964 - Fix broadcast CLPixelwiseMultiplication with 5D tensors
965
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100966v19.08 Public major release
967 - Various bug fixes.
968 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000969 - Deprecated Arm® Neon™ functions
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100970 - NEDepthConcatenateLayer
971 - NEWidthConcatenateLayer
972 - Deprecated OpenCL kernels / functions
973 - CLDepthConcatenateLayer
974 - CLGEMMInterleave4x4Kernel / CLGEMMInterleave4x4
975 - CLGEMMTranspose1xWKernel / CLGEMMTranspose1xW
976 - CLWidthConcatenateLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000977 - New Arm® Neon™ kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100978 - @ref NEAbsLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100979 - @ref NECast
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100980 - @ref NEElementwisePower
981 - @ref NELogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100982 - @ref NELSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100983 - @ref NENegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100984 - @ref NEPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100985 - @ref NESinLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000986 - NEBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100987 - @ref NEDepthToSpaceLayerKernel / @ref NEDepthToSpaceLayer
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100988 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100989 - NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100990 - @ref NEMeanStdDevNormalizationKernel / @ref NEMeanStdDevNormalizationLayer
991 - @ref NESpaceToDepthLayerKernel / @ref NESpaceToDepthLayer
992 - New OpenCL kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100993 - @ref CLAbsLayer
994 - @ref CLElementwisePower
995 - @ref CLLogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100996 - @ref CLLSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100997 - @ref CLNegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +0100998 - @ref CLPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +0100999 - @ref CLSinLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001000 - CLBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001001 - @ref CLDepthToSpaceLayerKernel / @ref CLDepthToSpaceLayer
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001002 - CLGEMMLowpMatrixMultiplyNativeKernel
Michele Di Giorgioba14c922020-10-12 13:27:57 +01001003 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001004 - CLGEMMMatrixMultiplyNativeKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001005 - CLMeanStdDevNormalizationKernel /CLMeanStdDevNormalizationLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001006 - @ref CLSpaceToDepthLayerKernel / @ref CLSpaceToDepthLayer
1007 - New examples:
1008 - neon_opticalflow
1009 - cl_cache
1010 - neon_permute
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001011 - Added support for FP16 in @ref NEDeconvolutionLayer
1012 - Added support for FP16 in @ref CLDeconvolutionLayer
1013 - Added support for REDUCE_MIN and REDUCE_MAX in @ref ReductionOperation
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001014 - Enable the fusion of batch normalization with convolution and depthwise convolution layer for FP32 in the graph API (OpenCL only)
1015 - 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 +00001016 - Re-factored the depthwise convolution layer kernel on Arm® Neon™ for generic cases
Jakub Sujakee301b32021-06-04 09:46:08 +01001017 - Added an optimized depthwise convolution layer kernel for 5x5 filters (Neon™ only)
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001018 - Added support to enable OpenCL kernel cache. Added example showing how to load the prebuilt OpenCL kernels from a binary cache file
1019 - Altered @ref QuantizationInfo interface to support per-channel quantization.
Manuel Bottini387259a2020-05-21 17:14:36 +01001020 - The CLDepthwiseConvolutionLayer3x3 will be included by @ref CLDepthwiseConvolutionLayer to accommodate for future optimizations.
1021 - The NEDepthwiseConvolutionLayerOptimized will be included by @ref NEDepthwiseConvolutionLayer to accommodate for future optimizations.
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001022 - Removed inner_border_right and inner_border_top parameters from @ref CLDeconvolutionLayer interface
1023 - Removed inner_border_right and inner_border_top parameters from @ref NEDeconvolutionLayer interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001024 - 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 +01001025
Michalis Spyroua9c44722019-04-05 17:18:36 +01001026v19.05 Public major release
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001027 - Various bug fixes.
1028 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001029 - New Arm® Neon™ kernels / functions:
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001030 - @ref NEBatchToSpaceLayerKernel / @ref NEBatchToSpaceLayer
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001031 - NEComplexPixelWiseMultiplicationKernel / @ref NEComplexPixelWiseMultiplication
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001032 - @ref NECropKernel / @ref NECropResize
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01001033 - NEDepthwiseConvolutionAssemblyDispatch
Michalis Spyrouca82e622019-05-10 16:43:20 +01001034 - @ref NEFFTDigitReverseKernel
1035 - @ref NEFFTRadixStageKernel
1036 - @ref NEFFTScaleKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001037 - NEGEMMLowpOffsetContributionOutputStageKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001038 - NEHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001039 - @ref NESpaceToBatchLayerKernel / @ref NESpaceToBatchLayer
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001040 - @ref NEFFT1D
1041 - @ref NEFFT2D
1042 - @ref NEFFTConvolutionLayer
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001043 - New OpenCL kernels / functions:
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001044 - CLComplexPixelWiseMultiplicationKernel / @ref CLComplexPixelWiseMultiplication
Sheri Zhang7e20e292021-02-02 11:49:34 +00001045 - CLCropKernel / @ref CLCropResize
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001046 - @ref CLDeconvolutionReshapeOutputKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001047 - @ref CLFFTDigitReverseKernel
1048 - @ref CLFFTRadixStageKernel
1049 - @ref CLFFTScaleKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001050 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001051 - CLGEMMMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001052 - CLHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001053 - @ref CLDirectDeconvolutionLayer
1054 - @ref CLFFT1D
1055 - @ref CLFFT2D
1056 - @ref CLFFTConvolutionLayer
Michalis Spyrouca82e622019-05-10 16:43:20 +01001057 - @ref CLGEMMDeconvolutionLayer
1058 - New OpenGLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001059 - GCConcatenateLayer
Michalis Spyroua9c44722019-04-05 17:18:36 +01001060 - Deprecated functions/interfaces
Georgios Pinitas09f24972019-05-17 18:14:40 +01001061 - GCDepthConcatenateLayer
1062 - NEWidthConcatenateLayer
1063 - NEDepthConcatenateLayer
1064 - CLWidthConcatenateLayer
1065 - CLDepthConcatenateLayer
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001066 - CLGEMMInterleave4x4
1067 - CLGEMMTranspose1xW
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001068 - Support different quantization info in CLConcatLayer.
1069 - Add checks on different input/output quantization info were not supported.
1070 - Tensors have different quantization information.
1071 - Add FP16 support checks.
1072 - Fix output quantization CLDeptwiseConv3x3 when activation is fused.
1073 - New graph examples:
1074 - graph_convolution
1075 - graph_fully_connected
1076 - graph_depthwise_convolution
1077 - Deepspeech v0.4.1
1078 - Add support for QASYMM8 in NEArithmeticSubtractionKernel.
1079 - Add support for QASYMM8 in NEPixelWiseMultiplicationKernel.
1080 - Add support for QASYMM8 NEDeconvolution.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001081 - Add support for DequantizationLayer for Neon/CL.
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001082 - Add support for dilation in CLDepthwiseConvolution.
1083 - Fuse offset contribution with the output stage when we use NEGEMMLowpMatrixMultiplyCore.
1084 - Optimize CLDeconvolution.
1085 - Add StackLayer to the graph API.
1086 - Add support for "reflect" padding mode in NEPad.
1087 - Winograd 7x7 NHWC on OpenCL.
1088 - Rework CL ML layers to run exclusively on CL.
1089 - Support different quantization info in PoolingLayer.
1090 - Implement and test import memory interfaces.
1091 - Added new tests and removed old ones.
1092 - Various clang-tidy fixes.
Michalis Spyroua9c44722019-04-05 17:18:36 +01001093
giuros01a69a88b2019-01-31 16:29:19 +00001094v19.02 Public major release
Isabella Gottardi62538972019-02-12 19:52:44 +00001095 - Various bug fixes.
1096 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001097 - New Arm® Neon™ kernels / functions:
Isabella Gottardi62538972019-02-12 19:52:44 +00001098 - @ref NETileKernel / @ref NETile
1099 - @ref NEFuseBatchNormalizationKernel / @ref NEFuseBatchNormalization
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001100 - NEElementwiseOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001101 - @ref NEElementwiseMax
1102 - @ref NEElementwiseMin
1103 - @ref NEElementwiseSquaredDiff
1104 - @ref NESelectKernel / @ref NESelect
1105 - @ref NESplit
1106 - @ref NESlice
1107 - @ref NEUnstack
1108 - @ref NEStridedSliceKernel / @ref NEStridedSlice
Sang-Hoon Park7249f152021-01-22 11:55:03 +00001109 - NEElementwiseUnaryKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001110 - @ref NERsqrtLayer
1111 - @ref NEExpLayer
1112 - @ref NEReverseKernel / @ref NEReverse
1113 - @ref NEArgMinMaxLayer
1114 - @ref NEStackLayerKernel / @ref NEStackLayer
1115 - @ref NERangeKernel / @ref NERange
1116 - @ref NEPadLayer
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001117 - NEMemsetKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001118 - @ref NEGatherKernel / @ref NEGather
1119 - @ref NEElementwiseComparison
1120 - @ref NEElementwiseComparisonStatic
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001121 - NEComparisonOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001122 - @ref NEElementwiseDivision
1123 - New OpenCL kernels / functions:
1124 - @ref CLSelectKernel / @ref CLSelect
1125 - @ref CLTileKernel / @ref CLTile
1126 - @ref CLComparisonKernel / @ref CLComparison
1127 - @ref CLArgMinMaxLayer
1128 - @ref CLElementwiseMax
1129 - @ref CLElementwiseMin
1130 - @ref CLElementwiseSquaredDiff
1131 - @ref CLStackLayerKernel / @ref CLStackLayer
1132 - @ref CLReverse / @ref CLReverseKernel
1133 - @ref CLRsqrtLayer
1134 - @ref CLExpLayer
Michele Di Giorgioc9c89052021-01-26 10:20:17 +00001135 - CLElementWiseUnaryLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001136 - CLGEMMReshapeLHSMatrixKernel
1137 - CLGEMMReshapeRHSMatrixKernel
1138 - CLGEMMMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001139 - @ref CLRangeKernel / @ref CLRange
1140 - @ref CLUnstack
1141 - @ref CLGatherKernel / @ref CLGather
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001142 - CLGEMMLowpMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001143 - New CPP kernels / functions:
1144 - @ref CPPDetectionOutputLayer
1145 - @ref CPPTopKV / @ref CPPTopKVKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001146 - Added new examples:
1147 - graph_ssd_mobilenet.cpp
1148 - graph_mobilenet_v2.cpp
1149 - graph_resnet12.cpp
1150 - graph_srcnn955.cpp
1151 - graph_vgg_vdsr.cpp
1152 - graph_inception_resnet_v1.cpp
1153 - Add 4D tensors support to
1154 - @ref NESoftmaxLayer
1155 - Fused activation in @ref CLWinogradConvolutionLayer
Jakub Sujakee301b32021-06-04 09:46:08 +01001156 - Extended @ref NEPermute to support more cases
1157 - Added Neon™/SVE GEMM Hybrid kernels
Isabella Gottardi62538972019-02-12 19:52:44 +00001158 - Added u8 and s8 hybrid assembly kernels
1159 - Introduced GEMM strategy name in NEGEMMAssemblyWrapper
1160 - Improved @ref CLTuner
1161 - Fused the bias addition within @ref CLGEMM
1162 - Added support for QASYMM8 LOGISTIC activation in @ref NEActivationLayer
1163 - Added NHWC data layout support to:
1164 - @ref NEScale for F16
1165 - @ref CLNormalizationLayer IN_MAP_2D for FP32/FP16
1166 - @ref NEL2NormalizeLayer for FP32/FP16
1167 - @ref NENormalizationLayer IN_MAP_2D for FP32/FP16
1168 - @ref CLROIAlignLayer
Manuel Bottini5209be52019-02-13 16:34:56 +00001169 - @ref CLGenerateProposalsLayer
Isabella Gottardi62538972019-02-12 19:52:44 +00001170 - Added QASYMM8 support to the following kernels:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001171 - NEArithmeticAdditionKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001172 - @ref NEScale
1173 - Added new tests and improved validation and benchmarking suites.
giuros01a69a88b2019-01-31 16:29:19 +00001174 - Deprecated functions/interfaces
1175 - Usage of inner_border_right and inner_border_top has been deprecated in @ref CLDeconvolutionLayer and @ref NEDeconvolutionLayer
1176
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001177v18.11 Public major release
1178 - Various bug fixes.
1179 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001180 - New Arm® Neon™ kernels / functions:
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001181 - @ref NEChannelShuffleLayer / @ref NEChannelShuffleLayerKernel
1182 - @ref NEReduceMean
1183 - @ref NEReorgLayer / @ref NEReorgLayerKernel
1184 - @ref NEPriorBoxLayer / @ref NEPriorBoxLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001185 - NEUpsampleLayer / NEUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001186 - NEYOLOLayer / NEYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001187 - New OpenCL kernels / functions:
1188 - @ref CLBatchToSpaceLayer / @ref CLBatchToSpaceLayerKernel
1189 - @ref CLBoundingBoxTransform / @ref CLBoundingBoxTransformKernel
Manuel Bottini5209be52019-02-13 16:34:56 +00001190 - @ref CLComputeAllAnchorsKernel
1191 - @ref CLGenerateProposalsLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001192 - @ref CLNormalizePlanarYUVLayer / @ref CLNormalizePlanarYUVLayerKernel
1193 - @ref CLReorgLayer / @ref CLReorgLayerKernel
1194 - @ref CLSpaceToBatchLayer / @ref CLSpaceToBatchLayerKernel
1195 - @ref CLPadLayer
1196 - @ref CLReduceMean
1197 - @ref CLPriorBoxLayer / @ref CLPriorBoxLayerKernel
1198 - @ref CLROIAlignLayer / @ref CLROIAlignLayerKernel
1199 - @ref CLSlice
1200 - @ref CLSplit
1201 - @ref CLStridedSlice / @ref CLStridedSliceKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001202 - CLUpsampleLayer / CLUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001203 - CLYOLOLayer / CLYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001204 - New CPP kernels / functions:
1205 - @ref CPPBoxWithNonMaximaSuppressionLimit / @ref CPPBoxWithNonMaximaSuppressionLimitKernel
1206 - Added the validate method in:
1207 - @ref NEDepthConvertLayer
1208 - @ref NEFloor / @ref CLFloor
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001209 - NEGEMMMatrixAdditionKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001210 - @ref NEReshapeLayer / @ref CLReshapeLayer
1211 - @ref CLScale
1212 - Added new examples:
1213 - graph_shufflenet.cpp
1214 - graph_yolov3.cpp
1215 - Added documentation for add a new function or kernel.
1216 - Improved doxygen documentation adding a list of the existing functions.
1217 - Add 4D tensors support to
Georgios Pinitas09f24972019-05-17 18:14:40 +01001218 - CLWidthConcatenateLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001219 - CLFlattenLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001220 - @ref CLSoftmaxLayer
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001221 - Add dot product support for CLDepthwiseConvolutionLayer3x3NHWCKernel non-unit stride
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001222 - Add SVE support
1223 - Fused batch normalization into convolution layer weights in @ref CLFuseBatchNormalization
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001224 - Fuses activation in CLDepthwiseConvolutionLayer3x3NCHWKernel, CLDepthwiseConvolutionLayer3x3NHWCKernel and @ref NEGEMMConvolutionLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001225 - Added NHWC data layout support to:
1226 - @ref CLChannelShuffleLayer
1227 - @ref CLDeconvolutionLayer
1228 - @ref CLL2NormalizeLayer
1229 - Added QASYMM8 support to the following kernels:
Manuel Bottini3b131ab2021-02-19 18:16:44 +00001230 - CLScaleKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001231 - NEDepthwiseConvolutionLayer3x3Kernel
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001232 - CLPixelWiseMultiplicationKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001233 - Added FP16 support to the following kernels:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001234 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001235 - NEDepthwiseConvolutionLayer3x3Kernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001236 - @ref CLNormalizePlanarYUVLayerKernel
1237 - @ref CLWinogradConvolutionLayer (5x5 kernel)
1238 - More tests added to both validation and benchmarking suites.
1239
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001240v18.08 Public major release
1241 - Various bug fixes.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001242 - Various optimisations.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001243 - Updated recommended NDK version to r17b.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001244 - Removed support for QS8/QS16 data types.
1245 - Added support for grouped convolution in @ref CLConvolutionLayer.
1246 - Added NHWC data layout support to:
Georgios Pinitas09f24972019-05-17 18:14:40 +01001247 - NEDepthConcatenateLayer / CLDepthConcatenateLayer
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001248 - @ref NEWinogradConvolutionLayer / @ref CLWinogradConvolutionLayer
1249 - @ref CLDepthwiseConvolutionLayer
1250 - @ref CLDirectConvolutionLayer
1251 - @ref CLConvolutionLayer
1252 - @ref CLScale
Manuel Bottinid844c082021-07-14 12:58:54 +01001253 - CLIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001254 - New Arm® Neon™ kernels / functions:
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001255 - @ref NERNNLayer
1256 - New OpenCL kernels / functions:
1257 - @ref CLArithmeticDivision
1258 - Introduced prepare() stage support in the graph API for GLES.
1259 - Added support for memory reusage when trying to allocate smaller CLTensors.
1260 - Enabled NHWC execution on graph examples.
1261 - Added JPEG accessor for validation purposes.
1262 - Added validate methods to some kernels / functions.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001263
1264v18.05 Public major release
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001265 - Various bug fixes.
1266 - Various optimisations.
Jakub Sujakee301b32021-06-04 09:46:08 +01001267 - Major redesign in the interface for the Neon™ kernels implemented in assembly.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001268 - 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 +01001269 - Added NEGEMMAssemblyWrapper and AssemblyKernelGlue which are used to execute assembly kernels in Neon™ functions.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001270 - Minor changes to the CPUInfo type to make it compatible with the new assembly gemm interface.
Jakub Sujakee301b32021-06-04 09:46:08 +01001271 - Moved Neon™ assembly kernels to the folder src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001272 - Improved doxygen documentation.
1273 - Improved memory management for layer's transitions.
1274 - Added support for NHWC data layout in tensors.
1275 - Added NHWC data layout support to:
1276 - @ref NEGEMMConvolutionLayer
1277 - @ref NEDirectConvolutionLayer
1278 - @ref NEPoolingLayer / @ref CLPoolingLayer
1279 - @ref NEBatchNormalizationLayer / @ref CLBatchNormalizationLayer
1280 - @ref NEDepthwiseConvolutionLayer
1281 - @ref NEScale
Georgios Pinitasf7c5a412020-12-03 14:38:33 +00001282 - NEIm2Col
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001283 - Added support for dilated convolutions in @ref NEConvolutionLayer and @ref CLConvolutionLayer.
1284 - New OpenCL kernels / functions:
1285 - @ref CLChannelShuffleLayer / @ref CLChannelShuffleLayerKernel
Teresa Charlin91b7f742021-04-12 13:57:00 +01001286 - CLConvertFullyConnectedWeightsKernel / @ref CLConvertFullyConnectedWeights
Sheri Zhang7e20e292021-02-02 11:49:34 +00001287 - @ref CLCopy / CLCopyKernel
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001288 - @ref CLLSTMLayer
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001289 - @ref CLRNNLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001290 - CLWidthConcatenateLayer / CLWidthConcatenateLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +01001291 - CLWinogradFilterTransformKernel / @ref CLWinogradConvolutionLayer
1292 - CLWinogradInputTransformKernel / CLWinogradInputTransform
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001293 - New Arm® Neon™ kernels / functions:
Teresa Charlin562bee52021-04-13 17:44:15 +01001294 - NEConvertFullyConnectedWeightsKernel / @ref NEConvertFullyConnectedWeights.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001295 - Created the validate method in @ref CLDepthwiseConvolutionLayer.
1296 - Beta and gamma are no longer mandatory arguments in @ref NEBatchNormalizationLayer and @ref CLBatchNormalizationLayer.
1297 - Added depth multiplier support in @ref NEDepthwiseConvolutionLayer and @ref CLDepthwiseConvolutionLayer.
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001298 - Added broadcast multiply support in @ref NEPixelWiseMultiplication / NEPixelWiseMultiplicationKernel.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001299 - Port mobilenet example to NHWC data layout.
1300 - Enabled Winograd method in @ref CLConvolutionLayer.
1301 - Renamed NEWinogradLayer to @ref NEWinogradConvolutionLayer.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001302 - Updated @ref NEWinogradConvolutionLayer to use highly optimised assembly kernels in src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001303 - Added memory manager support in GLES functions.
1304 - Major refactoring of the graph API.
1305 - Added GLES backend in the graph API.
1306 - Added support for the memory manager in the graph API.
1307 - Enabled Winograd Convolution method in the graph API.
1308 - Added support for grouped convolutions in the graph API.
Manuel Bottini10b38262021-02-19 18:16:44 +00001309 - Replaced NEDeconvolutionLayerUpsampleKernel with NEScaleKernel in @ref NEDeconvolutionLayer.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001310 - Added fast maths flag in @ref CLConvolutionLayer.
1311 - Added new tests and benchmarks in validation and benchmark frameworks
Jakub Sujakee301b32021-06-04 09:46:08 +01001312 - Merge Activation layer with Convolution Layer (Neon™, CL, GLES)
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001313 - Added support to OpenCL 2.0 SVM
1314 - Added support to import memory in OpenCL tensors.
1315 - Added the prepare() method to perform any one off pre-processing before running the function.
1316 - Added new examples:
1317 - graph_inception_v4.cpp
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001318 - graph_resnext50.cpp
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001319 - Added memory measurement instrument for CL.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001320
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001321v18.03 Public maintenance release
1322 - Various bug fixes.
Anthony Barbier3762e742018-03-02 11:49:33 +00001323 - Fixed bug in @ref NEActivationLayer
1324 - Fix in @ref CLTuner when using batches.
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001325 - Updated recommended NDK version to r16b (And fixed warnings).
1326 - Fixed bug in validation code.
1327 - Added Inception v4 graph example.
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001328 - Renamed NEWinogradLayer.cpp to @ref NEWinogradConvolutionLayer
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001329
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001330v18.02 Public major release
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001331 - Various Arm® Neon™ / OpenCL / GLES optimisations.
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001332 - Various bug fixes.
1333 - Changed default number of threads on big LITTLE systems.
1334 - Refactored examples and added:
1335 - graph_mobilenet_qassym8
1336 - graph_resnet
1337 - graph_squeezenet_v1_1
Anthony Barbier3762e742018-03-02 11:49:33 +00001338 - Renamed @ref CLConvolutionLayer into @ref CLGEMMConvolutionLayer and created a new @ref CLConvolutionLayer to select the fastest convolution method.
1339 - 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 +00001340 - Added in place support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001341 - @ref CLActivationLayer
1342 - @ref CLBatchNormalizationLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001343 - Added QASYMM8 support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001344 - @ref CLActivationLayer
1345 - @ref CLDepthwiseConvolutionLayer
1346 - @ref NEDepthwiseConvolutionLayer
1347 - @ref NESoftmaxLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001348 - Added FP16 support to:
Manuel Bottini387259a2020-05-21 17:14:36 +01001349 - CLDepthwiseConvolutionLayer3x3
Anthony Barbier3762e742018-03-02 11:49:33 +00001350 - @ref CLDepthwiseConvolutionLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001351 - Added broadcasting support to NEArithmeticAddition / @ref CLArithmeticAddition / @ref CLPixelWiseMultiplication
Anthony Barbier3762e742018-03-02 11:49:33 +00001352 - Added fused batched normalization and activation to @ref CLBatchNormalizationLayer and @ref NEBatchNormalizationLayer
1353 - Added support for non-square pooling to @ref NEPoolingLayer and @ref CLPoolingLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001354 - New OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001355 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001356 - New Arm® Neon™ kernels / functions
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001357 - Added name() method to all kernels.
1358 - Added support for Winograd 5x5.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001359 - NEPermuteKernel / @ref NEPermute
Michalis Spyrou96f977e2021-07-01 12:20:56 +01001360 - CpuWinogradConv2dTransformInputKernel / NEWinogradLayer
1361 - CpuWinogradConv2dTransformOutputKernel / NEWinogradLayer
1362 - CpuWinogradConv2dTransformWeightsKernel / NEWinogradLayer
Anthony Barbiere1553372018-07-16 18:53:52 +01001363 - Renamed NEWinogradLayerKernel into NEWinogradLayerBatchedGEMMKernel
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001364 - New GLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001365 - GCTensorShiftKernel / GCTensorShift
Pablo Tellof6c572c2018-02-14 12:47:30 +00001366
Anthony Barbier64c95a02018-01-22 18:48:55 +00001367v18.01 Public maintenance release
1368 - Various bug fixes
1369 - Added some of the missing validate() methods
Anthony Barbier3762e742018-03-02 11:49:33 +00001370 - Added @ref CLDeconvolutionLayerUpsampleKernel / @ref CLDeconvolutionLayer @ref CLDeconvolutionLayerUpsample
Sheri Zhang7e20e292021-02-02 11:49:34 +00001371 - Added CLPermuteKernel / @ref CLPermute
Anthony Barbier64c95a02018-01-22 18:48:55 +00001372 - Added method to clean the programs cache in the CL Kernel library.
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001373 - Added GCArithmeticAdditionKernel / GCArithmeticAddition
1374 - Added GCDepthwiseConvolutionLayer3x3Kernel / GCDepthwiseConvolutionLayer3x3
1375 - Added GCNormalizePlanarYUVLayerKernel / GCNormalizePlanarYUVLayer
1376 - Added GCScaleKernel / GCScale
1377 - Added GCWeightsReshapeKernel / GCConvolutionLayer
Anthony Barbier64c95a02018-01-22 18:48:55 +00001378 - Added FP16 support to the following GLES compute kernels:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001379 - GCCol2ImKernel
1380 - GCGEMMInterleave4x4Kernel
1381 - GCGEMMTranspose1xWKernel
1382 - GCIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001383 - Refactored Arm® Neon™ Winograd (NEWinogradLayerKernel)
Manuel Bottini327225d2021-04-13 13:09:30 +01001384 - Added NEDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001385 - Added QASYMM8 support to the following Arm® Neon™ kernels:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001386 - NEDepthwiseConvolutionLayer3x3Kernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001387 - @ref NEFillBorderKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +00001388 - NEPoolingLayerKernel
Anthony Barbier64c95a02018-01-22 18:48:55 +00001389 - Added new examples:
1390 - graph_cl_mobilenet_qasymm8.cpp
1391 - graph_inception_v3.cpp
1392 - gc_dc.cpp
1393 - More tests added to both validation and benchmarking suites.
1394
Gian Marcoff850932017-12-11 12:37:17 +00001395v17.12 Public major release
1396 - Most machine learning functions on OpenCL support the new data type QASYMM8
1397 - Introduced logging interface
1398 - Introduced opencl timer
1399 - Reworked GEMMLowp interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001400 - Added new Arm® Neon™ assembly kernels for GEMMLowp, SGEMM and HGEMM
Gian Marcoff850932017-12-11 12:37:17 +00001401 - Added validation method for most Machine Learning kernels / functions
1402 - Added new graph examples such as googlenet, mobilenet, squeezenet, vgg16 and vgg19
1403 - Added sgemm example for OpenCL
1404 - Added absolute difference example for GLES compute
1405 - Added new tests and benchmarks in validation and benchmark frameworks
1406 - Added new kernels / functions for GLES compute
1407
1408 - New OpenGL ES kernels / functions
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001409 - GCAbsoluteDifferenceKernel / GCAbsoluteDifference
1410 - GCActivationLayerKernel / GCActivationLayer
1411 - GCBatchNormalizationLayerKernel / GCBatchNormalizationLayer
1412 - GCCol2ImKernel
1413 - GCDepthConcatenateLayerKernel / GCDepthConcatenateLayer
1414 - GCDirectConvolutionLayerKernel / GCDirectConvolutionLayer
1415 - GCDropoutLayerKernel / GCDropoutLayer
1416 - GCFillBorderKernel / GCFillBorder
1417 - GCGEMMInterleave4x4Kernel / GCGEMMInterleave4x4
1418 - GCGEMMMatrixAccumulateBiasesKernel / GCGEMMMatrixAdditionKernel / GCGEMMMatrixMultiplyKernel / GCGEMM
1419 - GCGEMMTranspose1xWKernel / GCGEMMTranspose1xW
1420 - GCIm2ColKernel
1421 - GCNormalizationLayerKernel / GCNormalizationLayer
1422 - GCPixelWiseMultiplicationKernel / GCPixelWiseMultiplication
1423 - GCPoolingLayerKernel / GCPoolingLayer
1424 - GCLogits1DMaxKernel / GCLogits1DShiftExpSumKernel / GCLogits1DNormKernel / GCSoftmaxLayer
1425 - GCTransposeKernel / GCTranspose
Gian Marcoff850932017-12-11 12:37:17 +00001426
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001427 - New Arm® Neon™ kernels / functions
Pablo Telloeb82fd22018-02-23 13:43:50 +00001428 - arm_compute::NEGEMMLowpAArch64A53Kernel / arm_compute::NEGEMMLowpAArch64Kernel / arm_compute::NEGEMMLowpAArch64V8P4Kernel / arm_compute::NEGEMMInterleavedBlockedKernel / arm_compute::NEGEMMLowpAssemblyMatrixMultiplyCore
1429 - arm_compute::NEHGEMMAArch64FP16Kernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001430 - NEDepthwiseConvolutionLayer3x3Kernel / NEDepthwiseIm2ColKernel / NEGEMMMatrixVectorMultiplyKernel / NEDepthwiseVectorToTensorKernel / @ref NEDepthwiseConvolutionLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001431 - NEGEMMLowpOffsetContributionKernel / NEGEMMLowpMatrixAReductionKernel / NEGEMMLowpMatrixBReductionKernel / NEGEMMLowpMatrixMultiplyCore
Manuel Bottiniae58bdf2021-06-17 17:18:45 +01001432 - NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001433 - NEWinogradLayer / NEWinogradLayerKernel
Gian Marcoff850932017-12-11 12:37:17 +00001434
1435 - New OpenCL kernels / functions
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001436 - CLGEMMLowpOffsetContributionKernel / CLGEMMLowpMatrixAReductionKernel / CLGEMMLowpMatrixBReductionKernel / CLGEMMLowpMatrixMultiplyCore
1437 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Gian Marcoff850932017-12-11 12:37:17 +00001438
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001439 - New graph nodes for Arm® Neon™ and OpenCL
Georgios Pinitasd9eb2752018-04-03 13:44:29 +01001440 - graph::BranchLayer
1441 - graph::DepthConvertLayer
1442 - graph::DepthwiseConvolutionLayer
1443 - graph::DequantizationLayer
1444 - graph::FlattenLayer
1445 - graph::QuantizationLayer
1446 - graph::ReshapeLayer
Gian Marcoff850932017-12-11 12:37:17 +00001447
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001448v17.10 Public maintenance release
1449 - Bug fixes:
1450 - Check the maximum local workgroup size supported by OpenCL devices
1451 - Minor documentation updates (Fixed instructions to build the examples)
Anthony Barbier3762e742018-03-02 11:49:33 +00001452 - Introduced a graph::GraphContext
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001453 - Added a few new Graph nodes, support for branches and grouping.
1454 - Automatically enable cl_printf in debug builds
1455 - Fixed bare metal builds for armv7a
1456 - Added AlexNet and cartoon effect examples
1457 - 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)
1458
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001459v17.09 Public major release
1460 - Experimental Graph support: initial implementation of a simple stream API to easily chain machine learning layers.
Anthony Barbier3762e742018-03-02 11:49:33 +00001461 - 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 +01001462 - New validation and benchmark frameworks (Boost and Google frameworks replaced by homemade framework).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001463 - Most machine learning functions support both fixed point 8 and 16 bit (QS8, QS16) for both Arm® Neon™ and OpenCL.
1464 - New Arm® Neon™ kernels / functions:
Pablo Telloeb82fd22018-02-23 13:43:50 +00001465 - arm_compute::NEGEMMAssemblyBaseKernel arm_compute::NEGEMMAArch64Kernel
Manuel Bottini00f4dfc2021-03-10 09:55:14 +00001466 - NEDequantizationLayerKernel / @ref NEDequantizationLayer
Georgios Pinitas70eb53b2021-01-06 19:42:21 +00001467 - NEFloorKernel / @ref NEFloor
Anthony Barbier3762e742018-03-02 11:49:33 +00001468 - @ref NEL2NormalizeLayerKernel / @ref NEL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001469 - NEQuantizationLayerKernel NEMinMaxLayerKernel / @ref NEQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001470 - @ref NEROIPoolingLayerKernel / @ref NEROIPoolingLayer
1471 - @ref NEReductionOperationKernel / @ref NEReductionOperation
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001472 - NEReshapeLayerKernel / @ref NEReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001473
1474 - New OpenCL kernels / functions:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001475 - CLDepthwiseConvolutionLayer3x3NCHWKernel CLDepthwiseConvolutionLayer3x3NHWCKernel CLDepthwiseIm2ColKernel CLDepthwiseVectorToTensorKernel CLDepthwiseWeightsReshapeKernel / CLDepthwiseConvolutionLayer3x3 @ref CLDepthwiseConvolutionLayer CLDepthwiseSeparableConvolutionLayer
Manuel Bottini9e73c932021-03-02 17:40:42 +00001476 - CLDequantizationLayerKernel / CLDequantizationLayer
Sheri Zhang1efed922021-03-10 22:43:38 +00001477 - CLDirectConvolutionLayerKernel / @ref CLDirectConvolutionLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001478 - CLFlattenLayer
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001479 - CLFloorKernel / @ref CLFloor
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001480 - CLGEMMTranspose1xW
Michele Di Giorgioee82d342021-01-05 16:14:28 +00001481 - CLGEMMMatrixVectorMultiplyKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001482 - @ref CLL2NormalizeLayerKernel / @ref CLL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001483 - CLQuantizationLayerKernel CLMinMaxLayerKernel / @ref CLQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001484 - @ref CLROIPoolingLayerKernel / @ref CLROIPoolingLayer
1485 - @ref CLReductionOperationKernel / @ref CLReductionOperation
Sheri Zhang7e20e292021-02-02 11:49:34 +00001486 - CLReshapeLayerKernel / @ref CLReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001487
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001488v17.06 Public major release
1489 - Various bug fixes
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001490 - Added support for fixed point 8 bit (QS8) to the various Arm® Neon™ machine learning kernels.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001491 - Added unit tests and benchmarks (AlexNet, LeNet)
1492 - Added support for sub tensors.
1493 - Added infrastructure to provide GPU specific optimisation for some OpenCL kernels.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001494 - Added @ref OMPScheduler (OpenMP) scheduler for Neon
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001495 - Added @ref SingleThreadScheduler scheduler for Arm® Neon™ (For bare metal)
ramelg01b2eba7f2021-12-23 08:32:08 +00001496 - User can specify their own scheduler by implementing the @ref IScheduler interface.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001497 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001498 - @ref CLBatchNormalizationLayerKernel / @ref CLBatchNormalizationLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001499 - CLDepthConcatenateLayerKernel / CLDepthConcatenateLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001500 - CLHOGOrientationBinningKernel CLHOGBlockNormalizationKernel, CLHOGDetectorKernel / CLHOGDescriptor CLHOGDetector CLHOGGradient CLHOGMultiDetection
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001501 - CLLocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedLayer
Manuel Bottinid87aded2021-07-16 10:23:31 +01001502 - CLWeightsReshapeKernel / CLConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001503 - New C++ kernels:
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001504 - CPPDetectionWindowNonMaximaSuppressionKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001505 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001506 - @ref NEBatchNormalizationLayerKernel / @ref NEBatchNormalizationLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001507 - NEDepthConcatenateLayerKernel / NEDepthConcatenateLayer
Manuel Bottini327225d2021-04-13 13:09:30 +01001508 - NEDirectConvolutionLayerKernel / @ref NEDirectConvolutionLayer
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001509 - NELocallyConnectedMatrixMultiplyKernel / NELocallyConnectedLayer
Manuel Bottini29599d02021-07-06 15:01:35 +01001510 - NEWeightsReshapeKernel / NEConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001511
1512v17.05 Public bug fixes release
1513 - Various bug fixes
1514 - Remaining of the functions ported to use accurate padding.
1515 - Library does not link against OpenCL anymore (It uses dlopen / dlsym at runtime instead to determine whether or not OpenCL is available).
1516 - Added "free" method to allocator.
1517 - Minimum version of g++ required for armv7 Linux changed from 4.8 to 4.9
1518
1519v17.04 Public bug fixes release
1520
1521 The following functions have been ported to use the new accurate padding:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001522 - CLColorConvertKernel
1523 - CLEdgeNonMaxSuppressionKernel
1524 - CLEdgeTraceKernel
1525 - CLGaussianPyramidHorKernel
1526 - CLGaussianPyramidVertKernel
1527 - CLGradientKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001528 - NEChannelCombineKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001529 - NEFillArrayKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001530 - NEGaussianPyramidHorKernel
1531 - NEGaussianPyramidVertKernel
Georgios Pinitas09d34512018-08-30 16:02:11 +01001532 - NEHarrisScoreFP16Kernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001533 - NEHarrisScoreKernel
1534 - NEHOGDetectorKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +00001535 - NELogits1DMaxKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001536 - NELogits1DShiftExpSumKernel
1537 - NELogits1DNormKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001538 - NENonMaximaSuppression3x3FP16Kernel
1539 - NENonMaximaSuppression3x3Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001540
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001541v17.03.1 First Major public release of the sources
1542 - Renamed the library to arm_compute
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001543 - New CPP target introduced for C++ kernels shared between Arm® Neon™ and CL functions.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001544 - New padding calculation interface introduced and ported most kernels / functions to use it.
1545 - New OpenCL kernels / functions:
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +01001546 - CLGEMMLowpMatrixMultiplyKernel / CLGEMMLowp
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001547 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001548 - @ref NENormalizationLayerKernel / @ref NENormalizationLayer
Teresa Charlind1dc09c2021-03-04 15:24:45 +00001549 - NETransposeKernel / @ref NETranspose
Michalis Spyrou373b4072021-01-20 16:41:12 +00001550 - NELogits1DMaxKernel, NELogits1DShiftExpSumKernel, NELogits1DNormKernel / @ref NESoftmaxLayer
Manuel Bottini24b89202021-07-01 18:13:33 +01001551 - NEIm2ColKernel, NECol2ImKernel, NEConvolutionLayerWeightsReshapeKernel / @ref NEConvolutionLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +01001552 - NEGEMMMatrixAccumulateBiasesKernel / @ref NEFullyConnectedLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001553 - NEGEMMLowpMatrixMultiplyKernel / NEGEMMLowp
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001554
1555v17.03 Sources preview
1556 - New OpenCL kernels / functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001557 - CLGradientKernel, CLEdgeNonMaxSuppressionKernel, CLEdgeTraceKernel / CLCannyEdge
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001558 - GEMM refactoring + FP16 support: CLGEMMInterleave4x4Kernel, CLGEMMTranspose1xWKernel, CLGEMMMatrixMultiplyKernel, CLGEMMMatrixAdditionKernel / @ref CLGEMM
Michele Di Giorgiof6f78762020-07-06 11:27:21 +01001559 - CLGEMMMatrixAccumulateBiasesKernel / @ref CLFullyConnectedLayer
Teresa Charlin27886092021-02-25 20:15:01 +00001560 - CLTransposeKernel / @ref CLTranspose
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001561 - CLLKTrackerInitKernel, CLLKTrackerStage0Kernel, CLLKTrackerStage1Kernel, CLLKTrackerFinalizeKernel / CLOpticalFlow
Anthony Barbier3762e742018-03-02 11:49:33 +00001562 - @ref CLNormalizationLayerKernel / @ref CLNormalizationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001563 - CLLaplacianPyramid, CLLaplacianReconstruct
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001564 - New Arm® Neon™ kernels / functions:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001565 - NEActivationLayerKernel / @ref NEActivationLayer
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001566 - GEMM refactoring + FP16 support (Requires armv8.2 CPU): NEGEMMInterleave4x4Kernel, NEGEMMTranspose1xWKernel, NEGEMMMatrixMultiplyKernel, NEGEMMMatrixAdditionKernel / @ref NEGEMM
Michele Di Giorgio19289042021-02-03 16:05:00 +00001567 - NEPoolingLayerKernel / @ref NEPoolingLayer
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001568
1569v17.02.1 Sources preview
1570 - New OpenCL kernels / functions:
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +00001571 - CLLogits1DMaxKernel, CLLogits1DShiftExpSumKernel, CLLogits1DNormKernel / @ref CLSoftmaxLayer
Michele Di Giorgioe1314662021-02-01 17:09:32 +00001572 - CLPoolingLayerKernel / @ref CLPoolingLayer
Manuel Bottinid844c082021-07-14 12:58:54 +01001573 - CLIm2ColKernel, CLCol2ImKernel, CLConvolutionLayerWeightsReshapeKernel / CLConvolutionLayer
Adnan AlSinan6863fa02022-02-04 13:04:55 +00001574 - CLRemapKernel / CLRemap
Michalis Spyrou473cb012021-02-23 11:48:12 +00001575 - CLGaussianPyramidHorKernel, CLGaussianPyramidVertKernel / CLGaussianPyramid, CLGaussianPyramidHalf, CLGaussianPyramidOrb
1576 - CLMinMaxKernel, CLMinMaxLocationKernel / CLMinMaxLocation
1577 - CLNonLinearFilterKernel / CLNonLinearFilter
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001578 - New Arm® Neon™ FP16 kernels (Requires armv8.2 CPU)
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001579 - NEAccumulateWeightedFP16Kernel
1580 - NEBox3x3FP16Kernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001581 - NENonMaximaSuppression3x3FP16Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001582
1583v17.02 Sources preview
1584 - New OpenCL kernels / functions:
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001585 - CLActivationLayerKernel / @ref CLActivationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001586 - CLChannelCombineKernel / CLChannelCombine
1587 - CLDerivativeKernel / CLChannelExtract
1588 - CLFastCornersKernel / CLFastCorners
1589 - CLMeanStdDevKernel / CLMeanStdDev
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001590 - New Arm® Neon™ kernels / functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001591 - HOG / SVM: NEHOGOrientationBinningKernel, NEHOGBlockNormalizationKernel, NEHOGDetectorKernel, NEHOGNonMaximaSuppressionKernel / NEHOGDescriptor, NEHOGDetector, NEHOGGradient, NEHOGMultiDetection
1592 - NENonLinearFilterKernel / NENonLinearFilter
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001593 - Introduced a CLScheduler to manage the default context and command queue used by the runtime library and create synchronisation events.
1594 - Switched all the kernels / functions to use tensors instead of images.
1595 - Updated documentation to include instructions to build the library from sources.
1596
1597v16.12 Binary preview release
1598 - Original release
1599
Sheri Zhangd813bab2021-04-30 16:53:41 +01001600 */
Ramy Elgammal0d274b72022-08-05 13:14:57 +01001601} // namespace arm_compute