blob: e3235458d10d3e67eeaf2385d45fddc6da5541bc [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
ramy.elgammal@arm.comdb8b2f32023-06-28 21:31:03 +010043v23.08 Public major release
44 - Deprecate the legacy 'libarm_compute_core' library. This library is an artifact of Compute Library's legacy library architecture and no longer serves any purpose.
45 Users must no longer link their applications to this library and instead link only to the main `libarm_compute` library for core functionality.
46 - Various optimizations and bug fixes.
47 - New features
48 - Add new OpenCL™ kernels:
49 - @ref opencl::kernels::ClMatMulNativeMMULKernel support for FP32 and FP16, with batch support
50
51v23.05.1 Public patch release
52 - Enable CMake and Bazel option to build multi_isa without FP16 support.
53 - Fix compilation error in NEReorderLayer (aarch64 only).
54 - Disable invalid (false-negative) validation test with CPU scale layer on FP16.
55 - Various bug fixes
56
SiCong Li8893e452023-03-23 12:06:45 +000057v23.05 Public major release
Omar Al Khatibc20e7a92023-05-10 11:45:20 +010058 - New features:
59 - Add new Arm® Neon™ kernels / functions:
60 - @ref NEMatMul for QASYMM8, QASYMM8_SIGNED, FP32 and FP16, with batch support.
61 - NEReorderLayer (aarch64 only)
62 - Add new OpenCL™ kernels / functions:
63 - @ref CLMatMul support for QASYMM8, QASYMM8_SIGNED, FP32 and FP16, with batch support.
64 - Add support for the multiple dimensions in the indices parameter for both the Arm® Neon™ and OpenCL™ implementations of the Gather Layer.
65 - Add support for dynamic weights in @ref CLFullyConnectedLayer and @ref NEFullyConnectedLayer for all data types.
66 - Add support for cropping in the Arm® Neon™ and OpenCL™: implementations of the BatchToSpace Layer for all data types.
67 - Add support for quantized data types for the ElementwiseUnary Operators for Arm® Neon™.
68 - Implement RSQRT for quantized data types on OpenCL™.
69 - Add FP16 depthwise convolution kernels for SME2.
70 - Performance optimizations:
71 - Improve CLTuner exhaustive mode tuning time.
72 - Deprecate dynamic block shape in @ref NEBatchToSpaceLayer and @ref CLBatchToSpaceLayer.
73 - Various optimizations and bug fixes.
SiCong Li8893e452023-03-23 12:06:45 +000074
Jakub Sujak22e76132023-03-13 17:27:51 +000075v23.02.1 Public patch release
76 - Allow mismatching data layouts between the source tensor and weights for \link cpu::CpuGemmDirectConv2d CpuGemmDirectConv2d \endlink with fixed format kernels.
77 - Fixes for experimental CPU only Bazel and CMake builds.
78
SiCong Li90e57202023-02-01 14:39:41 +000079v23.02 Public major release
Jakub Sujak06db85e2023-02-06 17:42:47 +000080 - New features:
81 - Rework the experimental dynamic fusion interface by identifying auxiliary and intermediate tensors, and specifying an explicit output operator.
82 - Add the following operators to the experimental dynamic fusion API:
83 - GpuAdd, GpuCast, GpuClamp, GpuDepthwiseConv2d, GpuMul, GpuOutput, GpuPool2d, GpuReshape, GpuResize, GpuSoftmax, GpuSub.
84 - Add SME/SME2 kernels for GeMM, Winograd convolution, Depthwise convolution and Pooling.
Jakub Sujak9eefd4b2023-02-10 14:36:48 +000085 - Add new CPU operator AddMulAdd for float and quantized types.
Jakub Sujak06db85e2023-02-06 17:42:47 +000086 - Add new flag @ref ITensorInfo::lock_paddings() to tensors to prevent extending tensor paddings.
Jakub Sujak06db85e2023-02-06 17:42:47 +000087 - Add experimental support for CPU only Bazel and CMake builds.
88 - Performance optimizations:
89 - Optimize CPU base-e exponential functions for FP32.
90 - Optimize CPU StridedSlice by copying first dimension elements in bulk where possible.
91 - Optimize CPU quantized Subtraction by reusing the quantized Addition kernel.
92 - Optimize CPU ReduceMean by removing quantization steps and performing the operation in integer domain.
93 - 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 +000094 - Update the heuristic for CLDepthwiseConvolutionNative kernel.
95 - Add new optimized OpenCL kernel to compute indirect convolution:
96 - \link opencl::kernels::ClIndirectConv2dKernel ClIndirectConv2dKernel \endlink
97 - Add new optimized OpenCL kernel to compute transposed convolution:
98 - \link opencl::kernels::ClTransposedConvolutionKernel ClTransposedConvolutionKernel \endlink
SiCong Li90e57202023-02-01 14:39:41 +000099 - Update recommended/minimum NDK version to r20b.
Jakub Sujak06db85e2023-02-06 17:42:47 +0000100 - Various optimizations and bug fixes.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101
Viet-Hoa Dob1f82882022-11-11 11:29:50 +0000102v22.11 Public major release
103 - New features:
104 - Add new experimental dynamic fusion API.
Viet-Hoa Do293ab602022-11-15 10:51:26 +0000105 - Add CPU batch matrix multiplication with adj_x = false and adj_y = false for FP32.
Viet-Hoa Dob1f82882022-11-11 11:29:50 +0000106 - Add CPU MeanStdDevNorm for QASYMM8.
107 - Add CPU and GPU GELU activation function for FP32 and FP16.
108 - Add CPU swish activation function for FP32 and FP16.
109 - Performance optimizations:
110 - Optimize CPU bilinear scale for FP32, FP16, QASYMM8, QASYMM8_SIGNED, U8 and S8.
111 - Optimize CPU activation functions using LUT-based implementation:
112 - Sigmoid function for QASYMM8 and QASYMM8_SIGNED.
113 - Hard swish function for QASYMM8_SIGNED.
114 - Optimize CPU addition for QASYMM8 and QASYMM8_SIGNED using fixed-point arithmetic.
115 - Optimize CPU multiplication, subtraction and activation layers by considering tensors as 1D.
116 - Optimize GPU depthwise convolution kernel and heuristic.
117 - Optimize GPU Conv2d heuristic.
118 - Optimize CPU MeanStdDevNorm for FP16.
119 - Optimize CPU tanh activation function for FP16 using rational approximation.
120 - Improve GPU GeMMLowp start-up time.
121 - Various optimizations and bug fixes.
122
SiCong Life1b1f62022-05-19 18:58:31 +0100123v22.08 Public major release
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100124 - Various bug fixes.
125 - Disable unsafe FP optimizations causing accuracy issues in:
126 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
127 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv3dKernel \endlink
128 - @ref CLDepthwiseConvolutionLayerNativeKernel
129 - Add Dynamic Fusion of Elementwise Operators: Div, Floor, Add.
130 - Optimize the gemm_reshaped_rhs_nly_nt OpenCL kernel using the arm_matrix_multiply extension available for Arm® Mali™-G715 and Arm® Mali™-G615.
131 - Add support for the arm_matrix_multiply extension in the gemmlowp_mm_reshaped_only_rhs_t OpenCL kernel.
132 - Expand GPUTarget list with missing Mali™ GPUs product names: G57, G68, G78AE, G610, G510, G310.
133 - Extend the direct convolution 2d interface to configure the block size.
134 - Update ClConv2D heuristic to use direct convolution.
135 - Use official Khronos® OpenCL extensions:
136 - Add cl_khr_integer_dot_product extension support.
137 - Add support of OpenCL 3.0 non-uniform workgroup.
138 - Cpu performance optimizations:
139 - Add LUT-based implementation of Hard Swish and Leaky ReLU activation function for aarch64 build.
140 - Optimize Add layer by considering the input tensors as 1D array.
141 - Add fixed-format BF16, FP16 and FP32 Neon™ GEMM kernels to support variable weights.
142 - 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 +0000143 - Add experimental support for native builds for Windows® on Arm™.
Ramy Elgammal966218d2022-08-11 16:23:22 +0100144 - 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 +0100145 - Build flag change: toolchain_prefix, compiler_prefix:
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100146 - Use empty string "" to suppress any prefixes.
147 - Use "auto" to use default (auto) prefixes chosen by the build script. This is the default behavior when unspecified.
148 - Any other string will be used as custom prefixes to the compiler and the rest of toolchain tools.
149 - The default behaviour when prefix is unspecified does not change, but its signifier has been changed from empty string "" to "auto".
150 - armv7a with Android build will no longer be tested or maintained.
SiCong Life1b1f62022-05-19 18:58:31 +0100151
Adnan AlSinan2921e5b2022-05-16 14:30:41 +0100152v22.05 Public major release
153 - Various bug fixes.
154 - Various optimizations.
155 - Add support for NDK r23b.
156 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
157 - New Arm® Neon™ kernels / functions :
158 - \link opencl::kernels::ClPool3dKernel ClPool3dKernel \endlink
159 - New OpenCL kernels / functions :
160 - \link cpu::kernels::CpuPool3dKernel CpuPool3dKernel \endlink
161 - Improve the start-up times for the following OpenCL kernels:
162 - \link opencl::kernels::ClWinogradInputTransformKernel ClWinogradInputTransformKernel \endlink
163 - \link opencl::kernels::ClWinogradOutputTransformKernel ClWinogradOutputTransformKernel \endlink
164 - \link opencl::kernels::ClWinogradFilterTransformKernel ClWinogradFilterTransformKernel \endlink
165 - \link opencl::kernels::ClHeightConcatenateKernel ClHeightConcatenateKernel \endlink
166 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
167 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
168 - \link cpu::kernels::CpuDepthwiseConv2dNativeKernel CpuDepthwiseConv2dNativeKernel \endlink
169 - \link cpu::kernels::CpuGemmMatrixAdditionKernel CpuGemmMatrixAdditionKernel \endlink
170 - \link cpu::kernels::CpuGemmMatrixMultiplyKernel CpuGemmMatrixMultiplyKernel \endlink
171 - @ref NEFuseBatchNormalizationKernel
172 - @ref NEL2NormalizeLayerKernel
173
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000174v22.02 Public major release
175 - Various bug fixes.
176 - Various optimizations.
177 - Update A510 arm_gemm cpu Kernels.
178 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
179 - Improve the start-up time for the following OpenCL kernels:
180 - @ref CLScale
181 - @ref CLGEMM
182 - @ref CLDepthwiseConvolutionLayer
183 - \link opencl::kernels::ClIm2ColKernel ClIm2ColKernel \endlink
184 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
185 - Remove functions:
186 - CLRemap
187 - NERemap
188 - Remove padding from OpenCL kernels:
189 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
190 - Remove padding from Cpu kernels:
191 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
192 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
193 - \link cpu::kernels::CpuActivationKernel CpuActivationKernel \endlink
194 - \link cpu::kernels::CpuAddKernel CpuAddKernel \endlink
195 - \link cpu::kernels::CpuElementwiseKernel CpuElementwiseKernel \endlink
196 - \link cpu::CpuSoftmaxGeneric CpuSoftmaxKernel \endlink
197 - @ref NEBoundingBoxTransformKernel
198 - @ref NECropKernel
199 - @ref NEComputeAllAnchorsKernel
200 - @ref NEInstanceNormalizationLayerKernel
Adnan AlSinanbb8b2352022-02-14 14:30:38 +0000201 - NEMaxUnpoolingLayerKernel
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000202 - @ref NEMeanStdDevNormalizationKernel
203 - @ref NERangeKernel
204 - @ref NEROIAlignLayerKernel
205 - @ref NESelectKernel
206
Sheri Zhang5dda2172021-10-15 19:54:17 +0100207v21.11 Public major release
208 - Various bug fixes.
Gunes Bayir08773702021-11-05 12:34:34 +0000209 - Various optimizations:
210 - 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 +0000211 - Improve performance of Softmax on GPU for Uint8/Int8
Sheri Zhang5dda2172021-10-15 19:54:17 +0100212 - New OpenCL kernels / functions:
213 - @ref CLConv3D
214 - New Arm® Neon™ kernels / functions:
215 - @ref NEConv3D
Gunes Bayir08773702021-11-05 12:34:34 +0000216 - Support configurable build by a selected subset of operator list
217 - Support MobileBert on Neon™ backend
218 - Improve operator/function logging
219 - Remove padding from OpenCL kernels:
220 - ClPool2dKernel
221 - ClScaleKernel
222 - ClGemmMatrixMultiplyReshapedKernel
223 - Remove padding from Cpu kernels:
224 - CpuPool2dKernel
225 - Remove Y padding from OpenCL kernels:
226 - ClGemmMatrixMultiplyKernel
227 - ClGemmReshapedRHSMatrixKernel
228 - Remove legacy GeMM kernels in gemm_v1.cl
Sheri Zhang5dda2172021-10-15 19:54:17 +0100229
Freddie Liardet77014ff2021-08-05 15:50:31 +0100230v21.08 Public major release
231 - Various bug fixes.
232 - Various optimizations:
233 - Improve LWS (Local-Workgroup-Size) heuristic in OpenCL for GeMM, Direct Convolution and Winograd Transformations when OpenCL tuner is not used
234 - Improve QASYMM8/QSYMM8 performance on OpenCL for various Arm® Mali™ GPU architectures
235 - Add dynamic weights support in Fully connected layer (CPU/GPU)
236 - Various performance optimizations for floating-point data types (CPU/GPU)
237 - Add a reduced core library build arm_compute_core_v2
238 - Expose Operator API
239 - Support fat binary build for arm8.2-a via fat_binary build flag
240 - Add CPU discovery capabilities
241 - Add data type f16 support for:
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000242 - CLRemapKernel
Freddie Liardet77014ff2021-08-05 15:50:31 +0100243 - Port the following functions to stateless API:
244 - @ref CLConvolutionLayer
245 - @ref CLFlattenLayer
246 - @ref CLFullyConnectedLayer
247 - @ref CLGEMM
248 - @ref CLGEMMConvolutionLayer
249 - @ref CLGEMMLowpMatrixMultiplyCore
250 - @ref CLWinogradConvolutionLayer
251 - @ref NEConvolutionLayer
252 - @ref NEFlattenLayer
253 - @ref NEFullyConnectedLayer
254 - @ref NEGEMM
255 - @ref NEGEMMConv2d
256 - @ref NEGEMMConvolutionLayer
257 - @ref NEGEMMLowpMatrixMultiplyCore
258 - @ref NEWinogradConvolutionLayer
259 - Remove the following functions:
260 - CLWinogradInputTransform
261 - Remove CLCoreRuntimeContext
262 - Remove ICPPSimpleKernel
263 - Rename file arm_compute/runtime/CL/functions/CLElementWiseUnaryLayer.h to arm_compute/runtime/CL/functions/CLElementwiseUnaryLayer.h
264
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000265v21.05 Public major release
Sheri Zhangc2bed952021-05-06 12:12:38 +0100266 - Various bug fixes.
267 - Various optimisations.
268 - Various documentation updates:
Jakub Sujakee301b32021-06-04 09:46:08 +0100269 - Add supported operators and corresponding Android NNAPI operators.
270 - Documentation reorg into user guide and contributor guide.
Sheri Zhangc2bed952021-05-06 12:12:38 +0100271 - Add support for a global allocator for OpenCL tensors
272 - Add experimental support for [CLVK](https://github.com/kpet/clvk).
273 - Add data type S32 support for:
274 - @ref opencl::kernels::ClArithmeticKernel
275 - Add data type QASYMM8 support for:
276 - @ref CLROIPoolingLayer
277 - @ref CLROIPoolingLayerKernel
278 - @ref NEROIPoolingLayer
279 - @ref NEROIPoolingLayerKernel
280 - Add per-channel quantization support for:
281 - @ref CLDeconvolutionLayer
282 - @ref CLDirectDeconvolutionLayer
283 - @ref NEConvolutionLayer
284 - @ref NEDeconvolutionLayer
285 - Remove padding from OpenCL kernels:
286 - @ref CLL2NormalizeLayerKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100287 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Sheri Zhangc2bed952021-05-06 12:12:38 +0100288 - @ref CLNormalizationLayerKernel
289 - @ref CLNormalizePlanarYUVLayerKernel
290 - @ref opencl::kernels::ClMulKernel
291 - @ref CLReductionOperationKernel
292 - @ref CLROIPoolingLayerKernel
293 - Remove computer vision support from Arm® Neon™ backend
294 - Remove the following functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000295 - NEAbsoluteDifference
296 - NEAccumulate
297 - NEBox3x3
298 - NECannyEdge
299 - NEChannelCombine
300 - NEChannelExtract
301 - NEColorConvert
Michalis Spyrou473cb012021-02-23 11:48:12 +0000302 - NEConvolution
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000303 - NEDerivative
304 - NEDilate
305 - NEEqualizeHistogram
306 - NEErode
307 - NEFastCorners
308 - NEGaussian3x3
309 - NEGaussian5x5
310 - NEGaussianPyramid
311 - NEHOGDescriptor
312 - NEHOGDetector
313 - NEHOGGradient
314 - NEHOGMultiDetection
315 - NEHarrisCorners
316 - NEHistogram
317 - NEIntegralImage
318 - NELaplacianPyramid
319 - NELaplacianReconstruct
320 - NEMagnitude
321 - NEMeanStdDev
322 - NEMedian3x3
323 - NEMinMaxLocation
324 - NENonLinearFilter
325 - NEOpticalFlow
326 - NEPhase
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000327 - NEScharr3x3
328 - NESobel3x3
329 - NESobel5x5
330 - NESobel7x7
331 - NETableLookup
332 - NEThreshold
333 - NEWarpAffine
Michalis Spyrou473cb012021-02-23 11:48:12 +0000334 - NEWarpPerspectiveKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000335 - Remove all GLES kernels / functions / tests / examples
Sheri Zhangc2bed952021-05-06 12:12:38 +0100336 - Remove computer vision support from CL backend
337 - Remove the following functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000338 - CLAbsoluteDifference
339 - CLAccumulate
340 - CLBox3x3
341 - CLCannyEdge
342 - CLChannelCombine
343 - CLChannelExtract
344 - CLColorConvert
345 - CLConvolution
346 - CLDerivative
347 - CLDilate
348 - CLEqualizeHistogram
349 - CLErode
350 - CLFastCorners
351 - CLGaussian3x3
352 - CLGaussian5x5
353 - CLGaussianPyramid
354 - CLHOGDescriptor
355 - CLHOGDetector
356 - CLHOGGradient
357 - CLHOGMultiDetection
358 - CLHarrisCorners
359 - CLHistogram
360 - CLIntegralImage
361 - CLLaplacianPyramid
362 - CLLaplacianReconstruct
363 - CLMagnitude
364 - CLMeanStdDev
365 - CLMedian3x3
366 - CLMinMaxLocation
367 - CLNonLinearFilter
368 - CLOpticalFlow
369 - CLPhase
370 - CLScharr3x3
371 - CLSobel3x3
372 - CLSobel5x5
373 - CLSobel7x7
374 - CLTableLookup
375 - CLThreshold
376 - CLWarpAffine
377 - CLWarpPerspective
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100378
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000379v21.02 Public major release
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000380 - Various bug fixes.
381 - Various optimisations.
Georgios Pinitas45514032020-12-30 00:03:09 +0000382 - Upgrade C++ standard to C++14
383 - Add macOS support
Giorgio Arena1055dc12021-02-19 09:53:06 +0000384 - Add Armv8-R AArch64 architecture support
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000385 - Add SVE/SVE2 support for:
Manuel Bottini10b38262021-02-19 18:16:44 +0000386 - NEScaleKernel
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000387 - @ref NEActivationLayer
388 - @ref NEArithmeticAddition
389 - @ref NEBatchNormalizationLayerKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000390 - @ref cpu::kernels::CpuLogits1DSoftmaxKernel
391 - @ref cpu::kernels::CpuLogits1DMaxKernel
392 - @ref cpu::kernels::CpuElementwiseUnaryKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000393 - Remove padding from OpenCL kernels:
Sheri Zhang1efed922021-03-10 22:43:38 +0000394 - CLDirectConvolutionLayerKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000395 - @ref CLArgMinMaxLayerKernel
396 - @ref CLPadLayerKernel
397 - @ref CLROIAlignLayerKernel
398 - @ref CLRangeKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000399 - CLScaleKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000400 - @ref CLSelectKernel
401 - @ref CLBitwiseKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000402 - @ref opencl::kernels::ClFloorKernel
Teresa Charlin27886092021-02-25 20:15:01 +0000403 - CLTransposeKernel
Giorgio Arena5b50f422021-02-17 11:43:05 +0000404 - Deprecate functions in CLTuner:
405 - add_lws_to_table
406 - import_lws_table
407 - lws_table
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000408 - Remove functions:
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000409 - NELocallyConnectedLayer / CLLocallyConnectedLayer
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000410 - NEIm2Col
411 - NECol2Im
412 - NEGEMMInterleave4x4
413 - NEGEMMTranspose1xW
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +0000414 - NEComputeAllAnchors / CLComputeAllAnchors
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000415 - NEGEMMAssemblyDispatch
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000416 - NEUpsampleLayer / CLUpsampleLayer
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000417 - Remove kernels:
Georgios Pinitasd308df32020-12-01 16:56:36 +0000418 - NEGEMMMatrixVectorMultiplyKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000419 - NELocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedMatrixMultiplyKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000420 - NEUpsampleLayerKernel / CLUpsampleLayerKernel
Gian Marco Iodicef5aad512021-02-08 17:34:40 +0000421 - Extend OpenCL tuner with workgroup batch size support
422 - 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 +0000423 - Add functionality to load the OpenCL GEMM heuristics at runtime
424 - The GEMM heuristic file (MLGO) can be used to update the default GEMM heuristics available for OpenCL
Giorgio Arenacd7d1782021-02-22 14:58:37 +0000425 - 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 +0100426 - Note: data-type decoupling is in progress and experimental. Warning of unused symbols might be raised
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000427
SiCong Li96209c72020-08-21 12:28:30 +0100428v20.11 Public major release
morgolock70b1eb82020-11-24 13:54:19 +0000429 - Various bug fixes.
430 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000431 - 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 +0000432 This is planned to be resolved in 21.02 release.
morgolock70b1eb82020-11-24 13:54:19 +0000433 - Added new data type QASYMM8_SIGNED support for @ref NEROIAlignLayer.
SiCong Li903f8cc2020-08-27 10:17:10 +0100434 - Added new data type S32 support for:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000435 - NEArithmeticSubtraction
436 - NEArithmeticSubtractionKernel
SiCong Libb88f892020-08-28 11:18:47 +0100437 - @ref NEPixelWiseMultiplication
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000438 - NEPixelWiseMultiplicationKernel
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000439 - NEElementwiseDivision
440 - NEDivisionOperationKernel
SiCong Li96209c72020-08-21 12:28:30 +0100441 - Interface change
442 - Properly support softmax axis to have the same meaning as other major frameworks. That is, axis now defines the dimension
443 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.
444 The supported value range of axis is [-rank, rank).
445 This change applies to the following functions:
446 - @ref NESoftmaxLayer
447 - @ref NELogSoftmaxLayer
448 - @ref CLSoftmaxLayer
449 - @ref CLLogSoftmaxLayer
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000450 - GCSoftmaxLayer
Sheri Zhang824061d2020-10-26 15:46:37 +0000451 - New OpenCL kernels / functions:
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100452 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
morgolock0e728492020-11-20 11:03:33 +0000453 - @ref CLLogicalNot
454 - @ref CLLogicalAnd
455 - @ref CLLogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000456 - New Arm® Neon™ kernels / functions:
morgolock0e728492020-11-20 11:03:33 +0000457 - @ref NELogicalNot
458 - @ref NELogicalAnd
459 - @ref NELogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000460 - Removed padding from Arm® Neon™ kernels:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000461 - NEComplexPixelWiseMultiplicationKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000462 - NENonMaximaSuppression3x3Kernel
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000463 - NERemapKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100464 - NEGEMMInterleave4x4Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100465 - NEDirectConvolutionLayerKernel
Manuel Bottini10b38262021-02-19 18:16:44 +0000466 - NEScaleKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000467 - NELocallyConnectedMatrixMultiplyKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100468 - NEGEMMLowpOffsetContributionKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100469 - NEGEMMTranspose1xWKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +0000470 - NEPoolingLayerKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000471 - NEConvolutionKernel
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100472 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100473 - NEGEMMLowpMatrixMultiplyKernel
Michele Di Giorgio53832b22021-06-21 14:45:44 +0100474 - NEGEMMMatrixMultiplyKernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100475 - NEDirectConvolutionLayerOutputStageKernel
Sheri Zhanged367132020-10-08 15:46:16 +0100476 - @ref NEReductionOperationKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100477 - NEGEMMLowpMatrixAReductionKernel
478 - NEGEMMLowpMatrixBReductionKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000479 - Removed padding from OpenCL kernels:
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000480 - CLBatchConcatenateLayerKernel
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000481 - CLElementwiseOperationKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000482 - @ref CLBatchNormalizationLayerKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000483 - CLPoolingLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100484 - CLWinogradInputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100485 - CLGEMMLowpMatrixMultiplyNativeKernel
486 - CLGEMMLowpMatrixAReductionKernel
487 - CLGEMMLowpMatrixBReductionKernel
488 - CLGEMMLowpOffsetContributionOutputStageKernel
489 - CLGEMMLowpOffsetContributionKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100490 - CLWinogradOutputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100491 - CLGEMMLowpMatrixMultiplyReshapedKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000492 - @ref CLFuseBatchNormalizationKernel
493 - @ref CLDepthwiseConvolutionLayerNativeKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100494 - CLDepthConvertLayerKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000495 - CLCopyKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100496 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000497 - CLActivationLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100498 - CLWinogradFilterTransformKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000499 - CLWidthConcatenateLayerKernel
500 - CLWidthConcatenate4TensorsKernel
501 - CLWidthConcatenate2TensorsKernel
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000502 - CLLogits1DMaxShiftExpSumKernel
503 - CLLogits1DNormKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000504 - CLHeightConcatenateLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100505 - CLGEMMMatrixMultiplyKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100506 - CLGEMMLowpQuantizeDownInt32ScaleKernel
507 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
508 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000509 - CLDepthConcatenateLayerKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100510 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000511 - Removed OpenCL kernels / functions:
512 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
513 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel
514 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel
morgolock00c76012020-11-06 10:40:12 +0000515 - 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 +0100516 - CLLocallyConnectedLayer
517 - CLLocallyConnectedMatrixMultiplyKernel
morgolock00c76012020-11-06 10:40:12 +0000518 - CLAbsoluteDifference
519 - CLAbsoluteDifferenceKernel
520 - CLAccumulate
521 - CLAccumulateKernel
522 - CLAccumulateSquared
523 - CLAccumulateSquaredKernel
524 - CLAccumulateWeighted
525 - CLAccumulateWeightedKernel
526 - CLAccumulateWeightedFP16Kernel
527 - CLBox3x3
528 - CLBox3x3Kernel
529 - CLBox3x3FP16Kernel
530 - CLCannyEdge
531 - CLChannelCombine
532 - CLChannelCombineKernel
533 - CLChannelExtract
534 - CLChannelExtractKernel
535 - CLColorConvert
536 - CLColorConvertKernel
537 - CLConvolution3x3
538 - CLConvolutionRectangle
539 - CLConvolutionRectangleKernel
540 - CLConvolutionSquare
541 - CLConvolutionKernel
542 - CLDerivative
543 - CLDerivativeKernel
544 - CLDilate
545 - CLDilateKernel
546 - CLEqualizeHistogram
547 - CLErode
548 - CLErodeKernel
549 - CLFastCorners
550 - CLFastCornersKernel
551 - CLGaussian3x3
552 - CLGaussian3x3Kernel
553 - CLGaussian5x5
554 - CLGaussian5x5HorKernel
555 - CLGaussian5x5VertKernel
556 - CLGaussianPyramid
557 - CLGaussianPyramidHalf
558 - CLGaussianPyramidOrb
559 - CLHarrisCorners
560 - CLHarrisScoreKernel
561 - CLHarrisScoreFP16Kernel
562 - CLHistogram
563 - CLHistogramKernel
564 - CLHOGOrientationBinningKernel
565 - CLHOGBlockNormalizationKernel
566 - CLHOGDetectorKernel
567 - CLHOGNonMaximaSuppressionKernel
568 - CLHOGDescriptor
569 - CLHOGDetector
570 - CLHOGGradient
571 - CLHOGMultiDetection
572 - CLHOGOrientationBinningKernel
573 - CLHOGBlockNormalizationKernel
574 - CLHOGDetectorKernel
575 - CLIntegralImage
576 - CLIntegralImageKernel
577 - CLLaplacianReconstruct
578 - CLLaplacianPyramid
579 - CLMagnitude
580 - CLMagnitudePhaseKernel
581 - CLMedian3x3
582 - CLMedian3x3Kernel
583 - CLMinMaxLocation
584 - CLMinMaxLocationKernel
585 - CLNonLinearFilter
586 - CLNonLinearFilterKernel
587 - CLNonMaximaSuppression3x3
588 - CLNonMaximaSuppression3x3FP16Kernel
589 - CLNonMaximaSuppression3x3Kernel
590 - CLOpticalFlow
591 - CLPhase
592 - CLRemap
593 - CLRemapKernel
594 - CLScharr3x3
595 - CLScharr3x3Kernel
596 - CLSobel3x3
597 - CLSobel3x3Kernel
598 - CLSobel5x5
599 - CLSobel5x5HorKernel
600 - CLSobel5x5VertKernel
601 - CLSobel7x7
602 - CLSobel7x7HorKernel
603 - CLSobel7x7VertKernel
604 - CLThreshold
605 - CLThresholdKernel
606 - CLWarpAffine
607 - CLWarpAffineKernel
608 - CLWarpPerspective
609 - CLWarpPerspectiveKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000610 - 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 +0100611 - NELocallyConnectedLayer
612 - NELocallyConnectedMatrixMultiplyKernel
morgolock0c862652020-11-06 08:59:45 +0000613 - NEAbsoluteDifference
614 - NEAbsoluteDifferenceKernel
615 - NEAccumulate
616 - NEAccumulateKernel
617 - NEAccumulateSquared
618 - NEAccumulateSquaredKernel
619 - NEAccumulateWeighted
620 - NEAccumulateWeightedKernel
621 - NEAccumulateWeightedFP16Kernel
622 - NEBox3x3
623 - NEBox3x3Kernel
624 - NEBox3x3FP16Kernel
625 - NECannyEdge
626 - NEChannelCombine
627 - NEChannelCombineKernel
628 - NEChannelExtract
629 - NEChannelExtractKernel
630 - NEColorConvert
631 - NEColorConvertKernel
632 - NEConvolution3x3
633 - NEConvolutionRectangle
634 - NEConvolutionRectangleKernel
635 - NEConvolutionSquare
636 - NEConvolutionKernel
637 - NEDerivative
638 - NEDerivativeKernel
639 - NEDilate
640 - NEDilateKernel
641 - NEEqualizeHistogram
642 - NEErode
643 - NEErodeKernel
644 - NEFastCorners
645 - NEFastCornersKernel
646 - NEGaussian3x3
647 - NEGaussian3x3Kernel
648 - NEGaussian5x5
649 - NEGaussian5x5HorKernel
650 - NEGaussian5x5VertKernel
651 - NEGaussianPyramid
652 - NEGaussianPyramidHalf
653 - NEGaussianPyramidOrb
654 - NEHarrisCorners
655 - NEHarrisScoreKernel
656 - NEHarrisScoreFP16Kernel
657 - NEHistogram
658 - NEHistogramKernel
659 - NEHOGOrientationBinningKernel
660 - NEHOGBlockNormalizationKernel
661 - NEHOGDetectorKernel
662 - NEHOGNonMaximaSuppressionKernel
663 - NEHOGDescriptor
664 - NEHOGDetector
665 - NEHOGGradient
666 - NEHOGMultiDetection
667 - NEHOGOrientationBinningKernel
668 - NEHOGBlockNormalizationKernel
669 - NEHOGDetectorKernel
670 - NEIntegralImage
671 - NEIntegralImageKernel
672 - NELaplacianReconstruct
673 - NELaplacianPyramid
674 - NEMagnitude
675 - NEMagnitudePhaseKernel
676 - NEMedian3x3
677 - NEMedian3x3Kernel
678 - NEMinMaxLocation
679 - NEMinMaxLocationKernel
680 - NENonLinearFilter
681 - NENonLinearFilterKernel
682 - NENonMaximaSuppression3x3
683 - NENonMaximaSuppression3x3FP16Kernel
684 - NENonMaximaSuppression3x3Kernel
685 - NEOpticalFlow
686 - NEPhase
687 - NERemap
688 - NERemapKernel
689 - NEScharr3x3
690 - NEScharr3x3Kernel
691 - NESobel3x3
692 - NESobel3x3Kernel
693 - NESobel5x5
694 - NESobel5x5HorKernel
695 - NESobel5x5VertKernel
696 - NESobel7x7
697 - NESobel7x7HorKernel
698 - NESobel7x7VertKernel
699 - NEThreshold
700 - NEThresholdKernel
701 - NEWarpAffine
702 - NEWarpAffineKernel
703 - NEWarpPerspective
704 - NEWarpPerspectiveKernel
morgolockd6ee9ed2020-11-19 10:07:14 +0000705 - Deprecated GLES kernels / functions (If a kernel is used only by the function that is being deprecated, the kernel is deprecated together):
706 - GCAbsoluteDifference
707 - GCActivationLayer
708 - GCArithmeticAddition
709 - GCBatchNormalizationLayer
710 - GCConcatenateLayer
711 - GCConvolutionLayer
712 - GCDepthwiseConvolutionLayer
713 - GCDirectConvolutionLayer
714 - GCDropoutLayer
715 - GCFillBorder
716 - GCFullyConnectedLayer
717 - GCGEMM
718 - GCGEMMInterleave4x4
719 - GCGEMMTranspose1xW
720 - GCNormalizationLayer
721 - GCNormalizePlanarYUVLayer
722 - GCPixelWiseMultiplication
723 - GCPoolingLayer
724 - GCScale
725 - GCSoftmaxLayer
726 - GCTensorShift
727 - GCTranspose
728
SiCong Li96209c72020-08-21 12:28:30 +0100729
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100730v20.08 Public major release
731 - Various bug fixes.
732 - Various optimisations.
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100733 - Added new data type QASYMM8_SIGNED support for:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100734 - @ref CLArgMinMaxLayer
735 - @ref CLArgMinMaxLayerKernel
736 - Added new data type U8 support for:
737 - @ref NECropKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000738 - CLCropKernel
Jakub Sujakee301b32021-06-04 09:46:08 +0100739 - Added align_corner support for nearest neighbor interpolation in:
Manuel Bottini10b38262021-02-19 18:16:44 +0000740 - NEScaleKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000741 - CLScaleKernel
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100742 - New OpenCL kernels / functions:
743 - @ref CLMaxUnpoolingLayerKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000744 - New Arm® Neon™ kernels / functions:
Dana Zlotnik149203b2022-01-26 12:38:03 +0200745 - NEMaxUnpoolingLayerKernel
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100746 - New graph example:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100747 - graph_yolov3_output_detector
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100748 - GEMMTuner improvements:
749 - Added fp16 support
750 - Output json files for easier integration
751 - Enabled tuning for export_to_cl_image_rhs option for RHS tensors
752 - More robust script for running benchmarks
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100753 - Removed padding from:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000754 - NEPixelWiseMultiplicationKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000755 - NEHeightConcatenateLayerKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000756 - NEThresholdKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000757 - NEBatchConcatenateLayerKernel
Teresa Charlind1dc09c2021-03-04 15:24:45 +0000758 - NETransposeKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100759 - @ref NEBatchNormalizationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000760 - NEArithmeticSubtractionKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100761 - @ref NEBoundingBoxTransformKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +0000762 - NELogits1DMaxKernel
763 - NELogits1DSoftmaxKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100764 - @ref NEROIPoolingLayerKernel
765 - @ref NEROIAlignLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +0000766 - NEYOLOLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000767 - NEUpsampleLayerKernel
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000768 - NEFloorKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000769 - NEWidthConcatenateLayerKernel
770 - NEDepthConcatenateLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100771 - @ref NENormalizationLayerKernel
772 - @ref NEL2NormalizeLayerKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +0100773 - NEFillArrayKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100774 - NEDepthConvertLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100775 - @ref NERangeKernel
776 - @ref NEPriorBoxLayer
Sheri Zhanged367132020-10-08 15:46:16 +0100777 - Removed OpenCL kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100778 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
779 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000780 - Removed Arm® Neon™ kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100781 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
782 - NEGEMMMatrixAccumulateBiasesKernel
SiCong Lid004a7a2020-05-28 15:26:41 +0100783 - Deprecated functions / interfaces:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000784 - Non-descriptor based interfaces for NEThreshold, CLThreshold
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000785 - Non-descriptor based interfaces for @ref NEScale, @ref CLScale and GCScale
786 - In @ref NESoftmaxLayer, @ref NELogSoftmaxLayer, @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer :
787 The default "axis" value for @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer is changed from 1 to 0.
morgolock9c7fed82020-08-05 12:30:56 +0100788 Only axis 0 is supported.
789 The default "axis" value for @ref NESoftmaxLayer, @ref NELogSoftmaxLayer is changed from 1 to 0.
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100790 Only axis 0 is supported.
Sang-Hoon Parka0205b92020-07-07 09:36:09 +0100791 - The support for quantized data types has been removed from @ref CLLogSoftmaxLayer due to implementation complexity.
Manuel Bottinid844c082021-07-14 12:58:54 +0100792 - 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 +0100793 - This change allows to use @ref CLGEMMConvolutionLayer without extra padding for the input and output.
794 - Only the weights/bias of @ref CLGEMMConvolutionLayer could require padding for the computation.
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100795 - Only on Arm® Mali™ Midgard GPUs, @ref CLGEMMConvolutionLayer could require padding since CLGEMMMatrixMultiplyKernel is called and currently requires padding.
796 - 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 +0100797 - 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 +0100798 - The padding requirement for the OpenCL image object is considered into the CLGEMMReshapeRHSMatrixKernel.
799 - The reshaped RHS matrix stores the weights when GEMM is used to accelerate CLGEMMConvolutionLayer.
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100800
Georgios Pinitasfd7780d2020-03-17 11:41:00 +0000801v20.05 Public major release
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000802 - Various bug fixes.
803 - Various optimisations.
Michele Di Giorgio36a551f2020-04-23 11:55:29 +0100804 - Updated recommended NDK version to r18b.
805 - Updated recommended gcc version to Linaro 6.3.1.
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000806 - Added Bfloat16 type support
807 - Added Bfloat16 support in:
Manuel Bottini29599d02021-07-06 15:01:35 +0100808 - NEWeightsReshapeKernel
809 - NEConvolutionLayerReshapeWeights
Manuel Bottini90028992021-06-30 18:29:18 +0100810 - NEIm2ColKernel
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000811 - NEIm2Col
Georgios Pinitas11d84152021-04-28 10:20:18 +0100812 - NEDepthConvertLayerKernel
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000813 - @ref NEDepthConvertLayer
814 - @ref NEGEMMConvolutionLayer
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000815 - NEGEMMAssemblyDispatch
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000816 - Added new data type QASYMM8_SIGNED support for:
817 - @ref CLDirectConvolutionLayer
818 - @ref CLDeconvolutionLayer
819 - @ref CLDirectDeconvolutionLayer
820 - @ref CLGEMMDeconvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100821 - CLGEMMLowpMatrixMultiplyReshapedKernel
822 - CLGEMMLowpQuantizeDownInt32ScaleKernel
823 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000824 - @ref CLReductionOperation
825 - @ref CLReduceMean
Sheri Zhang359c48e2020-04-30 22:53:39 +0100826 - @ref NEScale
Manuel Bottini10b38262021-02-19 18:16:44 +0000827 - NEScaleKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000828 - NEUpsampleLayer
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000829 - @ref NECast
830 - @ref NEReductionOperation
831 - @ref NEReduceMean
832 - @ref NEArgMinMaxLayer
833 - @ref NEDeconvolutionLayer
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100834 - NEGEMMLowpQuantizeDownInt32ScaleKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000835 - @ref CPPBoxWithNonMaximaSuppressionLimit
836 - @ref CPPDetectionPostProcessLayer
837 - @ref CPPPermuteKernel
838 - @ref CPPPermute
839 - @ref CPPTopKVKernel
840 - @ref CPPTopKV
Sheri Zhang359c48e2020-04-30 22:53:39 +0100841 - @ref CPPUpsample
842 - @ref CPPUpsampleKernel
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100843 - New OpenCL kernels / functions:
844 - @ref CLQLSTMLayer
845 - @ref CLQLSTMLayerNormalizationKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000846 - New Arm® Neon™ kernels / functions:
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100847 - @ref NEQLSTMLayer
848 - @ref NEQLSTMLayerNormalizationKernel
849 - Added HARD_SWISH support in:
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000850 - CLActivationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000851 - NEActivationLayerKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000852 - Deprecated OpenCL kernels / functions:
853 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
854 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000855 - Deprecated Arm® Neon™ kernels / functions:
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000856 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
857 - Removed CPP kernels / functions:
858 - CPPFlipWeightsKernel
Manuel Bottini387259a2020-05-21 17:14:36 +0100859 - Removed PoolingLayerInfo constructors without Data Layout.
860 - Removed CLDepthwiseConvolutionLayer3x3
861 - Removed NEDepthwiseConvolutionLayerOptimized
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000862 - Added support for Winograd 3x3,4x4 on Arm® Neon™ FP16:
Manuel Bottini075253a2020-05-22 12:57:18 +0100863 - @ref NEWinogradConvolutionLayer
Michalis Spyrou96f977e2021-07-01 12:20:56 +0100864 - CpuWinogradConv2dTransformInputKernel
865 - CpuWinogradConv2dTransformOutputKernel
866 - CpuWinogradConv2dTransformWeightsKernel
Manuel Bottini075253a2020-05-22 12:57:18 +0100867 - Added CLCompileContext
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000868 - Added Arm® Neon™ GEMM kernel with 2D window support
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000869
Michele Di Giorgio740872e2020-03-04 15:29:49 +0000870v20.02.1 Maintenance release
871 - Added Android-NN build script.
872
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000873v20.02 Public major release
874 - Various bug fixes.
875 - Various optimisations.
876 - Added new data type QASYMM8_SIGNED support for:
877 - @ref CLDepthwiseConvolutionLayer
Manuel Bottini387259a2020-05-21 17:14:36 +0100878 - CLDepthwiseConvolutionLayer3x3
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000879 - @ref CLGEMMConvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100880 - CLGEMMLowpMatrixMultiplyCore
881 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
882 - CLGEMMLowpMatrixMultiplyNativeKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000883 - @ref NEActivationLayer
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000884 - NEComparisonOperationKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000885 - @ref NEConvolutionLayer
886 - @ref NEDepthwiseConvolutionLayer
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100887 - NEDepthwiseConvolutionLayer3x3Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100888 - NEDirectConvolutionLayerOutputStageKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000889 - @ref NEElementwiseComparison
890 - @ref NEElementwiseMax
891 - @ref NEElementwiseMin
892 - @ref NEElementwiseSquaredDiff
893 - @ref NEFullyConnectedLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +0100894 - NEGEMMMatrixVectorMultiplyKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000895 - @ref NEPixelWiseMultiplication
896 - @ref NEPoolingLayer
897 - @ref NEPReluLayer
898 - Added support for QSYMM8_PER_CHANNEL in:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100899 - NEDepthwiseConvolutionLayer3x3Kernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000900 - Added support for split sizes in:
901 - @ref CLSplit
902 - @ref NESplit
903 - New OpenCL kernels / functions:
904 - @ref CLFill
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100905 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000906 - New Arm® Neon™ kernels / functions:
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000907 - @ref NEFill
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100908 - NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000909 - Deprecated Arm® Neon™ functions / interfaces:
Manuel Bottini387259a2020-05-21 17:14:36 +0100910 - CLDepthwiseConvolutionLayer3x3
911 - NEDepthwiseConvolutionLayerOptimized
912 - PoolingLayerInfo constructors without Data Layout.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000913 - Added support for quantization with multiplier greater than 1 on Arm® Neon™ and CL.
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000914 - Added support for quantized inputs of type QASYMM8_SIGNED and QASYMM8 to @ref CLQuantizationLayer.
915 - Added the ability to build bootcode for bare metal.
916 - Added support for generating synthetic QASYMM8 graphs.
917 - Added support for F16 datatype in VGG16.
918 - Removed pre-built binaries for GLES.
919
Michele Di Giorgiod374ff22020-01-21 10:03:20 +0000920v19.11.1 Public maintenance release
921 - Fix offset calculation in NEReductionOperationKernel.
922 - Fix data layout in NEScaleKernel for nhwc.
923 - Retain configuration step data layout to avoid side-effects.
924 - Perform sqrt in double domain for L2 pooling.
925 - Fix output shape calculation for Reduce Mean
926 - Restrict cases where optimized NEPadLayer runs.
927
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100928v19.11 Public major release
SiCong Lica1f98c2019-11-28 11:06:11 +0000929 - Various bug fixes.
930 - Various optimisations.
SiCong Li1f7f9882019-11-28 14:59:35 +0000931 - Updated recommended NDK version to r17c.
SiCong Lica1f98c2019-11-28 11:06:11 +0000932 - Deprecated OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100933 - CLDepthwiseConvolutionLayerReshapeWeightsGenericKernel
934 - CLDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000935 - CLDepthwiseSeparableConvolutionLayer
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100936 - CLDepthwiseVectorToTensorKernel
937 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000938 - Deprecated Arm® Neon™ kernels / functions:
Giorgio Arenad93e2632019-10-15 11:09:33 +0100939 - NEDepthwiseWeightsReshapeKernel
940 - NEDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000941 - NEDepthwiseSeparableConvolutionLayer
Giorgio Arenad93e2632019-10-15 11:09:33 +0100942 - NEDepthwiseVectorToTensorKernel
Manuel Bottini05069f02019-09-26 17:18:26 +0100943 - NEDepthwiseConvolutionLayer3x3
SiCong Lica1f98c2019-11-28 11:06:11 +0000944 - New OpenCL kernels / functions:
945 - @ref CLInstanceNormalizationLayerKernel / @ref CLInstanceNormalizationLayer
946 - @ref CLDepthwiseConvolutionLayerNativeKernel to replace the old generic depthwise convolution (see Deprecated
947 OpenCL kernels / functions)
948 - @ref CLLogSoftmaxLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000949 - New Arm® Neon™ kernels / functions:
SiCong Lica1f98c2019-11-28 11:06:11 +0000950 - @ref NEBoundingBoxTransformKernel / @ref NEBoundingBoxTransform
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +0000951 - @ref NEComputeAllAnchorsKernel / NEComputeAllAnchors
SiCong Lica1f98c2019-11-28 11:06:11 +0000952 - @ref NEDetectionPostProcessLayer
953 - @ref NEGenerateProposalsLayer
954 - @ref NEInstanceNormalizationLayerKernel / @ref NEInstanceNormalizationLayer
955 - @ref NELogSoftmaxLayer
956 - @ref NEROIAlignLayerKernel / @ref NEROIAlignLayer
957 - Added QASYMM8 support for:
958 - @ref CLGenerateProposalsLayer
959 - @ref CLROIAlignLayer
960 - @ref CPPBoxWithNonMaximaSuppressionLimit
961 - Added QASYMM16 support for:
962 - @ref CLBoundingBoxTransform
963 - Added FP16 support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100964 - CLGEMMMatrixMultiplyReshapedKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000965 - Added new data type QASYMM8_PER_CHANNEL support for:
Manuel Bottini9e73c932021-03-02 17:40:42 +0000966 - CLDequantizationLayer
SiCong Lica1f98c2019-11-28 11:06:11 +0000967 - @ref NEDequantizationLayer
968 - Added new data type QSYMM8_PER_CHANNEL support for:
969 - @ref CLConvolutionLayer
970 - @ref NEConvolutionLayer
971 - @ref CLDepthwiseConvolutionLayer
972 - @ref NEDepthwiseConvolutionLayer
973 - Added FP16 mixed-precision support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100974 - CLGEMMMatrixMultiplyReshapedKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000975 - CLPoolingLayerKernel
SiCong Lica1f98c2019-11-28 11:06:11 +0000976 - Added FP32 and FP16 ELU activation for:
977 - @ref CLActivationLayer
978 - @ref NEActivationLayer
979 - Added asymmetric padding support for:
980 - @ref CLDirectDeconvolutionLayer
981 - @ref CLGEMMDeconvolutionLayer
982 - @ref NEDeconvolutionLayer
983 - Added SYMMETRIC and REFLECT modes for @ref CLPadLayerKernel / @ref CLPadLayer.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000984 - Replaced the calls to NECopyKernel and NEMemsetKernel with @ref NEPadLayer in @ref NEGenerateProposalsLayer.
985 - Replaced the calls to CLCopyKernel and CLMemsetKernel with @ref CLPadLayer in @ref CLGenerateProposalsLayer.
SiCong Lica1f98c2019-11-28 11:06:11 +0000986 - Improved performance for CL Inception V3 - FP16.
987 - Improved accuracy for CL Inception V3 - FP16 by enabling FP32 accumulator (mixed-precision).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000988 - Improved Arm® Neon™ performance by enabling fusing batch normalization with convolution and depth-wise convolution layer.
989 - Improved Arm® Neon™ performance for MobileNet-SSD by improving the output detection performance.
SiCong Lica1f98c2019-11-28 11:06:11 +0000990 - Optimized @ref CLPadLayer.
991 - Optimized CL generic depthwise convolution layer by introducing @ref CLDepthwiseConvolutionLayerNativeKernel.
992 - Reduced memory consumption by implementing weights sharing.
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100993
Michele Di Giorgiod374ff22020-01-21 10:03:20 +0000994v19.08.1 Public maintenance release
995 - Fix offset calculation in NEReductionOperationKernel.
996 - Fix data layout in NEScaleKernel for nhwc.
997 - Retain configuration step data layout to avoid side-effects.
998 - Perform sqrt in double domain for L2 pooling.
999 - Fix output shape calculation for Reduce Mean
1000 - Fix broadcast CLPixelwiseMultiplication with 5D tensors
1001
Georgios Pinitas3d13af82019-06-04 13:04:16 +01001002v19.08 Public major release
1003 - Various bug fixes.
1004 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001005 - Deprecated Arm® Neon™ functions
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001006 - NEDepthConcatenateLayer
1007 - NEWidthConcatenateLayer
1008 - Deprecated OpenCL kernels / functions
1009 - CLDepthConcatenateLayer
1010 - CLGEMMInterleave4x4Kernel / CLGEMMInterleave4x4
1011 - CLGEMMTranspose1xWKernel / CLGEMMTranspose1xW
1012 - CLWidthConcatenateLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001013 - New Arm® Neon™ kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001014 - @ref NEAbsLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001015 - @ref NECast
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001016 - @ref NEElementwisePower
1017 - @ref NELogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001018 - @ref NELSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001019 - @ref NENegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001020 - @ref NEPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001021 - @ref NESinLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001022 - NEBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001023 - @ref NEDepthToSpaceLayerKernel / @ref NEDepthToSpaceLayer
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01001024 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottiniae58bdf2021-06-17 17:18:45 +01001025 - NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001026 - @ref NEMeanStdDevNormalizationKernel / @ref NEMeanStdDevNormalizationLayer
1027 - @ref NESpaceToDepthLayerKernel / @ref NESpaceToDepthLayer
1028 - New OpenCL kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001029 - @ref CLAbsLayer
1030 - @ref CLElementwisePower
1031 - @ref CLLogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001032 - @ref CLLSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001033 - @ref CLNegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001034 - @ref CLPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001035 - @ref CLSinLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001036 - CLBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001037 - @ref CLDepthToSpaceLayerKernel / @ref CLDepthToSpaceLayer
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001038 - CLGEMMLowpMatrixMultiplyNativeKernel
Michele Di Giorgioba14c922020-10-12 13:27:57 +01001039 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001040 - CLGEMMMatrixMultiplyNativeKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001041 - CLMeanStdDevNormalizationKernel /CLMeanStdDevNormalizationLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001042 - @ref CLSpaceToDepthLayerKernel / @ref CLSpaceToDepthLayer
1043 - New examples:
1044 - neon_opticalflow
1045 - cl_cache
1046 - neon_permute
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001047 - Added support for FP16 in @ref NEDeconvolutionLayer
1048 - Added support for FP16 in @ref CLDeconvolutionLayer
1049 - Added support for REDUCE_MIN and REDUCE_MAX in @ref ReductionOperation
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001050 - Enable the fusion of batch normalization with convolution and depthwise convolution layer for FP32 in the graph API (OpenCL only)
1051 - 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 +00001052 - Re-factored the depthwise convolution layer kernel on Arm® Neon™ for generic cases
Jakub Sujakee301b32021-06-04 09:46:08 +01001053 - Added an optimized depthwise convolution layer kernel for 5x5 filters (Neon™ only)
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001054 - Added support to enable OpenCL kernel cache. Added example showing how to load the prebuilt OpenCL kernels from a binary cache file
1055 - Altered @ref QuantizationInfo interface to support per-channel quantization.
Manuel Bottini387259a2020-05-21 17:14:36 +01001056 - The CLDepthwiseConvolutionLayer3x3 will be included by @ref CLDepthwiseConvolutionLayer to accommodate for future optimizations.
1057 - The NEDepthwiseConvolutionLayerOptimized will be included by @ref NEDepthwiseConvolutionLayer to accommodate for future optimizations.
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001058 - Removed inner_border_right and inner_border_top parameters from @ref CLDeconvolutionLayer interface
1059 - Removed inner_border_right and inner_border_top parameters from @ref NEDeconvolutionLayer interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001060 - 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 +01001061
Michalis Spyroua9c44722019-04-05 17:18:36 +01001062v19.05 Public major release
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001063 - Various bug fixes.
1064 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001065 - New Arm® Neon™ kernels / functions:
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001066 - @ref NEBatchToSpaceLayerKernel / @ref NEBatchToSpaceLayer
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001067 - NEComplexPixelWiseMultiplicationKernel / @ref NEComplexPixelWiseMultiplication
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001068 - @ref NECropKernel / @ref NECropResize
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01001069 - NEDepthwiseConvolutionAssemblyDispatch
Michalis Spyrouca82e622019-05-10 16:43:20 +01001070 - @ref NEFFTDigitReverseKernel
1071 - @ref NEFFTRadixStageKernel
1072 - @ref NEFFTScaleKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001073 - NEGEMMLowpOffsetContributionOutputStageKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001074 - NEHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001075 - @ref NESpaceToBatchLayerKernel / @ref NESpaceToBatchLayer
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001076 - @ref NEFFT1D
1077 - @ref NEFFT2D
1078 - @ref NEFFTConvolutionLayer
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001079 - New OpenCL kernels / functions:
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001080 - CLComplexPixelWiseMultiplicationKernel / @ref CLComplexPixelWiseMultiplication
Sheri Zhang7e20e292021-02-02 11:49:34 +00001081 - CLCropKernel / @ref CLCropResize
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001082 - @ref CLDeconvolutionReshapeOutputKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001083 - @ref CLFFTDigitReverseKernel
1084 - @ref CLFFTRadixStageKernel
1085 - @ref CLFFTScaleKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001086 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001087 - CLGEMMMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001088 - CLHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001089 - @ref CLDirectDeconvolutionLayer
1090 - @ref CLFFT1D
1091 - @ref CLFFT2D
1092 - @ref CLFFTConvolutionLayer
Michalis Spyrouca82e622019-05-10 16:43:20 +01001093 - @ref CLGEMMDeconvolutionLayer
1094 - New OpenGLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001095 - GCConcatenateLayer
Michalis Spyroua9c44722019-04-05 17:18:36 +01001096 - Deprecated functions/interfaces
Georgios Pinitas09f24972019-05-17 18:14:40 +01001097 - GCDepthConcatenateLayer
1098 - NEWidthConcatenateLayer
1099 - NEDepthConcatenateLayer
1100 - CLWidthConcatenateLayer
1101 - CLDepthConcatenateLayer
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001102 - CLGEMMInterleave4x4
1103 - CLGEMMTranspose1xW
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001104 - Support different quantization info in CLConcatLayer.
1105 - Add checks on different input/output quantization info were not supported.
1106 - Tensors have different quantization information.
1107 - Add FP16 support checks.
1108 - Fix output quantization CLDeptwiseConv3x3 when activation is fused.
1109 - New graph examples:
1110 - graph_convolution
1111 - graph_fully_connected
1112 - graph_depthwise_convolution
1113 - Deepspeech v0.4.1
1114 - Add support for QASYMM8 in NEArithmeticSubtractionKernel.
1115 - Add support for QASYMM8 in NEPixelWiseMultiplicationKernel.
1116 - Add support for QASYMM8 NEDeconvolution.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001117 - Add support for DequantizationLayer for Neon/CL.
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001118 - Add support for dilation in CLDepthwiseConvolution.
1119 - Fuse offset contribution with the output stage when we use NEGEMMLowpMatrixMultiplyCore.
1120 - Optimize CLDeconvolution.
1121 - Add StackLayer to the graph API.
1122 - Add support for "reflect" padding mode in NEPad.
1123 - Winograd 7x7 NHWC on OpenCL.
1124 - Rework CL ML layers to run exclusively on CL.
1125 - Support different quantization info in PoolingLayer.
1126 - Implement and test import memory interfaces.
1127 - Added new tests and removed old ones.
1128 - Various clang-tidy fixes.
Michalis Spyroua9c44722019-04-05 17:18:36 +01001129
giuros01a69a88b2019-01-31 16:29:19 +00001130v19.02 Public major release
Isabella Gottardi62538972019-02-12 19:52:44 +00001131 - Various bug fixes.
1132 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001133 - New Arm® Neon™ kernels / functions:
Isabella Gottardi62538972019-02-12 19:52:44 +00001134 - @ref NETileKernel / @ref NETile
1135 - @ref NEFuseBatchNormalizationKernel / @ref NEFuseBatchNormalization
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001136 - NEElementwiseOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001137 - @ref NEElementwiseMax
1138 - @ref NEElementwiseMin
1139 - @ref NEElementwiseSquaredDiff
1140 - @ref NESelectKernel / @ref NESelect
1141 - @ref NESplit
1142 - @ref NESlice
1143 - @ref NEUnstack
1144 - @ref NEStridedSliceKernel / @ref NEStridedSlice
Sang-Hoon Park7249f152021-01-22 11:55:03 +00001145 - NEElementwiseUnaryKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001146 - @ref NERsqrtLayer
1147 - @ref NEExpLayer
1148 - @ref NEReverseKernel / @ref NEReverse
1149 - @ref NEArgMinMaxLayer
1150 - @ref NEStackLayerKernel / @ref NEStackLayer
1151 - @ref NERangeKernel / @ref NERange
1152 - @ref NEPadLayer
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001153 - NEMemsetKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001154 - @ref NEGatherKernel / @ref NEGather
1155 - @ref NEElementwiseComparison
1156 - @ref NEElementwiseComparisonStatic
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001157 - NEComparisonOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001158 - @ref NEElementwiseDivision
1159 - New OpenCL kernels / functions:
1160 - @ref CLSelectKernel / @ref CLSelect
1161 - @ref CLTileKernel / @ref CLTile
1162 - @ref CLComparisonKernel / @ref CLComparison
1163 - @ref CLArgMinMaxLayer
1164 - @ref CLElementwiseMax
1165 - @ref CLElementwiseMin
1166 - @ref CLElementwiseSquaredDiff
1167 - @ref CLStackLayerKernel / @ref CLStackLayer
1168 - @ref CLReverse / @ref CLReverseKernel
1169 - @ref CLRsqrtLayer
1170 - @ref CLExpLayer
Michele Di Giorgioc9c89052021-01-26 10:20:17 +00001171 - CLElementWiseUnaryLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001172 - CLGEMMReshapeLHSMatrixKernel
1173 - CLGEMMReshapeRHSMatrixKernel
1174 - CLGEMMMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001175 - @ref CLRangeKernel / @ref CLRange
1176 - @ref CLUnstack
1177 - @ref CLGatherKernel / @ref CLGather
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001178 - CLGEMMLowpMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001179 - New CPP kernels / functions:
1180 - @ref CPPDetectionOutputLayer
1181 - @ref CPPTopKV / @ref CPPTopKVKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001182 - Added new examples:
1183 - graph_ssd_mobilenet.cpp
1184 - graph_mobilenet_v2.cpp
1185 - graph_resnet12.cpp
1186 - graph_srcnn955.cpp
1187 - graph_vgg_vdsr.cpp
1188 - graph_inception_resnet_v1.cpp
1189 - Add 4D tensors support to
1190 - @ref NESoftmaxLayer
1191 - Fused activation in @ref CLWinogradConvolutionLayer
Jakub Sujakee301b32021-06-04 09:46:08 +01001192 - Extended @ref NEPermute to support more cases
1193 - Added Neon™/SVE GEMM Hybrid kernels
Isabella Gottardi62538972019-02-12 19:52:44 +00001194 - Added u8 and s8 hybrid assembly kernels
1195 - Introduced GEMM strategy name in NEGEMMAssemblyWrapper
1196 - Improved @ref CLTuner
1197 - Fused the bias addition within @ref CLGEMM
1198 - Added support for QASYMM8 LOGISTIC activation in @ref NEActivationLayer
1199 - Added NHWC data layout support to:
1200 - @ref NEScale for F16
1201 - @ref CLNormalizationLayer IN_MAP_2D for FP32/FP16
1202 - @ref NEL2NormalizeLayer for FP32/FP16
1203 - @ref NENormalizationLayer IN_MAP_2D for FP32/FP16
1204 - @ref CLROIAlignLayer
Manuel Bottini5209be52019-02-13 16:34:56 +00001205 - @ref CLGenerateProposalsLayer
Isabella Gottardi62538972019-02-12 19:52:44 +00001206 - Added QASYMM8 support to the following kernels:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001207 - NEArithmeticAdditionKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001208 - @ref NEScale
1209 - Added new tests and improved validation and benchmarking suites.
giuros01a69a88b2019-01-31 16:29:19 +00001210 - Deprecated functions/interfaces
1211 - Usage of inner_border_right and inner_border_top has been deprecated in @ref CLDeconvolutionLayer and @ref NEDeconvolutionLayer
1212
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001213v18.11 Public major release
1214 - Various bug fixes.
1215 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001216 - New Arm® Neon™ kernels / functions:
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001217 - @ref NEChannelShuffleLayer / @ref NEChannelShuffleLayerKernel
1218 - @ref NEReduceMean
1219 - @ref NEReorgLayer / @ref NEReorgLayerKernel
1220 - @ref NEPriorBoxLayer / @ref NEPriorBoxLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001221 - NEUpsampleLayer / NEUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001222 - NEYOLOLayer / NEYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001223 - New OpenCL kernels / functions:
1224 - @ref CLBatchToSpaceLayer / @ref CLBatchToSpaceLayerKernel
1225 - @ref CLBoundingBoxTransform / @ref CLBoundingBoxTransformKernel
Manuel Bottini5209be52019-02-13 16:34:56 +00001226 - @ref CLComputeAllAnchorsKernel
1227 - @ref CLGenerateProposalsLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001228 - @ref CLNormalizePlanarYUVLayer / @ref CLNormalizePlanarYUVLayerKernel
1229 - @ref CLReorgLayer / @ref CLReorgLayerKernel
1230 - @ref CLSpaceToBatchLayer / @ref CLSpaceToBatchLayerKernel
1231 - @ref CLPadLayer
1232 - @ref CLReduceMean
1233 - @ref CLPriorBoxLayer / @ref CLPriorBoxLayerKernel
1234 - @ref CLROIAlignLayer / @ref CLROIAlignLayerKernel
1235 - @ref CLSlice
1236 - @ref CLSplit
1237 - @ref CLStridedSlice / @ref CLStridedSliceKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001238 - CLUpsampleLayer / CLUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001239 - CLYOLOLayer / CLYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001240 - New CPP kernels / functions:
1241 - @ref CPPBoxWithNonMaximaSuppressionLimit / @ref CPPBoxWithNonMaximaSuppressionLimitKernel
1242 - Added the validate method in:
1243 - @ref NEDepthConvertLayer
1244 - @ref NEFloor / @ref CLFloor
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001245 - NEGEMMMatrixAdditionKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001246 - @ref NEReshapeLayer / @ref CLReshapeLayer
1247 - @ref CLScale
1248 - Added new examples:
1249 - graph_shufflenet.cpp
1250 - graph_yolov3.cpp
1251 - Added documentation for add a new function or kernel.
1252 - Improved doxygen documentation adding a list of the existing functions.
1253 - Add 4D tensors support to
Georgios Pinitas09f24972019-05-17 18:14:40 +01001254 - CLWidthConcatenateLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001255 - CLFlattenLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001256 - @ref CLSoftmaxLayer
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001257 - Add dot product support for CLDepthwiseConvolutionLayer3x3NHWCKernel non-unit stride
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001258 - Add SVE support
1259 - Fused batch normalization into convolution layer weights in @ref CLFuseBatchNormalization
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001260 - Fuses activation in CLDepthwiseConvolutionLayer3x3NCHWKernel, CLDepthwiseConvolutionLayer3x3NHWCKernel and @ref NEGEMMConvolutionLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001261 - Added NHWC data layout support to:
1262 - @ref CLChannelShuffleLayer
1263 - @ref CLDeconvolutionLayer
1264 - @ref CLL2NormalizeLayer
1265 - Added QASYMM8 support to the following kernels:
Manuel Bottini3b131ab2021-02-19 18:16:44 +00001266 - CLScaleKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001267 - NEDepthwiseConvolutionLayer3x3Kernel
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001268 - CLPixelWiseMultiplicationKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001269 - Added FP16 support to the following kernels:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001270 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001271 - NEDepthwiseConvolutionLayer3x3Kernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001272 - @ref CLNormalizePlanarYUVLayerKernel
1273 - @ref CLWinogradConvolutionLayer (5x5 kernel)
1274 - More tests added to both validation and benchmarking suites.
1275
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001276v18.08 Public major release
1277 - Various bug fixes.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001278 - Various optimisations.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001279 - Updated recommended NDK version to r17b.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001280 - Removed support for QS8/QS16 data types.
1281 - Added support for grouped convolution in @ref CLConvolutionLayer.
1282 - Added NHWC data layout support to:
Georgios Pinitas09f24972019-05-17 18:14:40 +01001283 - NEDepthConcatenateLayer / CLDepthConcatenateLayer
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001284 - @ref NEWinogradConvolutionLayer / @ref CLWinogradConvolutionLayer
1285 - @ref CLDepthwiseConvolutionLayer
1286 - @ref CLDirectConvolutionLayer
1287 - @ref CLConvolutionLayer
1288 - @ref CLScale
Manuel Bottinid844c082021-07-14 12:58:54 +01001289 - CLIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001290 - New Arm® Neon™ kernels / functions:
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001291 - @ref NERNNLayer
1292 - New OpenCL kernels / functions:
1293 - @ref CLArithmeticDivision
1294 - Introduced prepare() stage support in the graph API for GLES.
1295 - Added support for memory reusage when trying to allocate smaller CLTensors.
1296 - Enabled NHWC execution on graph examples.
1297 - Added JPEG accessor for validation purposes.
1298 - Added validate methods to some kernels / functions.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001299
1300v18.05 Public major release
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001301 - Various bug fixes.
1302 - Various optimisations.
Jakub Sujakee301b32021-06-04 09:46:08 +01001303 - Major redesign in the interface for the Neon™ kernels implemented in assembly.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001304 - 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 +01001305 - Added NEGEMMAssemblyWrapper and AssemblyKernelGlue which are used to execute assembly kernels in Neon™ functions.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001306 - Minor changes to the CPUInfo type to make it compatible with the new assembly gemm interface.
Jakub Sujakee301b32021-06-04 09:46:08 +01001307 - Moved Neon™ assembly kernels to the folder src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001308 - Improved doxygen documentation.
1309 - Improved memory management for layer's transitions.
1310 - Added support for NHWC data layout in tensors.
1311 - Added NHWC data layout support to:
1312 - @ref NEGEMMConvolutionLayer
1313 - @ref NEDirectConvolutionLayer
1314 - @ref NEPoolingLayer / @ref CLPoolingLayer
1315 - @ref NEBatchNormalizationLayer / @ref CLBatchNormalizationLayer
1316 - @ref NEDepthwiseConvolutionLayer
1317 - @ref NEScale
Georgios Pinitasf7c5a412020-12-03 14:38:33 +00001318 - NEIm2Col
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001319 - Added support for dilated convolutions in @ref NEConvolutionLayer and @ref CLConvolutionLayer.
1320 - New OpenCL kernels / functions:
1321 - @ref CLChannelShuffleLayer / @ref CLChannelShuffleLayerKernel
Teresa Charlin91b7f742021-04-12 13:57:00 +01001322 - CLConvertFullyConnectedWeightsKernel / @ref CLConvertFullyConnectedWeights
Sheri Zhang7e20e292021-02-02 11:49:34 +00001323 - @ref CLCopy / CLCopyKernel
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001324 - @ref CLLSTMLayer
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001325 - @ref CLRNNLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001326 - CLWidthConcatenateLayer / CLWidthConcatenateLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +01001327 - CLWinogradFilterTransformKernel / @ref CLWinogradConvolutionLayer
1328 - CLWinogradInputTransformKernel / CLWinogradInputTransform
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001329 - New Arm® Neon™ kernels / functions:
Teresa Charlin562bee52021-04-13 17:44:15 +01001330 - NEConvertFullyConnectedWeightsKernel / @ref NEConvertFullyConnectedWeights.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001331 - Created the validate method in @ref CLDepthwiseConvolutionLayer.
1332 - Beta and gamma are no longer mandatory arguments in @ref NEBatchNormalizationLayer and @ref CLBatchNormalizationLayer.
1333 - Added depth multiplier support in @ref NEDepthwiseConvolutionLayer and @ref CLDepthwiseConvolutionLayer.
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001334 - Added broadcast multiply support in @ref NEPixelWiseMultiplication / NEPixelWiseMultiplicationKernel.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001335 - Port mobilenet example to NHWC data layout.
1336 - Enabled Winograd method in @ref CLConvolutionLayer.
1337 - Renamed NEWinogradLayer to @ref NEWinogradConvolutionLayer.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001338 - Updated @ref NEWinogradConvolutionLayer to use highly optimised assembly kernels in src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001339 - Added memory manager support in GLES functions.
1340 - Major refactoring of the graph API.
1341 - Added GLES backend in the graph API.
1342 - Added support for the memory manager in the graph API.
1343 - Enabled Winograd Convolution method in the graph API.
1344 - Added support for grouped convolutions in the graph API.
Manuel Bottini10b38262021-02-19 18:16:44 +00001345 - Replaced NEDeconvolutionLayerUpsampleKernel with NEScaleKernel in @ref NEDeconvolutionLayer.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001346 - Added fast maths flag in @ref CLConvolutionLayer.
1347 - Added new tests and benchmarks in validation and benchmark frameworks
Jakub Sujakee301b32021-06-04 09:46:08 +01001348 - Merge Activation layer with Convolution Layer (Neon™, CL, GLES)
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001349 - Added support to OpenCL 2.0 SVM
1350 - Added support to import memory in OpenCL tensors.
1351 - Added the prepare() method to perform any one off pre-processing before running the function.
1352 - Added new examples:
1353 - graph_inception_v4.cpp
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001354 - graph_resnext50.cpp
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001355 - Added memory measurement instrument for CL.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001356
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001357v18.03 Public maintenance release
1358 - Various bug fixes.
Anthony Barbier3762e742018-03-02 11:49:33 +00001359 - Fixed bug in @ref NEActivationLayer
1360 - Fix in @ref CLTuner when using batches.
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001361 - Updated recommended NDK version to r16b (And fixed warnings).
1362 - Fixed bug in validation code.
1363 - Added Inception v4 graph example.
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001364 - Renamed NEWinogradLayer.cpp to @ref NEWinogradConvolutionLayer
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001365
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001366v18.02 Public major release
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001367 - Various Arm® Neon™ / OpenCL / GLES optimisations.
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001368 - Various bug fixes.
1369 - Changed default number of threads on big LITTLE systems.
1370 - Refactored examples and added:
1371 - graph_mobilenet_qassym8
1372 - graph_resnet
1373 - graph_squeezenet_v1_1
Anthony Barbier3762e742018-03-02 11:49:33 +00001374 - Renamed @ref CLConvolutionLayer into @ref CLGEMMConvolutionLayer and created a new @ref CLConvolutionLayer to select the fastest convolution method.
1375 - 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 +00001376 - Added in place support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001377 - @ref CLActivationLayer
1378 - @ref CLBatchNormalizationLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001379 - Added QASYMM8 support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001380 - @ref CLActivationLayer
1381 - @ref CLDepthwiseConvolutionLayer
1382 - @ref NEDepthwiseConvolutionLayer
1383 - @ref NESoftmaxLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001384 - Added FP16 support to:
Manuel Bottini387259a2020-05-21 17:14:36 +01001385 - CLDepthwiseConvolutionLayer3x3
Anthony Barbier3762e742018-03-02 11:49:33 +00001386 - @ref CLDepthwiseConvolutionLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001387 - Added broadcasting support to NEArithmeticAddition / @ref CLArithmeticAddition / @ref CLPixelWiseMultiplication
Anthony Barbier3762e742018-03-02 11:49:33 +00001388 - Added fused batched normalization and activation to @ref CLBatchNormalizationLayer and @ref NEBatchNormalizationLayer
1389 - Added support for non-square pooling to @ref NEPoolingLayer and @ref CLPoolingLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001390 - New OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001391 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001392 - New Arm® Neon™ kernels / functions
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001393 - Added name() method to all kernels.
1394 - Added support for Winograd 5x5.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001395 - NEPermuteKernel / @ref NEPermute
Michalis Spyrou96f977e2021-07-01 12:20:56 +01001396 - CpuWinogradConv2dTransformInputKernel / NEWinogradLayer
1397 - CpuWinogradConv2dTransformOutputKernel / NEWinogradLayer
1398 - CpuWinogradConv2dTransformWeightsKernel / NEWinogradLayer
Anthony Barbiere1553372018-07-16 18:53:52 +01001399 - Renamed NEWinogradLayerKernel into NEWinogradLayerBatchedGEMMKernel
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001400 - New GLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001401 - GCTensorShiftKernel / GCTensorShift
Pablo Tellof6c572c2018-02-14 12:47:30 +00001402
Anthony Barbier64c95a02018-01-22 18:48:55 +00001403v18.01 Public maintenance release
1404 - Various bug fixes
1405 - Added some of the missing validate() methods
Anthony Barbier3762e742018-03-02 11:49:33 +00001406 - Added @ref CLDeconvolutionLayerUpsampleKernel / @ref CLDeconvolutionLayer @ref CLDeconvolutionLayerUpsample
Sheri Zhang7e20e292021-02-02 11:49:34 +00001407 - Added CLPermuteKernel / @ref CLPermute
Anthony Barbier64c95a02018-01-22 18:48:55 +00001408 - Added method to clean the programs cache in the CL Kernel library.
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001409 - Added GCArithmeticAdditionKernel / GCArithmeticAddition
1410 - Added GCDepthwiseConvolutionLayer3x3Kernel / GCDepthwiseConvolutionLayer3x3
1411 - Added GCNormalizePlanarYUVLayerKernel / GCNormalizePlanarYUVLayer
1412 - Added GCScaleKernel / GCScale
1413 - Added GCWeightsReshapeKernel / GCConvolutionLayer
Anthony Barbier64c95a02018-01-22 18:48:55 +00001414 - Added FP16 support to the following GLES compute kernels:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001415 - GCCol2ImKernel
1416 - GCGEMMInterleave4x4Kernel
1417 - GCGEMMTranspose1xWKernel
1418 - GCIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001419 - Refactored Arm® Neon™ Winograd (NEWinogradLayerKernel)
Manuel Bottini327225d2021-04-13 13:09:30 +01001420 - Added NEDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001421 - Added QASYMM8 support to the following Arm® Neon™ kernels:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001422 - NEDepthwiseConvolutionLayer3x3Kernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001423 - @ref NEFillBorderKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +00001424 - NEPoolingLayerKernel
Anthony Barbier64c95a02018-01-22 18:48:55 +00001425 - Added new examples:
1426 - graph_cl_mobilenet_qasymm8.cpp
1427 - graph_inception_v3.cpp
1428 - gc_dc.cpp
1429 - More tests added to both validation and benchmarking suites.
1430
Gian Marcoff850932017-12-11 12:37:17 +00001431v17.12 Public major release
1432 - Most machine learning functions on OpenCL support the new data type QASYMM8
1433 - Introduced logging interface
1434 - Introduced opencl timer
1435 - Reworked GEMMLowp interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001436 - Added new Arm® Neon™ assembly kernels for GEMMLowp, SGEMM and HGEMM
Gian Marcoff850932017-12-11 12:37:17 +00001437 - Added validation method for most Machine Learning kernels / functions
1438 - Added new graph examples such as googlenet, mobilenet, squeezenet, vgg16 and vgg19
1439 - Added sgemm example for OpenCL
1440 - Added absolute difference example for GLES compute
1441 - Added new tests and benchmarks in validation and benchmark frameworks
1442 - Added new kernels / functions for GLES compute
1443
1444 - New OpenGL ES kernels / functions
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001445 - GCAbsoluteDifferenceKernel / GCAbsoluteDifference
1446 - GCActivationLayerKernel / GCActivationLayer
1447 - GCBatchNormalizationLayerKernel / GCBatchNormalizationLayer
1448 - GCCol2ImKernel
1449 - GCDepthConcatenateLayerKernel / GCDepthConcatenateLayer
1450 - GCDirectConvolutionLayerKernel / GCDirectConvolutionLayer
1451 - GCDropoutLayerKernel / GCDropoutLayer
1452 - GCFillBorderKernel / GCFillBorder
1453 - GCGEMMInterleave4x4Kernel / GCGEMMInterleave4x4
1454 - GCGEMMMatrixAccumulateBiasesKernel / GCGEMMMatrixAdditionKernel / GCGEMMMatrixMultiplyKernel / GCGEMM
1455 - GCGEMMTranspose1xWKernel / GCGEMMTranspose1xW
1456 - GCIm2ColKernel
1457 - GCNormalizationLayerKernel / GCNormalizationLayer
1458 - GCPixelWiseMultiplicationKernel / GCPixelWiseMultiplication
1459 - GCPoolingLayerKernel / GCPoolingLayer
1460 - GCLogits1DMaxKernel / GCLogits1DShiftExpSumKernel / GCLogits1DNormKernel / GCSoftmaxLayer
1461 - GCTransposeKernel / GCTranspose
Gian Marcoff850932017-12-11 12:37:17 +00001462
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001463 - New Arm® Neon™ kernels / functions
Pablo Telloeb82fd22018-02-23 13:43:50 +00001464 - arm_compute::NEGEMMLowpAArch64A53Kernel / arm_compute::NEGEMMLowpAArch64Kernel / arm_compute::NEGEMMLowpAArch64V8P4Kernel / arm_compute::NEGEMMInterleavedBlockedKernel / arm_compute::NEGEMMLowpAssemblyMatrixMultiplyCore
1465 - arm_compute::NEHGEMMAArch64FP16Kernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001466 - NEDepthwiseConvolutionLayer3x3Kernel / NEDepthwiseIm2ColKernel / NEGEMMMatrixVectorMultiplyKernel / NEDepthwiseVectorToTensorKernel / @ref NEDepthwiseConvolutionLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001467 - NEGEMMLowpOffsetContributionKernel / NEGEMMLowpMatrixAReductionKernel / NEGEMMLowpMatrixBReductionKernel / NEGEMMLowpMatrixMultiplyCore
Manuel Bottiniae58bdf2021-06-17 17:18:45 +01001468 - NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001469 - NEWinogradLayer / NEWinogradLayerKernel
Gian Marcoff850932017-12-11 12:37:17 +00001470
1471 - New OpenCL kernels / functions
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001472 - CLGEMMLowpOffsetContributionKernel / CLGEMMLowpMatrixAReductionKernel / CLGEMMLowpMatrixBReductionKernel / CLGEMMLowpMatrixMultiplyCore
1473 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Gian Marcoff850932017-12-11 12:37:17 +00001474
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001475 - New graph nodes for Arm® Neon™ and OpenCL
Georgios Pinitasd9eb2752018-04-03 13:44:29 +01001476 - graph::BranchLayer
1477 - graph::DepthConvertLayer
1478 - graph::DepthwiseConvolutionLayer
1479 - graph::DequantizationLayer
1480 - graph::FlattenLayer
1481 - graph::QuantizationLayer
1482 - graph::ReshapeLayer
Gian Marcoff850932017-12-11 12:37:17 +00001483
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001484v17.10 Public maintenance release
1485 - Bug fixes:
1486 - Check the maximum local workgroup size supported by OpenCL devices
1487 - Minor documentation updates (Fixed instructions to build the examples)
Anthony Barbier3762e742018-03-02 11:49:33 +00001488 - Introduced a graph::GraphContext
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001489 - Added a few new Graph nodes, support for branches and grouping.
1490 - Automatically enable cl_printf in debug builds
1491 - Fixed bare metal builds for armv7a
1492 - Added AlexNet and cartoon effect examples
1493 - 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)
1494
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001495v17.09 Public major release
1496 - Experimental Graph support: initial implementation of a simple stream API to easily chain machine learning layers.
Anthony Barbier3762e742018-03-02 11:49:33 +00001497 - 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 +01001498 - New validation and benchmark frameworks (Boost and Google frameworks replaced by homemade framework).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001499 - Most machine learning functions support both fixed point 8 and 16 bit (QS8, QS16) for both Arm® Neon™ and OpenCL.
1500 - New Arm® Neon™ kernels / functions:
Pablo Telloeb82fd22018-02-23 13:43:50 +00001501 - arm_compute::NEGEMMAssemblyBaseKernel arm_compute::NEGEMMAArch64Kernel
Manuel Bottini00f4dfc2021-03-10 09:55:14 +00001502 - NEDequantizationLayerKernel / @ref NEDequantizationLayer
Georgios Pinitas70eb53b2021-01-06 19:42:21 +00001503 - NEFloorKernel / @ref NEFloor
Anthony Barbier3762e742018-03-02 11:49:33 +00001504 - @ref NEL2NormalizeLayerKernel / @ref NEL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001505 - NEQuantizationLayerKernel NEMinMaxLayerKernel / @ref NEQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001506 - @ref NEROIPoolingLayerKernel / @ref NEROIPoolingLayer
1507 - @ref NEReductionOperationKernel / @ref NEReductionOperation
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001508 - NEReshapeLayerKernel / @ref NEReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001509
1510 - New OpenCL kernels / functions:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001511 - CLDepthwiseConvolutionLayer3x3NCHWKernel CLDepthwiseConvolutionLayer3x3NHWCKernel CLDepthwiseIm2ColKernel CLDepthwiseVectorToTensorKernel CLDepthwiseWeightsReshapeKernel / CLDepthwiseConvolutionLayer3x3 @ref CLDepthwiseConvolutionLayer CLDepthwiseSeparableConvolutionLayer
Manuel Bottini9e73c932021-03-02 17:40:42 +00001512 - CLDequantizationLayerKernel / CLDequantizationLayer
Sheri Zhang1efed922021-03-10 22:43:38 +00001513 - CLDirectConvolutionLayerKernel / @ref CLDirectConvolutionLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001514 - CLFlattenLayer
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001515 - CLFloorKernel / @ref CLFloor
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001516 - CLGEMMTranspose1xW
Michele Di Giorgioee82d342021-01-05 16:14:28 +00001517 - CLGEMMMatrixVectorMultiplyKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001518 - @ref CLL2NormalizeLayerKernel / @ref CLL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001519 - CLQuantizationLayerKernel CLMinMaxLayerKernel / @ref CLQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001520 - @ref CLROIPoolingLayerKernel / @ref CLROIPoolingLayer
1521 - @ref CLReductionOperationKernel / @ref CLReductionOperation
Sheri Zhang7e20e292021-02-02 11:49:34 +00001522 - CLReshapeLayerKernel / @ref CLReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001523
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001524v17.06 Public major release
1525 - Various bug fixes
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001526 - Added support for fixed point 8 bit (QS8) to the various Arm® Neon™ machine learning kernels.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001527 - Added unit tests and benchmarks (AlexNet, LeNet)
1528 - Added support for sub tensors.
1529 - Added infrastructure to provide GPU specific optimisation for some OpenCL kernels.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001530 - Added @ref OMPScheduler (OpenMP) scheduler for Neon
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001531 - Added @ref SingleThreadScheduler scheduler for Arm® Neon™ (For bare metal)
ramelg01b2eba7f2021-12-23 08:32:08 +00001532 - User can specify their own scheduler by implementing the @ref IScheduler interface.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001533 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001534 - @ref CLBatchNormalizationLayerKernel / @ref CLBatchNormalizationLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001535 - CLDepthConcatenateLayerKernel / CLDepthConcatenateLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001536 - CLHOGOrientationBinningKernel CLHOGBlockNormalizationKernel, CLHOGDetectorKernel / CLHOGDescriptor CLHOGDetector CLHOGGradient CLHOGMultiDetection
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001537 - CLLocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedLayer
Manuel Bottinid87aded2021-07-16 10:23:31 +01001538 - CLWeightsReshapeKernel / CLConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001539 - New C++ kernels:
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001540 - CPPDetectionWindowNonMaximaSuppressionKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001541 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001542 - @ref NEBatchNormalizationLayerKernel / @ref NEBatchNormalizationLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001543 - NEDepthConcatenateLayerKernel / NEDepthConcatenateLayer
Manuel Bottini327225d2021-04-13 13:09:30 +01001544 - NEDirectConvolutionLayerKernel / @ref NEDirectConvolutionLayer
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001545 - NELocallyConnectedMatrixMultiplyKernel / NELocallyConnectedLayer
Manuel Bottini29599d02021-07-06 15:01:35 +01001546 - NEWeightsReshapeKernel / NEConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001547
1548v17.05 Public bug fixes release
1549 - Various bug fixes
1550 - Remaining of the functions ported to use accurate padding.
1551 - Library does not link against OpenCL anymore (It uses dlopen / dlsym at runtime instead to determine whether or not OpenCL is available).
1552 - Added "free" method to allocator.
1553 - Minimum version of g++ required for armv7 Linux changed from 4.8 to 4.9
1554
1555v17.04 Public bug fixes release
1556
1557 The following functions have been ported to use the new accurate padding:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001558 - CLColorConvertKernel
1559 - CLEdgeNonMaxSuppressionKernel
1560 - CLEdgeTraceKernel
1561 - CLGaussianPyramidHorKernel
1562 - CLGaussianPyramidVertKernel
1563 - CLGradientKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001564 - NEChannelCombineKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001565 - NEFillArrayKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001566 - NEGaussianPyramidHorKernel
1567 - NEGaussianPyramidVertKernel
Georgios Pinitas09d34512018-08-30 16:02:11 +01001568 - NEHarrisScoreFP16Kernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001569 - NEHarrisScoreKernel
1570 - NEHOGDetectorKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +00001571 - NELogits1DMaxKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001572 - NELogits1DShiftExpSumKernel
1573 - NELogits1DNormKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001574 - NENonMaximaSuppression3x3FP16Kernel
1575 - NENonMaximaSuppression3x3Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001576
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001577v17.03.1 First Major public release of the sources
1578 - Renamed the library to arm_compute
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001579 - New CPP target introduced for C++ kernels shared between Arm® Neon™ and CL functions.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001580 - New padding calculation interface introduced and ported most kernels / functions to use it.
1581 - New OpenCL kernels / functions:
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +01001582 - CLGEMMLowpMatrixMultiplyKernel / CLGEMMLowp
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001583 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001584 - @ref NENormalizationLayerKernel / @ref NENormalizationLayer
Teresa Charlind1dc09c2021-03-04 15:24:45 +00001585 - NETransposeKernel / @ref NETranspose
Michalis Spyrou373b4072021-01-20 16:41:12 +00001586 - NELogits1DMaxKernel, NELogits1DShiftExpSumKernel, NELogits1DNormKernel / @ref NESoftmaxLayer
Manuel Bottini24b89202021-07-01 18:13:33 +01001587 - NEIm2ColKernel, NECol2ImKernel, NEConvolutionLayerWeightsReshapeKernel / @ref NEConvolutionLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +01001588 - NEGEMMMatrixAccumulateBiasesKernel / @ref NEFullyConnectedLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001589 - NEGEMMLowpMatrixMultiplyKernel / NEGEMMLowp
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001590
1591v17.03 Sources preview
1592 - New OpenCL kernels / functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001593 - CLGradientKernel, CLEdgeNonMaxSuppressionKernel, CLEdgeTraceKernel / CLCannyEdge
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001594 - GEMM refactoring + FP16 support: CLGEMMInterleave4x4Kernel, CLGEMMTranspose1xWKernel, CLGEMMMatrixMultiplyKernel, CLGEMMMatrixAdditionKernel / @ref CLGEMM
Michele Di Giorgiof6f78762020-07-06 11:27:21 +01001595 - CLGEMMMatrixAccumulateBiasesKernel / @ref CLFullyConnectedLayer
Teresa Charlin27886092021-02-25 20:15:01 +00001596 - CLTransposeKernel / @ref CLTranspose
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001597 - CLLKTrackerInitKernel, CLLKTrackerStage0Kernel, CLLKTrackerStage1Kernel, CLLKTrackerFinalizeKernel / CLOpticalFlow
Anthony Barbier3762e742018-03-02 11:49:33 +00001598 - @ref CLNormalizationLayerKernel / @ref CLNormalizationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001599 - CLLaplacianPyramid, CLLaplacianReconstruct
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001600 - New Arm® Neon™ kernels / functions:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001601 - NEActivationLayerKernel / @ref NEActivationLayer
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001602 - GEMM refactoring + FP16 support (Requires armv8.2 CPU): NEGEMMInterleave4x4Kernel, NEGEMMTranspose1xWKernel, NEGEMMMatrixMultiplyKernel, NEGEMMMatrixAdditionKernel / @ref NEGEMM
Michele Di Giorgio19289042021-02-03 16:05:00 +00001603 - NEPoolingLayerKernel / @ref NEPoolingLayer
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001604
1605v17.02.1 Sources preview
1606 - New OpenCL kernels / functions:
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +00001607 - CLLogits1DMaxKernel, CLLogits1DShiftExpSumKernel, CLLogits1DNormKernel / @ref CLSoftmaxLayer
Michele Di Giorgioe1314662021-02-01 17:09:32 +00001608 - CLPoolingLayerKernel / @ref CLPoolingLayer
Manuel Bottinid844c082021-07-14 12:58:54 +01001609 - CLIm2ColKernel, CLCol2ImKernel, CLConvolutionLayerWeightsReshapeKernel / CLConvolutionLayer
Adnan AlSinan6863fa02022-02-04 13:04:55 +00001610 - CLRemapKernel / CLRemap
Michalis Spyrou473cb012021-02-23 11:48:12 +00001611 - CLGaussianPyramidHorKernel, CLGaussianPyramidVertKernel / CLGaussianPyramid, CLGaussianPyramidHalf, CLGaussianPyramidOrb
1612 - CLMinMaxKernel, CLMinMaxLocationKernel / CLMinMaxLocation
1613 - CLNonLinearFilterKernel / CLNonLinearFilter
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001614 - New Arm® Neon™ FP16 kernels (Requires armv8.2 CPU)
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001615 - NEAccumulateWeightedFP16Kernel
1616 - NEBox3x3FP16Kernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001617 - NENonMaximaSuppression3x3FP16Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001618
1619v17.02 Sources preview
1620 - New OpenCL kernels / functions:
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001621 - CLActivationLayerKernel / @ref CLActivationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001622 - CLChannelCombineKernel / CLChannelCombine
1623 - CLDerivativeKernel / CLChannelExtract
1624 - CLFastCornersKernel / CLFastCorners
1625 - CLMeanStdDevKernel / CLMeanStdDev
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001626 - New Arm® Neon™ kernels / functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001627 - HOG / SVM: NEHOGOrientationBinningKernel, NEHOGBlockNormalizationKernel, NEHOGDetectorKernel, NEHOGNonMaximaSuppressionKernel / NEHOGDescriptor, NEHOGDetector, NEHOGGradient, NEHOGMultiDetection
1628 - NENonLinearFilterKernel / NENonLinearFilter
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001629 - Introduced a CLScheduler to manage the default context and command queue used by the runtime library and create synchronisation events.
1630 - Switched all the kernels / functions to use tensors instead of images.
1631 - Updated documentation to include instructions to build the library from sources.
1632
1633v16.12 Binary preview release
1634 - Original release
1635
Sheri Zhangd813bab2021-04-30 16:53:41 +01001636 */
Ramy Elgammal0d274b72022-08-05 13:14:57 +01001637} // namespace arm_compute