blob: f493ff631e027aed36642c871f2e202feba36a79 [file] [log] [blame]
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +00001///
Jonathan Deakin2db938c2024-02-05 15:32:31 +00002/// Copyright (c) 2017-2024 Arm Limited.
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +00003///
4/// SPDX-License-Identifier: MIT
5///
6/// Permission is hereby granted, free of charge, to any person obtaining a copy
7/// of this software and associated documentation files (the "Software"), to
8/// deal in the Software without restriction, including without limitation the
9/// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10/// sell copies of the Software, and to permit persons to whom the Software is
11/// furnished to do so, subject to the following conditions:
12///
13/// The above copyright notice and this permission notice shall be included in all
14/// copies or substantial portions of the Software.
15///
16/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22/// SOFTWARE.
23///
Anthony Barbier3762e742018-03-02 11:49:33 +000024namespace arm_compute
25{
Sheri Zhangd813bab2021-04-30 16:53:41 +010026/** @page versions_changelogs Release Versions and Changelog
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027
28@tableofcontents
29
Sheri Zhangd813bab2021-04-30 16:53:41 +010030@section S2_1_versions Release versions
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031
32All releases are numbered vYY.MM Where YY are the last two digits of the year, and MM the month number.
33If there is more than one release in a month then an extra sequential number is appended at the end:
34
35 v17.03 (First release of March 2017)
36 v17.03.1 (Second release of March 2017)
37 v17.04 (First release of April 2017)
38
39@note We're aiming at releasing one major public release with new features per quarter. All releases in between will only contain bug fixes.
Ramy Elgammalfa8ff8e2022-08-12 16:57:10 +010040@note Starting from release 22.05, 'master' branch is no longer being used, it has been replaced by 'main'. Please update your clone jobs accordingly.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041
Sheri Zhangd813bab2021-04-30 16:53:41 +010042@section S2_2_changelog Changelog
Pablo Marquez Tello29e27b02023-08-03 14:47:31 +010043
Gunes Bayirada32002024-04-24 10:27:13 +010044v24.05 Public major release
Gunes Bayir301e33f2024-04-29 17:00:14 +010045 - Add @ref CLScatter operator for FP32/16, S32/16/8, U32/16/8 data types
Ramy Elgammalb4b61a62024-05-14 15:21:07 +010046 - Various fixes to enable FP16 kernels in armv8a multi_isa builds.
Gunes Bayirada32002024-04-24 10:27:13 +010047
Gunes Bayiref637392024-02-12 21:32:51 +000048v24.04 Public major release
Renato Arantes36a75da2024-01-26 17:31:18 +000049 - Add Bfloat16 data type support for @ref NEMatMul.
Omar Al Khatibc1575b22024-04-23 16:26:56 +010050 - Add support for SoftMax in SME2 for FP32, FP16, QASYMM8 and QASYMM8_SIGNED.
Radu Salavatf1f1f872024-02-27 18:32:26 +000051 - Add support for in place accumulation to CPU GEMM kernels.
Jonathan Deakina668f9f2024-01-24 09:15:38 +000052 - Add low-precision Int8 * Int8 -> FP32 CPU GEMM which dequantizes after multiplication
53 - Add is_dynamic flag to QuantizationInfo to signal to operators that it may change after configuration
Michael Kozlov5057ce92024-04-17 14:34:46 +010054 - Performance optimizations:
55 - Optimize start-up time of @ref NEConvolutionLayer for some input configurations where GeMM is selected as the convolution algorithm
56 - Optimize @ref NEConvolutionLayer for input tensor size > 1e7 bytes and weight tensor height > 7
57 - Optimize @ref NESoftmaxLayer for axis != 0 by natively supporting higher axes up to axis 3.
Gunes Bayiref637392024-02-12 21:32:51 +000058
Felix Thomasmathibaland0611c12024-03-08 15:34:58 +000059v24.02.1 Public patch release
60 - Fix performance regression in fixed-format kernels
61 - Fix compile and runtime errors in arm_compute_validation for Windows on Arm(WoA)
62
Jonathan Deakin2db938c2024-02-05 15:32:31 +000063v24.02 Public major release
Felix Thomasmathibaland98e27e2024-02-12 13:48:29 +000064 - Replace template writer with compute kernel writer in dynamic fusion.
Jonathan Deakin2db938c2024-02-05 15:32:31 +000065 - Performance optimizations:
66 - Parallelize @ref NEDepthwiseConvolutionLayer over batches if there is only 1 row
67
Jakub Sujake30c8742023-11-13 14:57:16 +000068v24.01 Public major release
69 - Remove the legacy 'libarm_compute_core' library. This library is an artifact of Compute Library's legacy library architecture and no longer serves any purpose.
70 You should link only to the main `libarm_compute` library for core functionality.
Gunes Bayir85cafff2023-12-18 13:29:31 +000071 - Expand GPUTarget list with Mali™ G720 and G620.
Mohammed Suhail Munshi7467ba82023-12-05 14:27:31 +000072 - Optimize CPU activation functions using LUT-based implementation:
73 - Sigmoid function for FP16.
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +010074 - New features
75 - Add support for FP16 in all multi_isa builds.
Gunes Bayirfadc9b12023-11-07 05:43:07 +000076 - Performance optimizations:
77 - Optimize @ref NESoftmaxLayer
Viet-Hoa Do47370942023-11-13 17:20:45 +000078 - Optimize @ref NEDepthToSpaceLayer.
Jakub Sujake30c8742023-11-13 14:57:16 +000079
Pablo Marquez Tello29e27b02023-08-03 14:47:31 +010080v23.11 Public major release
Viet-Hoa Do633ebd12023-08-11 12:27:59 +010081 - New features
Pablo Marquez Tello29e27b02023-08-03 14:47:31 +010082 - Add support for input data type U64/S64 in CLCast and NECast.
83 - Add support for output data type S64 in NEArgMinMaxLayer and CLArgMinMaxLayer
Gunes Bayir91cb7332023-07-25 17:00:33 +010084 - Port the following kernels in the experimental Dynamic Fusion interface to use the new Compute Kernel Writer interface:
85 - @ref experimental::dynamic_fusion::GpuCkwResize
ramy.elgammal@arm.coma04ae3e2023-07-27 18:23:17 +010086 - @ref experimental::dynamic_fusion::GpuCkwPool2d
87 - @ref experimental::dynamic_fusion::GpuCkwDepthwiseConv2d
Adnan AlSinanfde45d82023-10-24 12:03:21 +010088 - @ref experimental::dynamic_fusion::GpuCkwMatMul
Viet-Hoa Do500e10b2023-09-12 17:49:38 +010089 - Add support for OpenCL™ comand buffer with mutable dispatch extension.
Anitha Raj38eb5fb2023-11-13 14:55:40 +000090 - Add support for Arm® Cortex®-A520 and Arm® Cortex®-R82.
91 - Add support for negative axis values and inverted axis values in @ref arm_compute::NEReverse and @ref arm_compute::CLReverse.
92 - Add new OpenCL™ kernels:
93 - @ref opencl::kernels::ClMatMulLowpNativeMMULKernel support for QASYMM8 and QASYMM8_SIGNED, with batch support
Anitha Rajeb5696d2023-07-14 11:19:34 +010094 - Performance optimizations:
David Mansell1b2ee3e2023-08-22 13:27:03 +010095 - Optimize @ref cpu::CpuReshape
Jakub Sujaka23b4682023-10-05 10:20:59 +010096 - Optimize @ref opencl::ClTranspose
Gunes Bayir0b72aa42023-10-07 23:52:48 +010097 - Optimize @ref NEStackLayer
Viet-Hoa Doc210c852023-10-09 10:58:35 +010098 - Optimize @ref CLReductionOperation.
Viet-Hoa Do29254ae2023-10-13 17:40:32 +010099 - Optimize @ref CLSoftmaxLayer.
SiCong Lic5ab4df2023-10-17 17:38:57 +0100100 - Optimize start-up time of @ref NEConvolutionLayer for some input configurations where GeMM is selected as the convolution algorithm
Anitha Raj38eb5fb2023-11-13 14:55:40 +0000101 - Reduce CPU Overhead by optimal flushing of CL kernels.
Adnan AlSinan40a9d3e2023-09-15 13:46:17 +0100102 - Deprecate support for Bfloat16 in @ref cpu::CpuCast.
Adnan AlSinan704c22f2023-10-24 11:05:56 +0100103 - Support for U32 axis in @ref arm_compute::NEReverse and @ref arm_compute::CLReverse will be deprecated in 24.02.
Anitha Raj38eb5fb2023-11-13 14:55:40 +0000104 - Remove legacy PostOps interface. PostOps was the experimental interface for kernel fusion and is replaced by the new Dynamic Fusion interface.
105 - Update OpenCL™ API headers to v2023.04.17
Pablo Marquez Tello29e27b02023-08-03 14:47:31 +0100106
Jakub Sujak59b9ff02023-06-11 21:35:11 +0100107v23.08 Public major release
108 - 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.
109 Users must no longer link their applications to this library and instead link only to the main `libarm_compute` library for core functionality.
Ramy Elgammalc9525962023-05-19 14:23:37 +0100110 - New features
ramy.elgammal@arm.com11b23f72023-08-09 15:38:03 +0100111 - Rewrite CLArgMinMaxLayer for axis 0 and enable S64 output.
112 - Add multi-sketch support for dynamic fusion.
113 - Break up arm_compute/core/Types.h and utils/Utils.h a bit to reduce unused code in each inclusion of these headers.
114 - Add Fused Activation to CLMatMul.
115 - Implement FP32/FP16 @ref opencl::kernels::ClMatMulNativeMMULKernel using the MMUL extension.
116 - Use MatMul in fully connected layer with dynamic weights when supported.
117 - Optimize CPU depthwise convolution with channel multiplier.
118 - Add support in CpuCastKernel for conversion of S64/U64 to F32.
Ramy Elgammalc9525962023-05-19 14:23:37 +0100119 - Add new OpenCL™ kernels:
120 - @ref opencl::kernels::ClMatMulNativeMMULKernel support for FP32 and FP16, with batch support
Viet-Hoa Do019a7d92023-06-27 16:33:57 +0100121 - Enable transposed convolution with non-square kernels on CPU and GPU.
ramy.elgammal@arm.com11b23f72023-08-09 15:38:03 +0100122 - Add support for input data type U64/S64 in CLCast.
123 - Add new Compute Kernel Writer (CKW) subproject that offers a C++ interface to generate tile-based OpenCL code in just-in-time fashion.
Jakub Sujake1c96e72023-07-31 13:36:58 +0100124 - Port the following kernels in the experimental Dynamic Fusion interface to use the new Compute Kernel Writer interface with support for FP16/FP32 only:
125 - @ref experimental::dynamic_fusion::GpuCkwActivation
126 - @ref experimental::dynamic_fusion::GpuCkwCast
127 - @ref experimental::dynamic_fusion::GpuCkwDirectConv2d
128 - @ref experimental::dynamic_fusion::GpuCkwElementwiseBinary
129 - @ref experimental::dynamic_fusion::GpuCkwStore
Viet-Hoa Do0c19f592023-08-01 14:42:41 +0100130 - Various optimizations and bug fixes.
131
ramy.elgammal@arm.com2f0ef002023-06-28 21:31:03 +0100132v23.05.1 Public patch release
133 - Enable CMake and Bazel option to build multi_isa without FP16 support.
134 - Fix compilation error in NEReorderLayer (aarch64 only).
135 - Disable invalid (false-negative) validation test with CPU scale layer on FP16.
136 - Various bug fixes
137
SiCong Li8893e452023-03-23 12:06:45 +0000138v23.05 Public major release
Omar Al Khatib32a62502023-05-10 11:45:20 +0100139 - New features:
140 - Add new Arm® Neon™ kernels / functions:
141 - @ref NEMatMul for QASYMM8, QASYMM8_SIGNED, FP32 and FP16, with batch support.
142 - NEReorderLayer (aarch64 only)
143 - Add new OpenCL™ kernels / functions:
144 - @ref CLMatMul support for QASYMM8, QASYMM8_SIGNED, FP32 and FP16, with batch support.
145 - Add support for the multiple dimensions in the indices parameter for both the Arm® Neon™ and OpenCL™ implementations of the Gather Layer.
146 - Add support for dynamic weights in @ref CLFullyConnectedLayer and @ref NEFullyConnectedLayer for all data types.
147 - Add support for cropping in the Arm® Neon™ and OpenCL™: implementations of the BatchToSpace Layer for all data types.
148 - Add support for quantized data types for the ElementwiseUnary Operators for Arm® Neon™.
149 - Implement RSQRT for quantized data types on OpenCL™.
150 - Add FP16 depthwise convolution kernels for SME2.
151 - Performance optimizations:
152 - Improve CLTuner exhaustive mode tuning time.
153 - Deprecate dynamic block shape in @ref NEBatchToSpaceLayer and @ref CLBatchToSpaceLayer.
154 - Various optimizations and bug fixes.
SiCong Li8893e452023-03-23 12:06:45 +0000155
Jakub Sujak22e76132023-03-13 17:27:51 +0000156v23.02.1 Public patch release
157 - Allow mismatching data layouts between the source tensor and weights for \link cpu::CpuGemmDirectConv2d CpuGemmDirectConv2d \endlink with fixed format kernels.
158 - Fixes for experimental CPU only Bazel and CMake builds.
159
SiCong Li90e57202023-02-01 14:39:41 +0000160v23.02 Public major release
Jakub Sujak06db85e2023-02-06 17:42:47 +0000161 - New features:
162 - Rework the experimental dynamic fusion interface by identifying auxiliary and intermediate tensors, and specifying an explicit output operator.
163 - Add the following operators to the experimental dynamic fusion API:
164 - GpuAdd, GpuCast, GpuClamp, GpuDepthwiseConv2d, GpuMul, GpuOutput, GpuPool2d, GpuReshape, GpuResize, GpuSoftmax, GpuSub.
165 - Add SME/SME2 kernels for GeMM, Winograd convolution, Depthwise convolution and Pooling.
Jakub Sujak9eefd4b2023-02-10 14:36:48 +0000166 - Add new CPU operator AddMulAdd for float and quantized types.
Jakub Sujak06db85e2023-02-06 17:42:47 +0000167 - Add new flag @ref ITensorInfo::lock_paddings() to tensors to prevent extending tensor paddings.
Jakub Sujak06db85e2023-02-06 17:42:47 +0000168 - Add experimental support for CPU only Bazel and CMake builds.
169 - Performance optimizations:
170 - Optimize CPU base-e exponential functions for FP32.
171 - Optimize CPU StridedSlice by copying first dimension elements in bulk where possible.
172 - Optimize CPU quantized Subtraction by reusing the quantized Addition kernel.
173 - Optimize CPU ReduceMean by removing quantization steps and performing the operation in integer domain.
174 - 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 +0000175 - Update the heuristic for CLDepthwiseConvolutionNative kernel.
176 - Add new optimized OpenCL kernel to compute indirect convolution:
177 - \link opencl::kernels::ClIndirectConv2dKernel ClIndirectConv2dKernel \endlink
178 - Add new optimized OpenCL kernel to compute transposed convolution:
179 - \link opencl::kernels::ClTransposedConvolutionKernel ClTransposedConvolutionKernel \endlink
SiCong Li90e57202023-02-01 14:39:41 +0000180 - Update recommended/minimum NDK version to r20b.
Jakub Sujak06db85e2023-02-06 17:42:47 +0000181 - Various optimizations and bug fixes.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100182
Viet-Hoa Dob1f82882022-11-11 11:29:50 +0000183v22.11 Public major release
184 - New features:
185 - Add new experimental dynamic fusion API.
Viet-Hoa Do293ab602022-11-15 10:51:26 +0000186 - Add CPU batch matrix multiplication with adj_x = false and adj_y = false for FP32.
Viet-Hoa Dob1f82882022-11-11 11:29:50 +0000187 - Add CPU MeanStdDevNorm for QASYMM8.
188 - Add CPU and GPU GELU activation function for FP32 and FP16.
189 - Add CPU swish activation function for FP32 and FP16.
190 - Performance optimizations:
191 - Optimize CPU bilinear scale for FP32, FP16, QASYMM8, QASYMM8_SIGNED, U8 and S8.
192 - Optimize CPU activation functions using LUT-based implementation:
193 - Sigmoid function for QASYMM8 and QASYMM8_SIGNED.
194 - Hard swish function for QASYMM8_SIGNED.
195 - Optimize CPU addition for QASYMM8 and QASYMM8_SIGNED using fixed-point arithmetic.
196 - Optimize CPU multiplication, subtraction and activation layers by considering tensors as 1D.
197 - Optimize GPU depthwise convolution kernel and heuristic.
198 - Optimize GPU Conv2d heuristic.
199 - Optimize CPU MeanStdDevNorm for FP16.
200 - Optimize CPU tanh activation function for FP16 using rational approximation.
201 - Improve GPU GeMMLowp start-up time.
202 - Various optimizations and bug fixes.
203
SiCong Life1b1f62022-05-19 18:58:31 +0100204v22.08 Public major release
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100205 - Various bug fixes.
206 - Disable unsafe FP optimizations causing accuracy issues in:
207 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
208 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv3dKernel \endlink
209 - @ref CLDepthwiseConvolutionLayerNativeKernel
210 - Add Dynamic Fusion of Elementwise Operators: Div, Floor, Add.
211 - Optimize the gemm_reshaped_rhs_nly_nt OpenCL kernel using the arm_matrix_multiply extension available for Arm® Mali™-G715 and Arm® Mali™-G615.
212 - Add support for the arm_matrix_multiply extension in the gemmlowp_mm_reshaped_only_rhs_t OpenCL kernel.
213 - Expand GPUTarget list with missing Mali™ GPUs product names: G57, G68, G78AE, G610, G510, G310.
214 - Extend the direct convolution 2d interface to configure the block size.
215 - Update ClConv2D heuristic to use direct convolution.
216 - Use official Khronos® OpenCL extensions:
217 - Add cl_khr_integer_dot_product extension support.
218 - Add support of OpenCL 3.0 non-uniform workgroup.
219 - Cpu performance optimizations:
220 - Add LUT-based implementation of Hard Swish and Leaky ReLU activation function for aarch64 build.
221 - Optimize Add layer by considering the input tensors as 1D array.
222 - Add fixed-format BF16, FP16 and FP32 Neon™ GEMM kernels to support variable weights.
223 - 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 +0000224 - Add experimental support for native builds for Windows® on Arm™.
Ramy Elgammal966218d2022-08-11 16:23:22 +0100225 - 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 +0100226 - Build flag change: toolchain_prefix, compiler_prefix:
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100227 - Use empty string "" to suppress any prefixes.
228 - Use "auto" to use default (auto) prefixes chosen by the build script. This is the default behavior when unspecified.
229 - Any other string will be used as custom prefixes to the compiler and the rest of toolchain tools.
230 - The default behaviour when prefix is unspecified does not change, but its signifier has been changed from empty string "" to "auto".
231 - armv7a with Android build will no longer be tested or maintained.
SiCong Life1b1f62022-05-19 18:58:31 +0100232
Adnan AlSinan2921e5b2022-05-16 14:30:41 +0100233v22.05 Public major release
234 - Various bug fixes.
235 - Various optimizations.
236 - Add support for NDK r23b.
237 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
238 - New Arm® Neon™ kernels / functions :
239 - \link opencl::kernels::ClPool3dKernel ClPool3dKernel \endlink
240 - New OpenCL kernels / functions :
241 - \link cpu::kernels::CpuPool3dKernel CpuPool3dKernel \endlink
242 - Improve the start-up times for the following OpenCL kernels:
243 - \link opencl::kernels::ClWinogradInputTransformKernel ClWinogradInputTransformKernel \endlink
244 - \link opencl::kernels::ClWinogradOutputTransformKernel ClWinogradOutputTransformKernel \endlink
245 - \link opencl::kernels::ClWinogradFilterTransformKernel ClWinogradFilterTransformKernel \endlink
246 - \link opencl::kernels::ClHeightConcatenateKernel ClHeightConcatenateKernel \endlink
247 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
248 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
249 - \link cpu::kernels::CpuDepthwiseConv2dNativeKernel CpuDepthwiseConv2dNativeKernel \endlink
250 - \link cpu::kernels::CpuGemmMatrixAdditionKernel CpuGemmMatrixAdditionKernel \endlink
251 - \link cpu::kernels::CpuGemmMatrixMultiplyKernel CpuGemmMatrixMultiplyKernel \endlink
252 - @ref NEFuseBatchNormalizationKernel
253 - @ref NEL2NormalizeLayerKernel
254
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000255v22.02 Public major release
256 - Various bug fixes.
257 - Various optimizations.
258 - Update A510 arm_gemm cpu Kernels.
259 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
260 - Improve the start-up time for the following OpenCL kernels:
261 - @ref CLScale
262 - @ref CLGEMM
263 - @ref CLDepthwiseConvolutionLayer
264 - \link opencl::kernels::ClIm2ColKernel ClIm2ColKernel \endlink
265 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
266 - Remove functions:
267 - CLRemap
268 - NERemap
269 - Remove padding from OpenCL kernels:
270 - \link opencl::kernels::ClDirectConv2dKernel ClDirectConv2dKernel \endlink
271 - Remove padding from Cpu kernels:
272 - \link cpu::kernels::CpuDirectConv2dKernel CpuDirectConv2dKernel \endlink
273 - Decouple the implementation of the following Cpu kernels into various data types (fp32, fp16, int):
274 - \link cpu::kernels::CpuActivationKernel CpuActivationKernel \endlink
275 - \link cpu::kernels::CpuAddKernel CpuAddKernel \endlink
276 - \link cpu::kernels::CpuElementwiseKernel CpuElementwiseKernel \endlink
277 - \link cpu::CpuSoftmaxGeneric CpuSoftmaxKernel \endlink
278 - @ref NEBoundingBoxTransformKernel
279 - @ref NECropKernel
280 - @ref NEComputeAllAnchorsKernel
281 - @ref NEInstanceNormalizationLayerKernel
Adnan AlSinanbb8b2352022-02-14 14:30:38 +0000282 - NEMaxUnpoolingLayerKernel
Adnan AlSinan69854ba2022-02-07 15:28:56 +0000283 - @ref NEMeanStdDevNormalizationKernel
284 - @ref NERangeKernel
285 - @ref NEROIAlignLayerKernel
286 - @ref NESelectKernel
287
Sheri Zhang5dda2172021-10-15 19:54:17 +0100288v21.11 Public major release
289 - Various bug fixes.
Gunes Bayir08773702021-11-05 12:34:34 +0000290 - Various optimizations:
291 - 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 +0000292 - Improve performance of Softmax on GPU for Uint8/Int8
Sheri Zhang5dda2172021-10-15 19:54:17 +0100293 - New OpenCL kernels / functions:
294 - @ref CLConv3D
295 - New Arm® Neon™ kernels / functions:
296 - @ref NEConv3D
Gunes Bayir08773702021-11-05 12:34:34 +0000297 - Support configurable build by a selected subset of operator list
298 - Support MobileBert on Neon™ backend
299 - Improve operator/function logging
300 - Remove padding from OpenCL kernels:
301 - ClPool2dKernel
302 - ClScaleKernel
303 - ClGemmMatrixMultiplyReshapedKernel
304 - Remove padding from Cpu kernels:
305 - CpuPool2dKernel
306 - Remove Y padding from OpenCL kernels:
307 - ClGemmMatrixMultiplyKernel
308 - ClGemmReshapedRHSMatrixKernel
309 - Remove legacy GeMM kernels in gemm_v1.cl
Sheri Zhang5dda2172021-10-15 19:54:17 +0100310
Freddie Liardet77014ff2021-08-05 15:50:31 +0100311v21.08 Public major release
312 - Various bug fixes.
313 - Various optimizations:
314 - Improve LWS (Local-Workgroup-Size) heuristic in OpenCL for GeMM, Direct Convolution and Winograd Transformations when OpenCL tuner is not used
315 - Improve QASYMM8/QSYMM8 performance on OpenCL for various Arm® Mali™ GPU architectures
316 - Add dynamic weights support in Fully connected layer (CPU/GPU)
317 - Various performance optimizations for floating-point data types (CPU/GPU)
318 - Add a reduced core library build arm_compute_core_v2
319 - Expose Operator API
320 - Support fat binary build for arm8.2-a via fat_binary build flag
321 - Add CPU discovery capabilities
322 - Add data type f16 support for:
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000323 - CLRemapKernel
Freddie Liardet77014ff2021-08-05 15:50:31 +0100324 - Port the following functions to stateless API:
325 - @ref CLConvolutionLayer
326 - @ref CLFlattenLayer
327 - @ref CLFullyConnectedLayer
328 - @ref CLGEMM
329 - @ref CLGEMMConvolutionLayer
330 - @ref CLGEMMLowpMatrixMultiplyCore
331 - @ref CLWinogradConvolutionLayer
332 - @ref NEConvolutionLayer
333 - @ref NEFlattenLayer
334 - @ref NEFullyConnectedLayer
335 - @ref NEGEMM
336 - @ref NEGEMMConv2d
337 - @ref NEGEMMConvolutionLayer
338 - @ref NEGEMMLowpMatrixMultiplyCore
339 - @ref NEWinogradConvolutionLayer
340 - Remove the following functions:
341 - CLWinogradInputTransform
342 - Remove CLCoreRuntimeContext
343 - Remove ICPPSimpleKernel
344 - Rename file arm_compute/runtime/CL/functions/CLElementWiseUnaryLayer.h to arm_compute/runtime/CL/functions/CLElementwiseUnaryLayer.h
345
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000346v21.05 Public major release
Sheri Zhangc2bed952021-05-06 12:12:38 +0100347 - Various bug fixes.
348 - Various optimisations.
349 - Various documentation updates:
Jakub Sujakee301b32021-06-04 09:46:08 +0100350 - Add supported operators and corresponding Android NNAPI operators.
351 - Documentation reorg into user guide and contributor guide.
Sheri Zhangc2bed952021-05-06 12:12:38 +0100352 - Add support for a global allocator for OpenCL tensors
353 - Add experimental support for [CLVK](https://github.com/kpet/clvk).
354 - Add data type S32 support for:
355 - @ref opencl::kernels::ClArithmeticKernel
356 - Add data type QASYMM8 support for:
357 - @ref CLROIPoolingLayer
358 - @ref CLROIPoolingLayerKernel
359 - @ref NEROIPoolingLayer
360 - @ref NEROIPoolingLayerKernel
361 - Add per-channel quantization support for:
362 - @ref CLDeconvolutionLayer
363 - @ref CLDirectDeconvolutionLayer
364 - @ref NEConvolutionLayer
365 - @ref NEDeconvolutionLayer
366 - Remove padding from OpenCL kernels:
367 - @ref CLL2NormalizeLayerKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100368 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Sheri Zhangc2bed952021-05-06 12:12:38 +0100369 - @ref CLNormalizationLayerKernel
370 - @ref CLNormalizePlanarYUVLayerKernel
371 - @ref opencl::kernels::ClMulKernel
372 - @ref CLReductionOperationKernel
373 - @ref CLROIPoolingLayerKernel
374 - Remove computer vision support from Arm® Neon™ backend
375 - Remove the following functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000376 - NEAbsoluteDifference
377 - NEAccumulate
378 - NEBox3x3
379 - NECannyEdge
380 - NEChannelCombine
381 - NEChannelExtract
382 - NEColorConvert
Michalis Spyrou473cb012021-02-23 11:48:12 +0000383 - NEConvolution
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000384 - NEDerivative
385 - NEDilate
386 - NEEqualizeHistogram
387 - NEErode
388 - NEFastCorners
389 - NEGaussian3x3
390 - NEGaussian5x5
391 - NEGaussianPyramid
392 - NEHOGDescriptor
393 - NEHOGDetector
394 - NEHOGGradient
395 - NEHOGMultiDetection
396 - NEHarrisCorners
397 - NEHistogram
398 - NEIntegralImage
399 - NELaplacianPyramid
400 - NELaplacianReconstruct
401 - NEMagnitude
402 - NEMeanStdDev
403 - NEMedian3x3
404 - NEMinMaxLocation
405 - NENonLinearFilter
406 - NEOpticalFlow
407 - NEPhase
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000408 - NEScharr3x3
409 - NESobel3x3
410 - NESobel5x5
411 - NESobel7x7
412 - NETableLookup
413 - NEThreshold
414 - NEWarpAffine
Michalis Spyrou473cb012021-02-23 11:48:12 +0000415 - NEWarpPerspectiveKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000416 - Remove all GLES kernels / functions / tests / examples
Sheri Zhangc2bed952021-05-06 12:12:38 +0100417 - Remove computer vision support from CL backend
418 - Remove the following functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000419 - CLAbsoluteDifference
420 - CLAccumulate
421 - CLBox3x3
422 - CLCannyEdge
423 - CLChannelCombine
424 - CLChannelExtract
425 - CLColorConvert
426 - CLConvolution
427 - CLDerivative
428 - CLDilate
429 - CLEqualizeHistogram
430 - CLErode
431 - CLFastCorners
432 - CLGaussian3x3
433 - CLGaussian5x5
434 - CLGaussianPyramid
435 - CLHOGDescriptor
436 - CLHOGDetector
437 - CLHOGGradient
438 - CLHOGMultiDetection
439 - CLHarrisCorners
440 - CLHistogram
441 - CLIntegralImage
442 - CLLaplacianPyramid
443 - CLLaplacianReconstruct
444 - CLMagnitude
445 - CLMeanStdDev
446 - CLMedian3x3
447 - CLMinMaxLocation
448 - CLNonLinearFilter
449 - CLOpticalFlow
450 - CLPhase
451 - CLScharr3x3
452 - CLSobel3x3
453 - CLSobel5x5
454 - CLSobel7x7
455 - CLTableLookup
456 - CLThreshold
457 - CLWarpAffine
458 - CLWarpPerspective
Ramy Elgammal0d274b72022-08-05 13:14:57 +0100459
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000460v21.02 Public major release
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000461 - Various bug fixes.
462 - Various optimisations.
Georgios Pinitas45514032020-12-30 00:03:09 +0000463 - Upgrade C++ standard to C++14
464 - Add macOS support
Giorgio Arena1055dc12021-02-19 09:53:06 +0000465 - Add Armv8-R AArch64 architecture support
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000466 - Add SVE/SVE2 support for:
Manuel Bottini10b38262021-02-19 18:16:44 +0000467 - NEScaleKernel
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000468 - @ref NEActivationLayer
469 - @ref NEArithmeticAddition
470 - @ref NEBatchNormalizationLayerKernel
Gunes Bayirfadc9b12023-11-07 05:43:07 +0000471 - cpu::kernels::CpuLogits1DSoftmaxKernel
472 - cpu::kernels::CpuLogits1DMaxKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000473 - @ref cpu::kernels::CpuElementwiseUnaryKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000474 - Remove padding from OpenCL kernels:
Sheri Zhang1efed922021-03-10 22:43:38 +0000475 - CLDirectConvolutionLayerKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000476 - @ref CLArgMinMaxLayerKernel
477 - @ref CLPadLayerKernel
478 - @ref CLROIAlignLayerKernel
479 - @ref CLRangeKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000480 - CLScaleKernel
Sheri Zhangdda69142021-02-01 19:06:57 +0000481 - @ref CLSelectKernel
482 - @ref CLBitwiseKernel
Giorgio Arena1055dc12021-02-19 09:53:06 +0000483 - @ref opencl::kernels::ClFloorKernel
Teresa Charlin27886092021-02-25 20:15:01 +0000484 - CLTransposeKernel
Giorgio Arena5b50f422021-02-17 11:43:05 +0000485 - Deprecate functions in CLTuner:
486 - add_lws_to_table
487 - import_lws_table
488 - lws_table
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000489 - Remove functions:
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000490 - NELocallyConnectedLayer / CLLocallyConnectedLayer
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000491 - NEIm2Col
492 - NECol2Im
493 - NEGEMMInterleave4x4
494 - NEGEMMTranspose1xW
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +0000495 - NEComputeAllAnchors / CLComputeAllAnchors
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000496 - NEGEMMAssemblyDispatch
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000497 - NEUpsampleLayer / CLUpsampleLayer
Sheri Zhangda6a6eb2021-01-06 11:15:06 +0000498 - Remove kernels:
Georgios Pinitasd308df32020-12-01 16:56:36 +0000499 - NEGEMMMatrixVectorMultiplyKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000500 - NELocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedMatrixMultiplyKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000501 - NEUpsampleLayerKernel / CLUpsampleLayerKernel
Gian Marco Iodicef5aad512021-02-08 17:34:40 +0000502 - Extend OpenCL tuner with workgroup batch size support
503 - 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 +0000504 - Add functionality to load the OpenCL GEMM heuristics at runtime
505 - The GEMM heuristic file (MLGO) can be used to update the default GEMM heuristics available for OpenCL
Giorgio Arenacd7d1782021-02-22 14:58:37 +0000506 - 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 +0100507 - Note: data-type decoupling is in progress and experimental. Warning of unused symbols might be raised
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000508
SiCong Li96209c72020-08-21 12:28:30 +0100509v20.11 Public major release
morgolock70b1eb82020-11-24 13:54:19 +0000510 - Various bug fixes.
511 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000512 - 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 +0000513 This is planned to be resolved in 21.02 release.
morgolock70b1eb82020-11-24 13:54:19 +0000514 - Added new data type QASYMM8_SIGNED support for @ref NEROIAlignLayer.
SiCong Li903f8cc2020-08-27 10:17:10 +0100515 - Added new data type S32 support for:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000516 - NEArithmeticSubtraction
517 - NEArithmeticSubtractionKernel
SiCong Libb88f892020-08-28 11:18:47 +0100518 - @ref NEPixelWiseMultiplication
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000519 - NEPixelWiseMultiplicationKernel
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000520 - NEElementwiseDivision
521 - NEDivisionOperationKernel
SiCong Li96209c72020-08-21 12:28:30 +0100522 - Interface change
523 - Properly support softmax axis to have the same meaning as other major frameworks. That is, axis now defines the dimension
524 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.
525 The supported value range of axis is [-rank, rank).
526 This change applies to the following functions:
527 - @ref NESoftmaxLayer
528 - @ref NELogSoftmaxLayer
529 - @ref CLSoftmaxLayer
530 - @ref CLLogSoftmaxLayer
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000531 - GCSoftmaxLayer
Sheri Zhang824061d2020-10-26 15:46:37 +0000532 - New OpenCL kernels / functions:
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100533 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
morgolock0e728492020-11-20 11:03:33 +0000534 - @ref CLLogicalNot
535 - @ref CLLogicalAnd
536 - @ref CLLogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000537 - New Arm® Neon™ kernels / functions:
morgolock0e728492020-11-20 11:03:33 +0000538 - @ref NELogicalNot
539 - @ref NELogicalAnd
540 - @ref NELogicalOr
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000541 - Removed padding from Arm® Neon™ kernels:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000542 - NEComplexPixelWiseMultiplicationKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000543 - NENonMaximaSuppression3x3Kernel
Adnan AlSinan6863fa02022-02-04 13:04:55 +0000544 - NERemapKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100545 - NEGEMMInterleave4x4Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100546 - NEDirectConvolutionLayerKernel
Manuel Bottini10b38262021-02-19 18:16:44 +0000547 - NEScaleKernel
Georgios Pinitas96b16b62020-12-01 17:41:34 +0000548 - NELocallyConnectedMatrixMultiplyKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100549 - NEGEMMLowpOffsetContributionKernel
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100550 - NEGEMMTranspose1xWKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +0000551 - NEPoolingLayerKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +0000552 - NEConvolutionKernel
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100553 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100554 - NEGEMMLowpMatrixMultiplyKernel
Michele Di Giorgio53832b22021-06-21 14:45:44 +0100555 - NEGEMMMatrixMultiplyKernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100556 - NEDirectConvolutionLayerOutputStageKernel
Sheri Zhanged367132020-10-08 15:46:16 +0100557 - @ref NEReductionOperationKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100558 - NEGEMMLowpMatrixAReductionKernel
559 - NEGEMMLowpMatrixBReductionKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000560 - Removed padding from OpenCL kernels:
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000561 - CLBatchConcatenateLayerKernel
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000562 - CLElementwiseOperationKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000563 - @ref CLBatchNormalizationLayerKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000564 - CLPoolingLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100565 - CLWinogradInputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100566 - CLGEMMLowpMatrixMultiplyNativeKernel
567 - CLGEMMLowpMatrixAReductionKernel
568 - CLGEMMLowpMatrixBReductionKernel
569 - CLGEMMLowpOffsetContributionOutputStageKernel
570 - CLGEMMLowpOffsetContributionKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100571 - CLWinogradOutputTransformKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100572 - CLGEMMLowpMatrixMultiplyReshapedKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000573 - @ref CLFuseBatchNormalizationKernel
574 - @ref CLDepthwiseConvolutionLayerNativeKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100575 - CLDepthConvertLayerKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000576 - CLCopyKernel
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100577 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000578 - CLActivationLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100579 - CLWinogradFilterTransformKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000580 - CLWidthConcatenateLayerKernel
581 - CLWidthConcatenate4TensorsKernel
582 - CLWidthConcatenate2TensorsKernel
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000583 - CLLogits1DMaxShiftExpSumKernel
584 - CLLogits1DNormKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000585 - CLHeightConcatenateLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100586 - CLGEMMMatrixMultiplyKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100587 - CLGEMMLowpQuantizeDownInt32ScaleKernel
588 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
589 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000590 - CLDepthConcatenateLayerKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100591 - CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel
Sheri Zhang824061d2020-10-26 15:46:37 +0000592 - Removed OpenCL kernels / functions:
593 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
594 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel
595 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel
morgolock00c76012020-11-06 10:40:12 +0000596 - 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 +0100597 - CLLocallyConnectedLayer
598 - CLLocallyConnectedMatrixMultiplyKernel
morgolock00c76012020-11-06 10:40:12 +0000599 - CLAbsoluteDifference
600 - CLAbsoluteDifferenceKernel
601 - CLAccumulate
602 - CLAccumulateKernel
603 - CLAccumulateSquared
604 - CLAccumulateSquaredKernel
605 - CLAccumulateWeighted
606 - CLAccumulateWeightedKernel
607 - CLAccumulateWeightedFP16Kernel
608 - CLBox3x3
609 - CLBox3x3Kernel
610 - CLBox3x3FP16Kernel
611 - CLCannyEdge
612 - CLChannelCombine
613 - CLChannelCombineKernel
614 - CLChannelExtract
615 - CLChannelExtractKernel
616 - CLColorConvert
617 - CLColorConvertKernel
618 - CLConvolution3x3
619 - CLConvolutionRectangle
620 - CLConvolutionRectangleKernel
621 - CLConvolutionSquare
622 - CLConvolutionKernel
623 - CLDerivative
624 - CLDerivativeKernel
625 - CLDilate
626 - CLDilateKernel
627 - CLEqualizeHistogram
628 - CLErode
629 - CLErodeKernel
630 - CLFastCorners
631 - CLFastCornersKernel
632 - CLGaussian3x3
633 - CLGaussian3x3Kernel
634 - CLGaussian5x5
635 - CLGaussian5x5HorKernel
636 - CLGaussian5x5VertKernel
637 - CLGaussianPyramid
638 - CLGaussianPyramidHalf
639 - CLGaussianPyramidOrb
640 - CLHarrisCorners
641 - CLHarrisScoreKernel
642 - CLHarrisScoreFP16Kernel
643 - CLHistogram
644 - CLHistogramKernel
645 - CLHOGOrientationBinningKernel
646 - CLHOGBlockNormalizationKernel
647 - CLHOGDetectorKernel
648 - CLHOGNonMaximaSuppressionKernel
649 - CLHOGDescriptor
650 - CLHOGDetector
651 - CLHOGGradient
652 - CLHOGMultiDetection
653 - CLHOGOrientationBinningKernel
654 - CLHOGBlockNormalizationKernel
655 - CLHOGDetectorKernel
656 - CLIntegralImage
657 - CLIntegralImageKernel
658 - CLLaplacianReconstruct
659 - CLLaplacianPyramid
660 - CLMagnitude
661 - CLMagnitudePhaseKernel
662 - CLMedian3x3
663 - CLMedian3x3Kernel
664 - CLMinMaxLocation
665 - CLMinMaxLocationKernel
666 - CLNonLinearFilter
667 - CLNonLinearFilterKernel
668 - CLNonMaximaSuppression3x3
669 - CLNonMaximaSuppression3x3FP16Kernel
670 - CLNonMaximaSuppression3x3Kernel
671 - CLOpticalFlow
672 - CLPhase
673 - CLRemap
674 - CLRemapKernel
675 - CLScharr3x3
676 - CLScharr3x3Kernel
677 - CLSobel3x3
678 - CLSobel3x3Kernel
679 - CLSobel5x5
680 - CLSobel5x5HorKernel
681 - CLSobel5x5VertKernel
682 - CLSobel7x7
683 - CLSobel7x7HorKernel
684 - CLSobel7x7VertKernel
685 - CLThreshold
686 - CLThresholdKernel
687 - CLWarpAffine
688 - CLWarpAffineKernel
689 - CLWarpPerspective
690 - CLWarpPerspectiveKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000691 - 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 +0100692 - NELocallyConnectedLayer
693 - NELocallyConnectedMatrixMultiplyKernel
morgolock0c862652020-11-06 08:59:45 +0000694 - NEAbsoluteDifference
695 - NEAbsoluteDifferenceKernel
696 - NEAccumulate
697 - NEAccumulateKernel
698 - NEAccumulateSquared
699 - NEAccumulateSquaredKernel
700 - NEAccumulateWeighted
701 - NEAccumulateWeightedKernel
702 - NEAccumulateWeightedFP16Kernel
703 - NEBox3x3
704 - NEBox3x3Kernel
705 - NEBox3x3FP16Kernel
706 - NECannyEdge
707 - NEChannelCombine
708 - NEChannelCombineKernel
709 - NEChannelExtract
710 - NEChannelExtractKernel
711 - NEColorConvert
712 - NEColorConvertKernel
713 - NEConvolution3x3
714 - NEConvolutionRectangle
715 - NEConvolutionRectangleKernel
716 - NEConvolutionSquare
717 - NEConvolutionKernel
718 - NEDerivative
719 - NEDerivativeKernel
720 - NEDilate
721 - NEDilateKernel
722 - NEEqualizeHistogram
723 - NEErode
724 - NEErodeKernel
725 - NEFastCorners
726 - NEFastCornersKernel
727 - NEGaussian3x3
728 - NEGaussian3x3Kernel
729 - NEGaussian5x5
730 - NEGaussian5x5HorKernel
731 - NEGaussian5x5VertKernel
732 - NEGaussianPyramid
733 - NEGaussianPyramidHalf
734 - NEGaussianPyramidOrb
735 - NEHarrisCorners
736 - NEHarrisScoreKernel
737 - NEHarrisScoreFP16Kernel
738 - NEHistogram
739 - NEHistogramKernel
740 - NEHOGOrientationBinningKernel
741 - NEHOGBlockNormalizationKernel
742 - NEHOGDetectorKernel
743 - NEHOGNonMaximaSuppressionKernel
744 - NEHOGDescriptor
745 - NEHOGDetector
746 - NEHOGGradient
747 - NEHOGMultiDetection
748 - NEHOGOrientationBinningKernel
749 - NEHOGBlockNormalizationKernel
750 - NEHOGDetectorKernel
751 - NEIntegralImage
752 - NEIntegralImageKernel
753 - NELaplacianReconstruct
754 - NELaplacianPyramid
755 - NEMagnitude
756 - NEMagnitudePhaseKernel
757 - NEMedian3x3
758 - NEMedian3x3Kernel
759 - NEMinMaxLocation
760 - NEMinMaxLocationKernel
761 - NENonLinearFilter
762 - NENonLinearFilterKernel
763 - NENonMaximaSuppression3x3
764 - NENonMaximaSuppression3x3FP16Kernel
765 - NENonMaximaSuppression3x3Kernel
766 - NEOpticalFlow
767 - NEPhase
768 - NERemap
769 - NERemapKernel
770 - NEScharr3x3
771 - NEScharr3x3Kernel
772 - NESobel3x3
773 - NESobel3x3Kernel
774 - NESobel5x5
775 - NESobel5x5HorKernel
776 - NESobel5x5VertKernel
777 - NESobel7x7
778 - NESobel7x7HorKernel
779 - NESobel7x7VertKernel
780 - NEThreshold
781 - NEThresholdKernel
782 - NEWarpAffine
783 - NEWarpAffineKernel
784 - NEWarpPerspective
785 - NEWarpPerspectiveKernel
morgolockd6ee9ed2020-11-19 10:07:14 +0000786 - Deprecated GLES kernels / functions (If a kernel is used only by the function that is being deprecated, the kernel is deprecated together):
787 - GCAbsoluteDifference
788 - GCActivationLayer
789 - GCArithmeticAddition
790 - GCBatchNormalizationLayer
791 - GCConcatenateLayer
792 - GCConvolutionLayer
793 - GCDepthwiseConvolutionLayer
794 - GCDirectConvolutionLayer
795 - GCDropoutLayer
796 - GCFillBorder
797 - GCFullyConnectedLayer
798 - GCGEMM
799 - GCGEMMInterleave4x4
800 - GCGEMMTranspose1xW
801 - GCNormalizationLayer
802 - GCNormalizePlanarYUVLayer
803 - GCPixelWiseMultiplication
804 - GCPoolingLayer
805 - GCScale
806 - GCSoftmaxLayer
807 - GCTensorShift
808 - GCTranspose
809
SiCong Li96209c72020-08-21 12:28:30 +0100810
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100811v20.08 Public major release
812 - Various bug fixes.
813 - Various optimisations.
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100814 - Added new data type QASYMM8_SIGNED support for:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100815 - @ref CLArgMinMaxLayer
816 - @ref CLArgMinMaxLayerKernel
817 - Added new data type U8 support for:
818 - @ref NECropKernel
Sheri Zhang7e20e292021-02-02 11:49:34 +0000819 - CLCropKernel
Jakub Sujakee301b32021-06-04 09:46:08 +0100820 - Added align_corner support for nearest neighbor interpolation in:
Manuel Bottini10b38262021-02-19 18:16:44 +0000821 - NEScaleKernel
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000822 - CLScaleKernel
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100823 - New OpenCL kernels / functions:
824 - @ref CLMaxUnpoolingLayerKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000825 - New Arm® Neon™ kernels / functions:
Dana Zlotnik149203b2022-01-26 12:38:03 +0200826 - NEMaxUnpoolingLayerKernel
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100827 - New graph example:
Sheri Zhangdd4cfc02020-07-10 14:15:41 +0100828 - graph_yolov3_output_detector
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100829 - GEMMTuner improvements:
830 - Added fp16 support
831 - Output json files for easier integration
832 - Enabled tuning for export_to_cl_image_rhs option for RHS tensors
833 - More robust script for running benchmarks
Sheri Zhang3ef9b5f2020-07-09 16:32:58 +0100834 - Removed padding from:
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000835 - NEPixelWiseMultiplicationKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000836 - NEHeightConcatenateLayerKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +0000837 - NEThresholdKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000838 - NEBatchConcatenateLayerKernel
Teresa Charlind1dc09c2021-03-04 15:24:45 +0000839 - NETransposeKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100840 - @ref NEBatchNormalizationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000841 - NEArithmeticSubtractionKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100842 - @ref NEBoundingBoxTransformKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +0000843 - NELogits1DMaxKernel
844 - NELogits1DSoftmaxKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100845 - @ref NEROIPoolingLayerKernel
846 - @ref NEROIAlignLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +0000847 - NEYOLOLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000848 - NEUpsampleLayerKernel
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000849 - NEFloorKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000850 - NEWidthConcatenateLayerKernel
851 - NEDepthConcatenateLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100852 - @ref NENormalizationLayerKernel
853 - @ref NEL2NormalizeLayerKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +0100854 - NEFillArrayKernel
Georgios Pinitas11d84152021-04-28 10:20:18 +0100855 - NEDepthConvertLayerKernel
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100856 - @ref NERangeKernel
857 - @ref NEPriorBoxLayer
Sheri Zhanged367132020-10-08 15:46:16 +0100858 - Removed OpenCL kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100859 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
860 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000861 - Removed Arm® Neon™ kernels / functions:
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100862 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
863 - NEGEMMMatrixAccumulateBiasesKernel
SiCong Lid004a7a2020-05-28 15:26:41 +0100864 - Deprecated functions / interfaces:
Michalis Spyrou473cb012021-02-23 11:48:12 +0000865 - Non-descriptor based interfaces for NEThreshold, CLThreshold
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000866 - Non-descriptor based interfaces for @ref NEScale, @ref CLScale and GCScale
867 - In @ref NESoftmaxLayer, @ref NELogSoftmaxLayer, @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer :
868 The default "axis" value for @ref CLSoftmaxLayer, @ref CLLogSoftmaxLayer and GCSoftmaxLayer is changed from 1 to 0.
morgolock9c7fed82020-08-05 12:30:56 +0100869 Only axis 0 is supported.
870 The default "axis" value for @ref NESoftmaxLayer, @ref NELogSoftmaxLayer is changed from 1 to 0.
Sang-Hoon Parkadfaefb2020-08-18 09:13:05 +0100871 Only axis 0 is supported.
Sang-Hoon Parka0205b92020-07-07 09:36:09 +0100872 - The support for quantized data types has been removed from @ref CLLogSoftmaxLayer due to implementation complexity.
Manuel Bottinid844c082021-07-14 12:58:54 +0100873 - 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 +0100874 - This change allows to use @ref CLGEMMConvolutionLayer without extra padding for the input and output.
875 - Only the weights/bias of @ref CLGEMMConvolutionLayer could require padding for the computation.
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100876 - Only on Arm® Mali™ Midgard GPUs, @ref CLGEMMConvolutionLayer could require padding since CLGEMMMatrixMultiplyKernel is called and currently requires padding.
877 - 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 +0100878 - 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 +0100879 - The padding requirement for the OpenCL image object is considered into the CLGEMMReshapeRHSMatrixKernel.
880 - The reshaped RHS matrix stores the weights when GEMM is used to accelerate CLGEMMConvolutionLayer.
Georgios Pinitas25ef7212020-06-02 23:00:41 +0100881
Georgios Pinitasfd7780d2020-03-17 11:41:00 +0000882v20.05 Public major release
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000883 - Various bug fixes.
884 - Various optimisations.
Michele Di Giorgio36a551f2020-04-23 11:55:29 +0100885 - Updated recommended NDK version to r18b.
886 - Updated recommended gcc version to Linaro 6.3.1.
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000887 - Added Bfloat16 type support
888 - Added Bfloat16 support in:
Manuel Bottini29599d02021-07-06 15:01:35 +0100889 - NEWeightsReshapeKernel
890 - NEConvolutionLayerReshapeWeights
Manuel Bottini90028992021-06-30 18:29:18 +0100891 - NEIm2ColKernel
Georgios Pinitasf7c5a412020-12-03 14:38:33 +0000892 - NEIm2Col
Georgios Pinitas11d84152021-04-28 10:20:18 +0100893 - NEDepthConvertLayerKernel
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000894 - @ref NEDepthConvertLayer
895 - @ref NEGEMMConvolutionLayer
Georgios Pinitasec2256b2020-12-03 18:51:58 +0000896 - NEGEMMAssemblyDispatch
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000897 - Added new data type QASYMM8_SIGNED support for:
898 - @ref CLDirectConvolutionLayer
899 - @ref CLDeconvolutionLayer
900 - @ref CLDirectDeconvolutionLayer
901 - @ref CLGEMMDeconvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100902 - CLGEMMLowpMatrixMultiplyReshapedKernel
903 - CLGEMMLowpQuantizeDownInt32ScaleKernel
904 - CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000905 - @ref CLReductionOperation
906 - @ref CLReduceMean
Sheri Zhang359c48e2020-04-30 22:53:39 +0100907 - @ref NEScale
Manuel Bottini10b38262021-02-19 18:16:44 +0000908 - NEScaleKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +0000909 - NEUpsampleLayer
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000910 - @ref NECast
911 - @ref NEReductionOperation
912 - @ref NEReduceMean
913 - @ref NEArgMinMaxLayer
914 - @ref NEDeconvolutionLayer
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100915 - NEGEMMLowpQuantizeDownInt32ScaleKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000916 - @ref CPPBoxWithNonMaximaSuppressionLimit
917 - @ref CPPDetectionPostProcessLayer
918 - @ref CPPPermuteKernel
919 - @ref CPPPermute
920 - @ref CPPTopKVKernel
921 - @ref CPPTopKV
Sheri Zhang359c48e2020-04-30 22:53:39 +0100922 - @ref CPPUpsample
923 - @ref CPPUpsampleKernel
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100924 - New OpenCL kernels / functions:
925 - @ref CLQLSTMLayer
926 - @ref CLQLSTMLayerNormalizationKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000927 - New Arm® Neon™ kernels / functions:
Sheri Zhang31b49ca2020-04-24 11:15:10 +0100928 - @ref NEQLSTMLayer
929 - @ref NEQLSTMLayerNormalizationKernel
930 - Added HARD_SWISH support in:
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000931 - CLActivationLayerKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +0000932 - NEActivationLayerKernel
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000933 - Deprecated OpenCL kernels / functions:
934 - CLGEMMLowpQuantizeDownInt32ToUint8Scale
935 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000936 - Deprecated Arm® Neon™ kernels / functions:
Sheri Zhang0f2522b2020-03-25 16:38:19 +0000937 - NEGEMMLowpQuantizeDownInt32ToUint8Scale
938 - Removed CPP kernels / functions:
939 - CPPFlipWeightsKernel
Manuel Bottini387259a2020-05-21 17:14:36 +0100940 - Removed PoolingLayerInfo constructors without Data Layout.
941 - Removed CLDepthwiseConvolutionLayer3x3
942 - Removed NEDepthwiseConvolutionLayerOptimized
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000943 - Added support for Winograd 3x3,4x4 on Arm® Neon™ FP16:
Manuel Bottini075253a2020-05-22 12:57:18 +0100944 - @ref NEWinogradConvolutionLayer
Michalis Spyrou96f977e2021-07-01 12:20:56 +0100945 - CpuWinogradConv2dTransformInputKernel
946 - CpuWinogradConv2dTransformOutputKernel
947 - CpuWinogradConv2dTransformWeightsKernel
Manuel Bottini075253a2020-05-22 12:57:18 +0100948 - Added CLCompileContext
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000949 - Added Arm® Neon™ GEMM kernel with 2D window support
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000950
Michele Di Giorgio740872e2020-03-04 15:29:49 +0000951v20.02.1 Maintenance release
952 - Added Android-NN build script.
953
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000954v20.02 Public major release
955 - Various bug fixes.
956 - Various optimisations.
957 - Added new data type QASYMM8_SIGNED support for:
958 - @ref CLDepthwiseConvolutionLayer
Manuel Bottini387259a2020-05-21 17:14:36 +0100959 - CLDepthwiseConvolutionLayer3x3
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000960 - @ref CLGEMMConvolutionLayer
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100961 - CLGEMMLowpMatrixMultiplyCore
962 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
963 - CLGEMMLowpMatrixMultiplyNativeKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000964 - @ref NEActivationLayer
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000965 - NEComparisonOperationKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000966 - @ref NEConvolutionLayer
967 - @ref NEDepthwiseConvolutionLayer
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100968 - NEDepthwiseConvolutionLayer3x3Kernel
Manuel Bottini327225d2021-04-13 13:09:30 +0100969 - NEDirectConvolutionLayerOutputStageKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000970 - @ref NEElementwiseComparison
971 - @ref NEElementwiseMax
972 - @ref NEElementwiseMin
973 - @ref NEElementwiseSquaredDiff
974 - @ref NEFullyConnectedLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +0100975 - NEGEMMMatrixVectorMultiplyKernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000976 - @ref NEPixelWiseMultiplication
977 - @ref NEPoolingLayer
978 - @ref NEPReluLayer
979 - Added support for QSYMM8_PER_CHANNEL in:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +0100980 - NEDepthwiseConvolutionLayer3x3Kernel
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000981 - Added support for split sizes in:
982 - @ref CLSplit
983 - @ref NESplit
984 - New OpenCL kernels / functions:
985 - @ref CLFill
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100986 - CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000987 - New Arm® Neon™ kernels / functions:
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000988 - @ref NEFill
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100989 - NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000990 - Deprecated Arm® Neon™ functions / interfaces:
Manuel Bottini387259a2020-05-21 17:14:36 +0100991 - CLDepthwiseConvolutionLayer3x3
992 - NEDepthwiseConvolutionLayerOptimized
993 - PoolingLayerInfo constructors without Data Layout.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000994 - Added support for quantization with multiplier greater than 1 on Arm® Neon™ and CL.
Giuseppe Rossinif04ddbc2020-02-17 17:22:49 +0000995 - Added support for quantized inputs of type QASYMM8_SIGNED and QASYMM8 to @ref CLQuantizationLayer.
996 - Added the ability to build bootcode for bare metal.
997 - Added support for generating synthetic QASYMM8 graphs.
998 - Added support for F16 datatype in VGG16.
999 - Removed pre-built binaries for GLES.
1000
Michele Di Giorgiod374ff22020-01-21 10:03:20 +00001001v19.11.1 Public maintenance release
1002 - Fix offset calculation in NEReductionOperationKernel.
1003 - Fix data layout in NEScaleKernel for nhwc.
1004 - Retain configuration step data layout to avoid side-effects.
1005 - Perform sqrt in double domain for L2 pooling.
1006 - Fix output shape calculation for Reduce Mean
1007 - Restrict cases where optimized NEPadLayer runs.
1008
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001009v19.11 Public major release
SiCong Lica1f98c2019-11-28 11:06:11 +00001010 - Various bug fixes.
1011 - Various optimisations.
SiCong Li1f7f9882019-11-28 14:59:35 +00001012 - Updated recommended NDK version to r17c.
SiCong Lica1f98c2019-11-28 11:06:11 +00001013 - Deprecated OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001014 - CLDepthwiseConvolutionLayerReshapeWeightsGenericKernel
1015 - CLDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +00001016 - CLDepthwiseSeparableConvolutionLayer
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001017 - CLDepthwiseVectorToTensorKernel
1018 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001019 - Deprecated Arm® Neon™ kernels / functions:
Giorgio Arenad93e2632019-10-15 11:09:33 +01001020 - NEDepthwiseWeightsReshapeKernel
1021 - NEDepthwiseIm2ColKernel
SiCong Lica1f98c2019-11-28 11:06:11 +00001022 - NEDepthwiseSeparableConvolutionLayer
Giorgio Arenad93e2632019-10-15 11:09:33 +01001023 - NEDepthwiseVectorToTensorKernel
Manuel Bottini05069f02019-09-26 17:18:26 +01001024 - NEDepthwiseConvolutionLayer3x3
SiCong Lica1f98c2019-11-28 11:06:11 +00001025 - New OpenCL kernels / functions:
1026 - @ref CLInstanceNormalizationLayerKernel / @ref CLInstanceNormalizationLayer
1027 - @ref CLDepthwiseConvolutionLayerNativeKernel to replace the old generic depthwise convolution (see Deprecated
1028 OpenCL kernels / functions)
1029 - @ref CLLogSoftmaxLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001030 - New Arm® Neon™ kernels / functions:
SiCong Lica1f98c2019-11-28 11:06:11 +00001031 - @ref NEBoundingBoxTransformKernel / @ref NEBoundingBoxTransform
Georgios Pinitas8c3c0e72020-12-03 20:11:53 +00001032 - @ref NEComputeAllAnchorsKernel / NEComputeAllAnchors
SiCong Lica1f98c2019-11-28 11:06:11 +00001033 - @ref NEDetectionPostProcessLayer
1034 - @ref NEGenerateProposalsLayer
1035 - @ref NEInstanceNormalizationLayerKernel / @ref NEInstanceNormalizationLayer
1036 - @ref NELogSoftmaxLayer
1037 - @ref NEROIAlignLayerKernel / @ref NEROIAlignLayer
1038 - Added QASYMM8 support for:
1039 - @ref CLGenerateProposalsLayer
1040 - @ref CLROIAlignLayer
1041 - @ref CPPBoxWithNonMaximaSuppressionLimit
1042 - Added QASYMM16 support for:
1043 - @ref CLBoundingBoxTransform
1044 - Added FP16 support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001045 - CLGEMMMatrixMultiplyReshapedKernel
SiCong Lica1f98c2019-11-28 11:06:11 +00001046 - Added new data type QASYMM8_PER_CHANNEL support for:
Manuel Bottini9e73c932021-03-02 17:40:42 +00001047 - CLDequantizationLayer
SiCong Lica1f98c2019-11-28 11:06:11 +00001048 - @ref NEDequantizationLayer
1049 - Added new data type QSYMM8_PER_CHANNEL support for:
1050 - @ref CLConvolutionLayer
1051 - @ref NEConvolutionLayer
1052 - @ref CLDepthwiseConvolutionLayer
1053 - @ref NEDepthwiseConvolutionLayer
1054 - Added FP16 mixed-precision support for:
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001055 - CLGEMMMatrixMultiplyReshapedKernel
Michele Di Giorgioe1314662021-02-01 17:09:32 +00001056 - CLPoolingLayerKernel
SiCong Lica1f98c2019-11-28 11:06:11 +00001057 - Added FP32 and FP16 ELU activation for:
1058 - @ref CLActivationLayer
1059 - @ref NEActivationLayer
1060 - Added asymmetric padding support for:
1061 - @ref CLDirectDeconvolutionLayer
1062 - @ref CLGEMMDeconvolutionLayer
1063 - @ref NEDeconvolutionLayer
1064 - Added SYMMETRIC and REFLECT modes for @ref CLPadLayerKernel / @ref CLPadLayer.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001065 - Replaced the calls to NECopyKernel and NEMemsetKernel with @ref NEPadLayer in @ref NEGenerateProposalsLayer.
1066 - Replaced the calls to CLCopyKernel and CLMemsetKernel with @ref CLPadLayer in @ref CLGenerateProposalsLayer.
SiCong Lica1f98c2019-11-28 11:06:11 +00001067 - Improved performance for CL Inception V3 - FP16.
1068 - Improved accuracy for CL Inception V3 - FP16 by enabling FP32 accumulator (mixed-precision).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001069 - Improved Arm® Neon™ performance by enabling fusing batch normalization with convolution and depth-wise convolution layer.
1070 - Improved Arm® Neon™ performance for MobileNet-SSD by improving the output detection performance.
SiCong Lica1f98c2019-11-28 11:06:11 +00001071 - Optimized @ref CLPadLayer.
1072 - Optimized CL generic depthwise convolution layer by introducing @ref CLDepthwiseConvolutionLayerNativeKernel.
1073 - Reduced memory consumption by implementing weights sharing.
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001074
Michele Di Giorgiod374ff22020-01-21 10:03:20 +00001075v19.08.1 Public maintenance release
1076 - Fix offset calculation in NEReductionOperationKernel.
1077 - Fix data layout in NEScaleKernel for nhwc.
1078 - Retain configuration step data layout to avoid side-effects.
1079 - Perform sqrt in double domain for L2 pooling.
1080 - Fix output shape calculation for Reduce Mean
1081 - Fix broadcast CLPixelwiseMultiplication with 5D tensors
1082
Georgios Pinitas3d13af82019-06-04 13:04:16 +01001083v19.08 Public major release
1084 - Various bug fixes.
1085 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001086 - Deprecated Arm® Neon™ functions
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001087 - NEDepthConcatenateLayer
1088 - NEWidthConcatenateLayer
1089 - Deprecated OpenCL kernels / functions
1090 - CLDepthConcatenateLayer
1091 - CLGEMMInterleave4x4Kernel / CLGEMMInterleave4x4
1092 - CLGEMMTranspose1xWKernel / CLGEMMTranspose1xW
1093 - CLWidthConcatenateLayer
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001094 - New Arm® Neon™ kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001095 - @ref NEAbsLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001096 - @ref NECast
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001097 - @ref NEElementwisePower
1098 - @ref NELogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001099 - @ref NELSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001100 - @ref NENegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001101 - @ref NEPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001102 - @ref NESinLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001103 - NEBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001104 - @ref NEDepthToSpaceLayerKernel / @ref NEDepthToSpaceLayer
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01001105 - NEDepthwiseConvolutionLayerNativeKernel
Manuel Bottiniae58bdf2021-06-17 17:18:45 +01001106 - NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001107 - @ref NEMeanStdDevNormalizationKernel / @ref NEMeanStdDevNormalizationLayer
1108 - @ref NESpaceToDepthLayerKernel / @ref NESpaceToDepthLayer
1109 - New OpenCL kernels / functions:
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001110 - @ref CLAbsLayer
1111 - @ref CLElementwisePower
1112 - @ref CLLogLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001113 - @ref CLLSTMLayerQuantized
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001114 - @ref CLNegLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001115 - @ref CLPReluLayer
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001116 - @ref CLSinLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001117 - CLBatchConcatenateLayerKernel
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001118 - @ref CLDepthToSpaceLayerKernel / @ref CLDepthToSpaceLayer
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001119 - CLGEMMLowpMatrixMultiplyNativeKernel
Michele Di Giorgioba14c922020-10-12 13:27:57 +01001120 - CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001121 - CLGEMMMatrixMultiplyNativeKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001122 - CLMeanStdDevNormalizationKernel /CLMeanStdDevNormalizationLayer
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001123 - @ref CLSpaceToDepthLayerKernel / @ref CLSpaceToDepthLayer
1124 - New examples:
1125 - neon_opticalflow
1126 - cl_cache
1127 - neon_permute
Gian Marco Iodicec5f48ad2019-09-02 09:52:12 +01001128 - Added support for FP16 in @ref NEDeconvolutionLayer
1129 - Added support for FP16 in @ref CLDeconvolutionLayer
1130 - Added support for REDUCE_MIN and REDUCE_MAX in @ref ReductionOperation
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001131 - Enable the fusion of batch normalization with convolution and depthwise convolution layer for FP32 in the graph API (OpenCL only)
1132 - 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 +00001133 - Re-factored the depthwise convolution layer kernel on Arm® Neon™ for generic cases
Jakub Sujakee301b32021-06-04 09:46:08 +01001134 - Added an optimized depthwise convolution layer kernel for 5x5 filters (Neon™ only)
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001135 - Added support to enable OpenCL kernel cache. Added example showing how to load the prebuilt OpenCL kernels from a binary cache file
1136 - Altered @ref QuantizationInfo interface to support per-channel quantization.
Manuel Bottini387259a2020-05-21 17:14:36 +01001137 - The CLDepthwiseConvolutionLayer3x3 will be included by @ref CLDepthwiseConvolutionLayer to accommodate for future optimizations.
1138 - The NEDepthwiseConvolutionLayerOptimized will be included by @ref NEDepthwiseConvolutionLayer to accommodate for future optimizations.
Gian Marco Iodicecc2f54b2019-08-22 10:10:52 +01001139 - Removed inner_border_right and inner_border_top parameters from @ref CLDeconvolutionLayer interface
1140 - Removed inner_border_right and inner_border_top parameters from @ref NEDeconvolutionLayer interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001141 - 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 +01001142
Michalis Spyroua9c44722019-04-05 17:18:36 +01001143v19.05 Public major release
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001144 - Various bug fixes.
1145 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001146 - New Arm® Neon™ kernels / functions:
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001147 - @ref NEBatchToSpaceLayerKernel / @ref NEBatchToSpaceLayer
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001148 - NEComplexPixelWiseMultiplicationKernel / @ref NEComplexPixelWiseMultiplication
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001149 - @ref NECropKernel / @ref NECropResize
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +01001150 - NEDepthwiseConvolutionAssemblyDispatch
Michalis Spyrouca82e622019-05-10 16:43:20 +01001151 - @ref NEFFTDigitReverseKernel
1152 - @ref NEFFTRadixStageKernel
1153 - @ref NEFFTScaleKernel
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001154 - NEGEMMLowpOffsetContributionOutputStageKernel
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001155 - NEHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001156 - @ref NESpaceToBatchLayerKernel / @ref NESpaceToBatchLayer
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001157 - @ref NEFFT1D
1158 - @ref NEFFT2D
1159 - @ref NEFFTConvolutionLayer
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001160 - New OpenCL kernels / functions:
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001161 - CLComplexPixelWiseMultiplicationKernel / @ref CLComplexPixelWiseMultiplication
Sheri Zhang7e20e292021-02-02 11:49:34 +00001162 - CLCropKernel / @ref CLCropResize
Michalis Spyroud7dd15c2019-05-30 14:53:58 +01001163 - @ref CLDeconvolutionReshapeOutputKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001164 - @ref CLFFTDigitReverseKernel
1165 - @ref CLFFTRadixStageKernel
1166 - @ref CLFFTScaleKernel
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001167 - CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001168 - CLGEMMMatrixMultiplyReshapedOnlyRHSKernel
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001169 - CLHeightConcatenateLayerKernel
Georgios Pinitasf790fdb2019-04-24 12:41:25 +01001170 - @ref CLDirectDeconvolutionLayer
1171 - @ref CLFFT1D
1172 - @ref CLFFT2D
1173 - @ref CLFFTConvolutionLayer
Michalis Spyrouca82e622019-05-10 16:43:20 +01001174 - @ref CLGEMMDeconvolutionLayer
1175 - New OpenGLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001176 - GCConcatenateLayer
Michalis Spyroua9c44722019-04-05 17:18:36 +01001177 - Deprecated functions/interfaces
Georgios Pinitas09f24972019-05-17 18:14:40 +01001178 - GCDepthConcatenateLayer
1179 - NEWidthConcatenateLayer
1180 - NEDepthConcatenateLayer
1181 - CLWidthConcatenateLayer
1182 - CLDepthConcatenateLayer
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001183 - CLGEMMInterleave4x4
1184 - CLGEMMTranspose1xW
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001185 - Support different quantization info in CLConcatLayer.
1186 - Add checks on different input/output quantization info were not supported.
1187 - Tensors have different quantization information.
1188 - Add FP16 support checks.
1189 - Fix output quantization CLDeptwiseConv3x3 when activation is fused.
1190 - New graph examples:
1191 - graph_convolution
1192 - graph_fully_connected
1193 - graph_depthwise_convolution
1194 - Deepspeech v0.4.1
1195 - Add support for QASYMM8 in NEArithmeticSubtractionKernel.
1196 - Add support for QASYMM8 in NEPixelWiseMultiplicationKernel.
1197 - Add support for QASYMM8 NEDeconvolution.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001198 - Add support for DequantizationLayer for Neon/CL.
Michalis Spyrouc6608ac2019-05-16 17:40:23 +01001199 - Add support for dilation in CLDepthwiseConvolution.
1200 - Fuse offset contribution with the output stage when we use NEGEMMLowpMatrixMultiplyCore.
1201 - Optimize CLDeconvolution.
1202 - Add StackLayer to the graph API.
1203 - Add support for "reflect" padding mode in NEPad.
1204 - Winograd 7x7 NHWC on OpenCL.
1205 - Rework CL ML layers to run exclusively on CL.
1206 - Support different quantization info in PoolingLayer.
1207 - Implement and test import memory interfaces.
1208 - Added new tests and removed old ones.
1209 - Various clang-tidy fixes.
Michalis Spyroua9c44722019-04-05 17:18:36 +01001210
giuros01a69a88b2019-01-31 16:29:19 +00001211v19.02 Public major release
Isabella Gottardi62538972019-02-12 19:52:44 +00001212 - Various bug fixes.
1213 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001214 - New Arm® Neon™ kernels / functions:
Isabella Gottardi62538972019-02-12 19:52:44 +00001215 - @ref NETileKernel / @ref NETile
1216 - @ref NEFuseBatchNormalizationKernel / @ref NEFuseBatchNormalization
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001217 - NEElementwiseOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001218 - @ref NEElementwiseMax
1219 - @ref NEElementwiseMin
1220 - @ref NEElementwiseSquaredDiff
1221 - @ref NESelectKernel / @ref NESelect
1222 - @ref NESplit
1223 - @ref NESlice
1224 - @ref NEUnstack
1225 - @ref NEStridedSliceKernel / @ref NEStridedSlice
Sang-Hoon Park7249f152021-01-22 11:55:03 +00001226 - NEElementwiseUnaryKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001227 - @ref NERsqrtLayer
1228 - @ref NEExpLayer
1229 - @ref NEReverseKernel / @ref NEReverse
1230 - @ref NEArgMinMaxLayer
1231 - @ref NEStackLayerKernel / @ref NEStackLayer
1232 - @ref NERangeKernel / @ref NERange
1233 - @ref NEPadLayer
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001234 - NEMemsetKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001235 - @ref NEGatherKernel / @ref NEGather
1236 - @ref NEElementwiseComparison
1237 - @ref NEElementwiseComparisonStatic
Sang-Hoon Park63001ac2021-01-18 14:20:27 +00001238 - NEComparisonOperationKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001239 - @ref NEElementwiseDivision
1240 - New OpenCL kernels / functions:
1241 - @ref CLSelectKernel / @ref CLSelect
1242 - @ref CLTileKernel / @ref CLTile
1243 - @ref CLComparisonKernel / @ref CLComparison
1244 - @ref CLArgMinMaxLayer
1245 - @ref CLElementwiseMax
1246 - @ref CLElementwiseMin
1247 - @ref CLElementwiseSquaredDiff
1248 - @ref CLStackLayerKernel / @ref CLStackLayer
1249 - @ref CLReverse / @ref CLReverseKernel
1250 - @ref CLRsqrtLayer
1251 - @ref CLExpLayer
Michele Di Giorgioc9c89052021-01-26 10:20:17 +00001252 - CLElementWiseUnaryLayerKernel
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001253 - CLGEMMReshapeLHSMatrixKernel
1254 - CLGEMMReshapeRHSMatrixKernel
1255 - CLGEMMMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001256 - @ref CLRangeKernel / @ref CLRange
1257 - @ref CLUnstack
1258 - @ref CLGatherKernel / @ref CLGather
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001259 - CLGEMMLowpMatrixMultiplyReshapedKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001260 - New CPP kernels / functions:
1261 - @ref CPPDetectionOutputLayer
1262 - @ref CPPTopKV / @ref CPPTopKVKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001263 - Added new examples:
1264 - graph_ssd_mobilenet.cpp
1265 - graph_mobilenet_v2.cpp
1266 - graph_resnet12.cpp
1267 - graph_srcnn955.cpp
1268 - graph_vgg_vdsr.cpp
1269 - graph_inception_resnet_v1.cpp
1270 - Add 4D tensors support to
1271 - @ref NESoftmaxLayer
1272 - Fused activation in @ref CLWinogradConvolutionLayer
Jakub Sujakee301b32021-06-04 09:46:08 +01001273 - Extended @ref NEPermute to support more cases
1274 - Added Neon™/SVE GEMM Hybrid kernels
Isabella Gottardi62538972019-02-12 19:52:44 +00001275 - Added u8 and s8 hybrid assembly kernels
1276 - Introduced GEMM strategy name in NEGEMMAssemblyWrapper
1277 - Improved @ref CLTuner
1278 - Fused the bias addition within @ref CLGEMM
1279 - Added support for QASYMM8 LOGISTIC activation in @ref NEActivationLayer
1280 - Added NHWC data layout support to:
1281 - @ref NEScale for F16
1282 - @ref CLNormalizationLayer IN_MAP_2D for FP32/FP16
1283 - @ref NEL2NormalizeLayer for FP32/FP16
1284 - @ref NENormalizationLayer IN_MAP_2D for FP32/FP16
1285 - @ref CLROIAlignLayer
Manuel Bottini5209be52019-02-13 16:34:56 +00001286 - @ref CLGenerateProposalsLayer
Isabella Gottardi62538972019-02-12 19:52:44 +00001287 - Added QASYMM8 support to the following kernels:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001288 - NEArithmeticAdditionKernel
Isabella Gottardi62538972019-02-12 19:52:44 +00001289 - @ref NEScale
1290 - Added new tests and improved validation and benchmarking suites.
giuros01a69a88b2019-01-31 16:29:19 +00001291 - Deprecated functions/interfaces
1292 - Usage of inner_border_right and inner_border_top has been deprecated in @ref CLDeconvolutionLayer and @ref NEDeconvolutionLayer
1293
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001294v18.11 Public major release
1295 - Various bug fixes.
1296 - Various optimisations.
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001297 - New Arm® Neon™ kernels / functions:
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001298 - @ref NEChannelShuffleLayer / @ref NEChannelShuffleLayerKernel
1299 - @ref NEReduceMean
1300 - @ref NEReorgLayer / @ref NEReorgLayerKernel
1301 - @ref NEPriorBoxLayer / @ref NEPriorBoxLayerKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001302 - NEUpsampleLayer / NEUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001303 - NEYOLOLayer / NEYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001304 - New OpenCL kernels / functions:
1305 - @ref CLBatchToSpaceLayer / @ref CLBatchToSpaceLayerKernel
1306 - @ref CLBoundingBoxTransform / @ref CLBoundingBoxTransformKernel
Manuel Bottini5209be52019-02-13 16:34:56 +00001307 - @ref CLComputeAllAnchorsKernel
1308 - @ref CLGenerateProposalsLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001309 - @ref CLNormalizePlanarYUVLayer / @ref CLNormalizePlanarYUVLayerKernel
1310 - @ref CLReorgLayer / @ref CLReorgLayerKernel
1311 - @ref CLSpaceToBatchLayer / @ref CLSpaceToBatchLayerKernel
1312 - @ref CLPadLayer
1313 - @ref CLReduceMean
1314 - @ref CLPriorBoxLayer / @ref CLPriorBoxLayerKernel
1315 - @ref CLROIAlignLayer / @ref CLROIAlignLayerKernel
1316 - @ref CLSlice
1317 - @ref CLSplit
1318 - @ref CLStridedSlice / @ref CLStridedSliceKernel
Georgios Pinitasc53266e2020-12-09 03:11:53 +00001319 - CLUpsampleLayer / CLUpsampleLayerKernel
Georgios Pinitas0b1c2db2020-12-04 15:51:34 +00001320 - CLYOLOLayer / CLYOLOLayerKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001321 - New CPP kernels / functions:
1322 - @ref CPPBoxWithNonMaximaSuppressionLimit / @ref CPPBoxWithNonMaximaSuppressionLimitKernel
1323 - Added the validate method in:
1324 - @ref NEDepthConvertLayer
1325 - @ref NEFloor / @ref CLFloor
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001326 - NEGEMMMatrixAdditionKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001327 - @ref NEReshapeLayer / @ref CLReshapeLayer
1328 - @ref CLScale
1329 - Added new examples:
1330 - graph_shufflenet.cpp
1331 - graph_yolov3.cpp
1332 - Added documentation for add a new function or kernel.
1333 - Improved doxygen documentation adding a list of the existing functions.
1334 - Add 4D tensors support to
Georgios Pinitas09f24972019-05-17 18:14:40 +01001335 - CLWidthConcatenateLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001336 - CLFlattenLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001337 - @ref CLSoftmaxLayer
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001338 - Add dot product support for CLDepthwiseConvolutionLayer3x3NHWCKernel non-unit stride
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001339 - Add SVE support
1340 - Fused batch normalization into convolution layer weights in @ref CLFuseBatchNormalization
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001341 - Fuses activation in CLDepthwiseConvolutionLayer3x3NCHWKernel, CLDepthwiseConvolutionLayer3x3NHWCKernel and @ref NEGEMMConvolutionLayer
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001342 - Added NHWC data layout support to:
1343 - @ref CLChannelShuffleLayer
1344 - @ref CLDeconvolutionLayer
1345 - @ref CLL2NormalizeLayer
1346 - Added QASYMM8 support to the following kernels:
Manuel Bottini3b131ab2021-02-19 18:16:44 +00001347 - CLScaleKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001348 - NEDepthwiseConvolutionLayer3x3Kernel
Sheri Zhangf9ab9f92021-03-16 12:09:15 +00001349 - CLPixelWiseMultiplicationKernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001350 - Added FP16 support to the following kernels:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001351 - CLDepthwiseConvolutionLayer3x3NHWCKernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001352 - NEDepthwiseConvolutionLayer3x3Kernel
Isabella Gottardi8773d7c2018-11-20 09:56:46 +00001353 - @ref CLNormalizePlanarYUVLayerKernel
1354 - @ref CLWinogradConvolutionLayer (5x5 kernel)
1355 - More tests added to both validation and benchmarking suites.
1356
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001357v18.08 Public major release
1358 - Various bug fixes.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001359 - Various optimisations.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001360 - Updated recommended NDK version to r17b.
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001361 - Removed support for QS8/QS16 data types.
1362 - Added support for grouped convolution in @ref CLConvolutionLayer.
1363 - Added NHWC data layout support to:
Georgios Pinitas09f24972019-05-17 18:14:40 +01001364 - NEDepthConcatenateLayer / CLDepthConcatenateLayer
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001365 - @ref NEWinogradConvolutionLayer / @ref CLWinogradConvolutionLayer
1366 - @ref CLDepthwiseConvolutionLayer
1367 - @ref CLDirectConvolutionLayer
1368 - @ref CLConvolutionLayer
1369 - @ref CLScale
Manuel Bottinid844c082021-07-14 12:58:54 +01001370 - CLIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001371 - New Arm® Neon™ kernels / functions:
Michele Di Giorgio02baf012018-08-20 18:10:38 +01001372 - @ref NERNNLayer
1373 - New OpenCL kernels / functions:
1374 - @ref CLArithmeticDivision
1375 - Introduced prepare() stage support in the graph API for GLES.
1376 - Added support for memory reusage when trying to allocate smaller CLTensors.
1377 - Enabled NHWC execution on graph examples.
1378 - Added JPEG accessor for validation purposes.
1379 - Added validate methods to some kernels / functions.
Anthony Barbierd51ea0a2018-08-07 17:48:03 +01001380
1381v18.05 Public major release
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001382 - Various bug fixes.
1383 - Various optimisations.
Jakub Sujakee301b32021-06-04 09:46:08 +01001384 - Major redesign in the interface for the Neon™ kernels implemented in assembly.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001385 - 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 +01001386 - Added NEGEMMAssemblyWrapper and AssemblyKernelGlue which are used to execute assembly kernels in Neon™ functions.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001387 - Minor changes to the CPUInfo type to make it compatible with the new assembly gemm interface.
Jakub Sujakee301b32021-06-04 09:46:08 +01001388 - Moved Neon™ assembly kernels to the folder src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001389 - Improved doxygen documentation.
1390 - Improved memory management for layer's transitions.
1391 - Added support for NHWC data layout in tensors.
1392 - Added NHWC data layout support to:
1393 - @ref NEGEMMConvolutionLayer
1394 - @ref NEDirectConvolutionLayer
1395 - @ref NEPoolingLayer / @ref CLPoolingLayer
1396 - @ref NEBatchNormalizationLayer / @ref CLBatchNormalizationLayer
1397 - @ref NEDepthwiseConvolutionLayer
1398 - @ref NEScale
Georgios Pinitasf7c5a412020-12-03 14:38:33 +00001399 - NEIm2Col
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001400 - Added support for dilated convolutions in @ref NEConvolutionLayer and @ref CLConvolutionLayer.
1401 - New OpenCL kernels / functions:
1402 - @ref CLChannelShuffleLayer / @ref CLChannelShuffleLayerKernel
Teresa Charlin91b7f742021-04-12 13:57:00 +01001403 - CLConvertFullyConnectedWeightsKernel / @ref CLConvertFullyConnectedWeights
Sheri Zhang7e20e292021-02-02 11:49:34 +00001404 - @ref CLCopy / CLCopyKernel
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001405 - @ref CLLSTMLayer
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001406 - @ref CLRNNLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001407 - CLWidthConcatenateLayer / CLWidthConcatenateLayerKernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +01001408 - CLWinogradFilterTransformKernel / @ref CLWinogradConvolutionLayer
1409 - CLWinogradInputTransformKernel / CLWinogradInputTransform
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001410 - New Arm® Neon™ kernels / functions:
Teresa Charlin562bee52021-04-13 17:44:15 +01001411 - NEConvertFullyConnectedWeightsKernel / @ref NEConvertFullyConnectedWeights.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001412 - Created the validate method in @ref CLDepthwiseConvolutionLayer.
1413 - Beta and gamma are no longer mandatory arguments in @ref NEBatchNormalizationLayer and @ref CLBatchNormalizationLayer.
1414 - Added depth multiplier support in @ref NEDepthwiseConvolutionLayer and @ref CLDepthwiseConvolutionLayer.
Sheri Zhang1e3ab422021-03-16 17:35:08 +00001415 - Added broadcast multiply support in @ref NEPixelWiseMultiplication / NEPixelWiseMultiplicationKernel.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001416 - Port mobilenet example to NHWC data layout.
1417 - Enabled Winograd method in @ref CLConvolutionLayer.
1418 - Renamed NEWinogradLayer to @ref NEWinogradConvolutionLayer.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001419 - Updated @ref NEWinogradConvolutionLayer to use highly optimised assembly kernels in src/core/Neon/kernels/arm_gemm.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001420 - Added memory manager support in GLES functions.
1421 - Major refactoring of the graph API.
1422 - Added GLES backend in the graph API.
1423 - Added support for the memory manager in the graph API.
1424 - Enabled Winograd Convolution method in the graph API.
1425 - Added support for grouped convolutions in the graph API.
Manuel Bottini10b38262021-02-19 18:16:44 +00001426 - Replaced NEDeconvolutionLayerUpsampleKernel with NEScaleKernel in @ref NEDeconvolutionLayer.
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001427 - Added fast maths flag in @ref CLConvolutionLayer.
1428 - Added new tests and benchmarks in validation and benchmark frameworks
Jakub Sujakee301b32021-06-04 09:46:08 +01001429 - Merge Activation layer with Convolution Layer (Neon™, CL, GLES)
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001430 - Added support to OpenCL 2.0 SVM
1431 - Added support to import memory in OpenCL tensors.
1432 - Added the prepare() method to perform any one off pre-processing before running the function.
1433 - Added new examples:
1434 - graph_inception_v4.cpp
Anthony Barbier38e7f1f2018-05-21 13:37:47 +01001435 - graph_resnext50.cpp
Pablo Tellob5cc95b2018-05-15 11:49:33 +01001436 - Added memory measurement instrument for CL.
Pablo Telloeb82fd22018-02-23 13:43:50 +00001437
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001438v18.03 Public maintenance release
1439 - Various bug fixes.
Anthony Barbier3762e742018-03-02 11:49:33 +00001440 - Fixed bug in @ref NEActivationLayer
1441 - Fix in @ref CLTuner when using batches.
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001442 - Updated recommended NDK version to r16b (And fixed warnings).
1443 - Fixed bug in validation code.
1444 - Added Inception v4 graph example.
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001445 - Renamed NEWinogradLayer.cpp to @ref NEWinogradConvolutionLayer
Anthony Barbier577fbdf2018-03-01 15:17:54 +00001446
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001447v18.02 Public major release
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001448 - Various Arm® Neon™ / OpenCL / GLES optimisations.
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001449 - Various bug fixes.
1450 - Changed default number of threads on big LITTLE systems.
1451 - Refactored examples and added:
1452 - graph_mobilenet_qassym8
1453 - graph_resnet
1454 - graph_squeezenet_v1_1
Anthony Barbier3762e742018-03-02 11:49:33 +00001455 - Renamed @ref CLConvolutionLayer into @ref CLGEMMConvolutionLayer and created a new @ref CLConvolutionLayer to select the fastest convolution method.
1456 - 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 +00001457 - Added in place support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001458 - @ref CLActivationLayer
1459 - @ref CLBatchNormalizationLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001460 - Added QASYMM8 support to:
Anthony Barbier3762e742018-03-02 11:49:33 +00001461 - @ref CLActivationLayer
1462 - @ref CLDepthwiseConvolutionLayer
1463 - @ref NEDepthwiseConvolutionLayer
1464 - @ref NESoftmaxLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001465 - Added FP16 support to:
Manuel Bottini387259a2020-05-21 17:14:36 +01001466 - CLDepthwiseConvolutionLayer3x3
Anthony Barbier3762e742018-03-02 11:49:33 +00001467 - @ref CLDepthwiseConvolutionLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001468 - Added broadcasting support to NEArithmeticAddition / @ref CLArithmeticAddition / @ref CLPixelWiseMultiplication
Anthony Barbier3762e742018-03-02 11:49:33 +00001469 - Added fused batched normalization and activation to @ref CLBatchNormalizationLayer and @ref NEBatchNormalizationLayer
1470 - Added support for non-square pooling to @ref NEPoolingLayer and @ref CLPoolingLayer
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001471 - New OpenCL kernels / functions:
Michele Di Giorgioa046e162019-10-08 09:36:26 +01001472 - CLDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001473 - New Arm® Neon™ kernels / functions
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001474 - Added name() method to all kernels.
1475 - Added support for Winograd 5x5.
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001476 - NEPermuteKernel / @ref NEPermute
Michalis Spyrou96f977e2021-07-01 12:20:56 +01001477 - CpuWinogradConv2dTransformInputKernel / NEWinogradLayer
1478 - CpuWinogradConv2dTransformOutputKernel / NEWinogradLayer
1479 - CpuWinogradConv2dTransformWeightsKernel / NEWinogradLayer
Anthony Barbiere1553372018-07-16 18:53:52 +01001480 - Renamed NEWinogradLayerKernel into NEWinogradLayerBatchedGEMMKernel
Anthony Barbier2d0ce772018-02-21 15:35:36 +00001481 - New GLES kernels / functions:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001482 - GCTensorShiftKernel / GCTensorShift
Pablo Tellof6c572c2018-02-14 12:47:30 +00001483
Anthony Barbier64c95a02018-01-22 18:48:55 +00001484v18.01 Public maintenance release
1485 - Various bug fixes
1486 - Added some of the missing validate() methods
Anthony Barbier3762e742018-03-02 11:49:33 +00001487 - Added @ref CLDeconvolutionLayerUpsampleKernel / @ref CLDeconvolutionLayer @ref CLDeconvolutionLayerUpsample
Sheri Zhang7e20e292021-02-02 11:49:34 +00001488 - Added CLPermuteKernel / @ref CLPermute
Anthony Barbier64c95a02018-01-22 18:48:55 +00001489 - Added method to clean the programs cache in the CL Kernel library.
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001490 - Added GCArithmeticAdditionKernel / GCArithmeticAddition
1491 - Added GCDepthwiseConvolutionLayer3x3Kernel / GCDepthwiseConvolutionLayer3x3
1492 - Added GCNormalizePlanarYUVLayerKernel / GCNormalizePlanarYUVLayer
1493 - Added GCScaleKernel / GCScale
1494 - Added GCWeightsReshapeKernel / GCConvolutionLayer
Anthony Barbier64c95a02018-01-22 18:48:55 +00001495 - Added FP16 support to the following GLES compute kernels:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001496 - GCCol2ImKernel
1497 - GCGEMMInterleave4x4Kernel
1498 - GCGEMMTranspose1xWKernel
1499 - GCIm2ColKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001500 - Refactored Arm® Neon™ Winograd (NEWinogradLayerKernel)
Manuel Bottini327225d2021-04-13 13:09:30 +01001501 - Added NEDirectConvolutionLayerOutputStageKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001502 - Added QASYMM8 support to the following Arm® Neon™ kernels:
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001503 - NEDepthwiseConvolutionLayer3x3Kernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001504 - @ref NEFillBorderKernel
Michele Di Giorgio19289042021-02-03 16:05:00 +00001505 - NEPoolingLayerKernel
Anthony Barbier64c95a02018-01-22 18:48:55 +00001506 - Added new examples:
1507 - graph_cl_mobilenet_qasymm8.cpp
1508 - graph_inception_v3.cpp
1509 - gc_dc.cpp
1510 - More tests added to both validation and benchmarking suites.
1511
Gian Marcoff850932017-12-11 12:37:17 +00001512v17.12 Public major release
1513 - Most machine learning functions on OpenCL support the new data type QASYMM8
1514 - Introduced logging interface
1515 - Introduced opencl timer
1516 - Reworked GEMMLowp interface
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001517 - Added new Arm® Neon™ assembly kernels for GEMMLowp, SGEMM and HGEMM
Gian Marcoff850932017-12-11 12:37:17 +00001518 - Added validation method for most Machine Learning kernels / functions
1519 - Added new graph examples such as googlenet, mobilenet, squeezenet, vgg16 and vgg19
1520 - Added sgemm example for OpenCL
1521 - Added absolute difference example for GLES compute
1522 - Added new tests and benchmarks in validation and benchmark frameworks
1523 - Added new kernels / functions for GLES compute
1524
1525 - New OpenGL ES kernels / functions
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +00001526 - GCAbsoluteDifferenceKernel / GCAbsoluteDifference
1527 - GCActivationLayerKernel / GCActivationLayer
1528 - GCBatchNormalizationLayerKernel / GCBatchNormalizationLayer
1529 - GCCol2ImKernel
1530 - GCDepthConcatenateLayerKernel / GCDepthConcatenateLayer
1531 - GCDirectConvolutionLayerKernel / GCDirectConvolutionLayer
1532 - GCDropoutLayerKernel / GCDropoutLayer
1533 - GCFillBorderKernel / GCFillBorder
1534 - GCGEMMInterleave4x4Kernel / GCGEMMInterleave4x4
1535 - GCGEMMMatrixAccumulateBiasesKernel / GCGEMMMatrixAdditionKernel / GCGEMMMatrixMultiplyKernel / GCGEMM
1536 - GCGEMMTranspose1xWKernel / GCGEMMTranspose1xW
1537 - GCIm2ColKernel
1538 - GCNormalizationLayerKernel / GCNormalizationLayer
1539 - GCPixelWiseMultiplicationKernel / GCPixelWiseMultiplication
1540 - GCPoolingLayerKernel / GCPoolingLayer
1541 - GCLogits1DMaxKernel / GCLogits1DShiftExpSumKernel / GCLogits1DNormKernel / GCSoftmaxLayer
1542 - GCTransposeKernel / GCTranspose
Gian Marcoff850932017-12-11 12:37:17 +00001543
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001544 - New Arm® Neon™ kernels / functions
Pablo Telloeb82fd22018-02-23 13:43:50 +00001545 - arm_compute::NEGEMMLowpAArch64A53Kernel / arm_compute::NEGEMMLowpAArch64Kernel / arm_compute::NEGEMMLowpAArch64V8P4Kernel / arm_compute::NEGEMMInterleavedBlockedKernel / arm_compute::NEGEMMLowpAssemblyMatrixMultiplyCore
1546 - arm_compute::NEHGEMMAArch64FP16Kernel
Georgios Pinitas7d0adc62020-09-04 15:25:24 +01001547 - NEDepthwiseConvolutionLayer3x3Kernel / NEDepthwiseIm2ColKernel / NEGEMMMatrixVectorMultiplyKernel / NEDepthwiseVectorToTensorKernel / @ref NEDepthwiseConvolutionLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001548 - NEGEMMLowpOffsetContributionKernel / NEGEMMLowpMatrixAReductionKernel / NEGEMMLowpMatrixBReductionKernel / NEGEMMLowpMatrixMultiplyCore
Manuel Bottiniae58bdf2021-06-17 17:18:45 +01001549 - NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Georgios Pinitas9fb11592018-04-26 20:34:58 +01001550 - NEWinogradLayer / NEWinogradLayerKernel
Gian Marcoff850932017-12-11 12:37:17 +00001551
1552 - New OpenCL kernels / functions
Georgios Pinitas4a578b92021-06-25 12:13:49 +01001553 - CLGEMMLowpOffsetContributionKernel / CLGEMMLowpMatrixAReductionKernel / CLGEMMLowpMatrixBReductionKernel / CLGEMMLowpMatrixMultiplyCore
1554 - CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel / CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
Gian Marcoff850932017-12-11 12:37:17 +00001555
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001556 - New graph nodes for Arm® Neon™ and OpenCL
Georgios Pinitasd9eb2752018-04-03 13:44:29 +01001557 - graph::BranchLayer
1558 - graph::DepthConvertLayer
1559 - graph::DepthwiseConvolutionLayer
1560 - graph::DequantizationLayer
1561 - graph::FlattenLayer
1562 - graph::QuantizationLayer
1563 - graph::ReshapeLayer
Gian Marcoff850932017-12-11 12:37:17 +00001564
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001565v17.10 Public maintenance release
1566 - Bug fixes:
1567 - Check the maximum local workgroup size supported by OpenCL devices
1568 - Minor documentation updates (Fixed instructions to build the examples)
Anthony Barbier3762e742018-03-02 11:49:33 +00001569 - Introduced a graph::GraphContext
Anthony Barbier3c5b4ff2017-10-12 13:20:52 +01001570 - Added a few new Graph nodes, support for branches and grouping.
1571 - Automatically enable cl_printf in debug builds
1572 - Fixed bare metal builds for armv7a
1573 - Added AlexNet and cartoon effect examples
1574 - 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)
1575
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001576v17.09 Public major release
1577 - Experimental Graph support: initial implementation of a simple stream API to easily chain machine learning layers.
Anthony Barbier3762e742018-03-02 11:49:33 +00001578 - 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 +01001579 - New validation and benchmark frameworks (Boost and Google frameworks replaced by homemade framework).
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001580 - Most machine learning functions support both fixed point 8 and 16 bit (QS8, QS16) for both Arm® Neon™ and OpenCL.
1581 - New Arm® Neon™ kernels / functions:
Pablo Telloeb82fd22018-02-23 13:43:50 +00001582 - arm_compute::NEGEMMAssemblyBaseKernel arm_compute::NEGEMMAArch64Kernel
Manuel Bottini00f4dfc2021-03-10 09:55:14 +00001583 - NEDequantizationLayerKernel / @ref NEDequantizationLayer
Georgios Pinitas70eb53b2021-01-06 19:42:21 +00001584 - NEFloorKernel / @ref NEFloor
Anthony Barbier3762e742018-03-02 11:49:33 +00001585 - @ref NEL2NormalizeLayerKernel / @ref NEL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001586 - NEQuantizationLayerKernel NEMinMaxLayerKernel / @ref NEQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001587 - @ref NEROIPoolingLayerKernel / @ref NEROIPoolingLayer
1588 - @ref NEReductionOperationKernel / @ref NEReductionOperation
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00001589 - NEReshapeLayerKernel / @ref NEReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001590
1591 - New OpenCL kernels / functions:
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001592 - CLDepthwiseConvolutionLayer3x3NCHWKernel CLDepthwiseConvolutionLayer3x3NHWCKernel CLDepthwiseIm2ColKernel CLDepthwiseVectorToTensorKernel CLDepthwiseWeightsReshapeKernel / CLDepthwiseConvolutionLayer3x3 @ref CLDepthwiseConvolutionLayer CLDepthwiseSeparableConvolutionLayer
Manuel Bottini9e73c932021-03-02 17:40:42 +00001593 - CLDequantizationLayerKernel / CLDequantizationLayer
Sheri Zhang1efed922021-03-10 22:43:38 +00001594 - CLDirectConvolutionLayerKernel / @ref CLDirectConvolutionLayer
Georgios Pinitase2696b12020-12-03 20:37:43 +00001595 - CLFlattenLayer
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001596 - CLFloorKernel / @ref CLFloor
Gian Marco Iodice5fc07aa2019-05-15 17:08:02 +01001597 - CLGEMMTranspose1xW
Michele Di Giorgioee82d342021-01-05 16:14:28 +00001598 - CLGEMMMatrixVectorMultiplyKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001599 - @ref CLL2NormalizeLayerKernel / @ref CLL2NormalizeLayer
Georgios Pinitasb6af4822021-09-14 12:33:34 +01001600 - CLQuantizationLayerKernel CLMinMaxLayerKernel / @ref CLQuantizationLayer
Anthony Barbier3762e742018-03-02 11:49:33 +00001601 - @ref CLROIPoolingLayerKernel / @ref CLROIPoolingLayer
1602 - @ref CLReductionOperationKernel / @ref CLReductionOperation
Sheri Zhang7e20e292021-02-02 11:49:34 +00001603 - CLReshapeLayerKernel / @ref CLReshapeLayer
Anthony Barbier6a5627a2017-09-26 14:42:02 +01001604
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001605v17.06 Public major release
1606 - Various bug fixes
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001607 - Added support for fixed point 8 bit (QS8) to the various Arm® Neon™ machine learning kernels.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001608 - Added unit tests and benchmarks (AlexNet, LeNet)
1609 - Added support for sub tensors.
1610 - Added infrastructure to provide GPU specific optimisation for some OpenCL kernels.
Sheri Zhangac6499a2021-02-10 15:32:38 +00001611 - Added @ref OMPScheduler (OpenMP) scheduler for Neon
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001612 - Added @ref SingleThreadScheduler scheduler for Arm® Neon™ (For bare metal)
ramelg01b2eba7f2021-12-23 08:32:08 +00001613 - User can specify their own scheduler by implementing the @ref IScheduler interface.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001614 - New OpenCL kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001615 - @ref CLBatchNormalizationLayerKernel / @ref CLBatchNormalizationLayer
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001616 - CLDepthConcatenateLayerKernel / CLDepthConcatenateLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001617 - CLHOGOrientationBinningKernel CLHOGBlockNormalizationKernel, CLHOGDetectorKernel / CLHOGDescriptor CLHOGDetector CLHOGGradient CLHOGMultiDetection
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001618 - CLLocallyConnectedMatrixMultiplyKernel / CLLocallyConnectedLayer
Manuel Bottinid87aded2021-07-16 10:23:31 +01001619 - CLWeightsReshapeKernel / CLConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001620 - New C++ kernels:
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001621 - CPPDetectionWindowNonMaximaSuppressionKernel
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001622 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001623 - @ref NEBatchNormalizationLayerKernel / @ref NEBatchNormalizationLayer
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001624 - NEDepthConcatenateLayerKernel / NEDepthConcatenateLayer
Manuel Bottini327225d2021-04-13 13:09:30 +01001625 - NEDirectConvolutionLayerKernel / @ref NEDirectConvolutionLayer
Georgios Pinitas96b16b62020-12-01 17:41:34 +00001626 - NELocallyConnectedMatrixMultiplyKernel / NELocallyConnectedLayer
Manuel Bottini29599d02021-07-06 15:01:35 +01001627 - NEWeightsReshapeKernel / NEConvolutionLayerReshapeWeights
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001628
1629v17.05 Public bug fixes release
1630 - Various bug fixes
1631 - Remaining of the functions ported to use accurate padding.
1632 - Library does not link against OpenCL anymore (It uses dlopen / dlsym at runtime instead to determine whether or not OpenCL is available).
1633 - Added "free" method to allocator.
1634 - Minimum version of g++ required for armv7 Linux changed from 4.8 to 4.9
1635
1636v17.04 Public bug fixes release
1637
1638 The following functions have been ported to use the new accurate padding:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001639 - CLColorConvertKernel
1640 - CLEdgeNonMaxSuppressionKernel
1641 - CLEdgeTraceKernel
1642 - CLGaussianPyramidHorKernel
1643 - CLGaussianPyramidVertKernel
1644 - CLGradientKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001645 - NEChannelCombineKernel
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001646 - NEFillArrayKernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001647 - NEGaussianPyramidHorKernel
1648 - NEGaussianPyramidVertKernel
Georgios Pinitas09d34512018-08-30 16:02:11 +01001649 - NEHarrisScoreFP16Kernel
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001650 - NEHarrisScoreKernel
1651 - NEHOGDetectorKernel
Michalis Spyrou373b4072021-01-20 16:41:12 +00001652 - NELogits1DMaxKernel
Anthony Barbier3762e742018-03-02 11:49:33 +00001653 - NELogits1DShiftExpSumKernel
1654 - NELogits1DNormKernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001655 - NENonMaximaSuppression3x3FP16Kernel
1656 - NENonMaximaSuppression3x3Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001657
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001658v17.03.1 First Major public release of the sources
1659 - Renamed the library to arm_compute
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001660 - New CPP target introduced for C++ kernels shared between Arm® Neon™ and CL functions.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001661 - New padding calculation interface introduced and ported most kernels / functions to use it.
1662 - New OpenCL kernels / functions:
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +01001663 - CLGEMMLowpMatrixMultiplyKernel / CLGEMMLowp
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001664 - New Arm® Neon™ kernels / functions:
Anthony Barbier3762e742018-03-02 11:49:33 +00001665 - @ref NENormalizationLayerKernel / @ref NENormalizationLayer
Teresa Charlind1dc09c2021-03-04 15:24:45 +00001666 - NETransposeKernel / @ref NETranspose
Michalis Spyrou373b4072021-01-20 16:41:12 +00001667 - NELogits1DMaxKernel, NELogits1DShiftExpSumKernel, NELogits1DNormKernel / @ref NESoftmaxLayer
Manuel Bottini24b89202021-07-01 18:13:33 +01001668 - NEIm2ColKernel, NECol2ImKernel, NEConvolutionLayerWeightsReshapeKernel / @ref NEConvolutionLayer
Michele Di Giorgiof22f6722020-07-03 16:29:24 +01001669 - NEGEMMMatrixAccumulateBiasesKernel / @ref NEFullyConnectedLayer
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001670 - NEGEMMLowpMatrixMultiplyKernel / NEGEMMLowp
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001671
1672v17.03 Sources preview
1673 - New OpenCL kernels / functions:
Michalis Spyrou473cb012021-02-23 11:48:12 +00001674 - CLGradientKernel, CLEdgeNonMaxSuppressionKernel, CLEdgeTraceKernel / CLCannyEdge
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001675 - GEMM refactoring + FP16 support: CLGEMMInterleave4x4Kernel, CLGEMMTranspose1xWKernel, CLGEMMMatrixMultiplyKernel, CLGEMMMatrixAdditionKernel / @ref CLGEMM
Michele Di Giorgiof6f78762020-07-06 11:27:21 +01001676 - CLGEMMMatrixAccumulateBiasesKernel / @ref CLFullyConnectedLayer
Teresa Charlin27886092021-02-25 20:15:01 +00001677 - CLTransposeKernel / @ref CLTranspose
Georgios Pinitasc6f95102021-03-30 10:03:01 +01001678 - CLLKTrackerInitKernel, CLLKTrackerStage0Kernel, CLLKTrackerStage1Kernel, CLLKTrackerFinalizeKernel / CLOpticalFlow
Anthony Barbier3762e742018-03-02 11:49:33 +00001679 - @ref CLNormalizationLayerKernel / @ref CLNormalizationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001680 - CLLaplacianPyramid, CLLaplacianReconstruct
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001681 - New Arm® Neon™ kernels / functions:
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +00001682 - NEActivationLayerKernel / @ref NEActivationLayer
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01001683 - GEMM refactoring + FP16 support (Requires armv8.2 CPU): NEGEMMInterleave4x4Kernel, NEGEMMTranspose1xWKernel, NEGEMMMatrixMultiplyKernel, NEGEMMMatrixAdditionKernel / @ref NEGEMM
Michele Di Giorgio19289042021-02-03 16:05:00 +00001684 - NEPoolingLayerKernel / @ref NEPoolingLayer
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001685
1686v17.02.1 Sources preview
1687 - New OpenCL kernels / functions:
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +00001688 - CLLogits1DMaxKernel, CLLogits1DShiftExpSumKernel, CLLogits1DNormKernel / @ref CLSoftmaxLayer
Michele Di Giorgioe1314662021-02-01 17:09:32 +00001689 - CLPoolingLayerKernel / @ref CLPoolingLayer
Manuel Bottinid844c082021-07-14 12:58:54 +01001690 - CLIm2ColKernel, CLCol2ImKernel, CLConvolutionLayerWeightsReshapeKernel / CLConvolutionLayer
Adnan AlSinan6863fa02022-02-04 13:04:55 +00001691 - CLRemapKernel / CLRemap
Michalis Spyrou473cb012021-02-23 11:48:12 +00001692 - CLGaussianPyramidHorKernel, CLGaussianPyramidVertKernel / CLGaussianPyramid, CLGaussianPyramidHalf, CLGaussianPyramidOrb
1693 - CLMinMaxKernel, CLMinMaxLocationKernel / CLMinMaxLocation
1694 - CLNonLinearFilterKernel / CLNonLinearFilter
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001695 - New Arm® Neon™ FP16 kernels (Requires armv8.2 CPU)
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001696 - NEAccumulateWeightedFP16Kernel
1697 - NEBox3x3FP16Kernel
Michalis Spyrou473cb012021-02-23 11:48:12 +00001698 - NENonMaximaSuppression3x3FP16Kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001699
1700v17.02 Sources preview
1701 - New OpenCL kernels / functions:
Georgios Pinitasf47f7182021-01-15 09:29:50 +00001702 - CLActivationLayerKernel / @ref CLActivationLayer
Michalis Spyrou473cb012021-02-23 11:48:12 +00001703 - CLChannelCombineKernel / CLChannelCombine
1704 - CLDerivativeKernel / CLChannelExtract
1705 - CLFastCornersKernel / CLFastCorners
1706 - CLMeanStdDevKernel / CLMeanStdDev
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001707 - New Arm® Neon™ kernels / functions:
Michalis Spyrou27e67f02021-02-16 11:34:39 +00001708 - HOG / SVM: NEHOGOrientationBinningKernel, NEHOGBlockNormalizationKernel, NEHOGDetectorKernel, NEHOGNonMaximaSuppressionKernel / NEHOGDescriptor, NEHOGDetector, NEHOGGradient, NEHOGMultiDetection
1709 - NENonLinearFilterKernel / NENonLinearFilter
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001710 - Introduced a CLScheduler to manage the default context and command queue used by the runtime library and create synchronisation events.
1711 - Switched all the kernels / functions to use tensors instead of images.
1712 - Updated documentation to include instructions to build the library from sources.
1713
1714v16.12 Binary preview release
1715 - Original release
1716
Sheri Zhangd813bab2021-04-30 16:53:41 +01001717 */
Ramy Elgammal0d274b72022-08-05 13:14:57 +01001718} // namespace arm_compute