aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2019-08-22 10:10:52 +0100
committerGian Marco Iodice <gianmarco.iodice@arm.com>2019-08-22 11:57:02 +0100
commitbf193548b3afdee7db154c2fa5625e2194e51de2 (patch)
treee2937b4789c2af47ffbdcb03414c017fbbb51531
parent1e864618544c64d34b9671472c8e8d456cf47982 (diff)
downloadComputeLibrary-bf193548b3afdee7db154c2fa5625e2194e51de2.tar.gz
COMPMID-2555: Release notes 19.08
Change-Id: I3ff6b7580c7cb7a9df9056d17e41ff553479dd53 Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-on: https://review.mlplatform.org/c/1787 Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--docs/00_introduction.dox46
1 files changed, 41 insertions, 5 deletions
diff --git a/docs/00_introduction.dox b/docs/00_introduction.dox
index 09a847286a..9c8eaf2733 100644
--- a/docs/00_introduction.dox
+++ b/docs/00_introduction.dox
@@ -239,11 +239,47 @@ If there is more than one release in a month then an extra sequential number is
v19.08 Public major release
- Various bug fixes.
- Various optimisations.
- - Deprecated functions/interfaces
- - Altered @ref QuantizationInfo interface to support per-channel quantization.
- - The @ref NEDepthwiseConvolutionLayer3x3 will be replaced by @ref NEDepthwiseConvolutionLayerOptimized to accommodate for future optimizations.
- - Removed inner_border_right and inner_border_top parameters from @ref CLDeconvolutionLayer interface
- - Removed inner_border_right and inner_border_top parameters from @ref NEDeconvolutionLayer interface
+ - Deprecated NEON functions
+ - NEDepthConcatenateLayer
+ - NEWidthConcatenateLayer
+ - Deprecated OpenCL kernels / functions
+ - CLDepthConcatenateLayer
+ - CLGEMMInterleave4x4Kernel / CLGEMMInterleave4x4
+ - CLGEMMTranspose1xWKernel / CLGEMMTranspose1xW
+ - CLWidthConcatenateLayer
+ - New NEON kernels / functions:
+ - @ref NECast
+ - @ref NELSTMLayerQuantized
+ - @ref NEPReluLayer
+ - @ref NEBatchConcatenateLayerKernel
+ - @ref NEDepthToSpaceLayerKernel / @ref NEDepthToSpaceLayer
+ - @ref NEDepthwiseConvolutionLayerNativeKernel
+ - @ref NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
+ - @ref NEMeanStdDevNormalizationKernel / @ref NEMeanStdDevNormalizationLayer
+ - @ref NESpaceToDepthLayerKernel / @ref NESpaceToDepthLayer
+ - New OpenCL kernels / functions:
+ - @ref CLLSTMLayerQuantized
+ - @ref CLPReluLayer
+ - @ref CLBatchConcatenateLayerKernel
+ - @ref CLDepthToSpaceLayerKernel / @ref CLDepthToSpaceLayer
+ - @ref CLGEMMLowpMatrixMultiplyNativeKernel
+ - @ref CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
+ - @ref CLGEMMMatrixMultiplyNativeKernel
+ - @ref CLMeanStdDevNormalizationKernel / @ref CLMeanStdDevNormalizationLayer
+ - @ref CLSpaceToDepthLayerKernel / @ref CLSpaceToDepthLayer
+ - New examples:
+ - neon_opticalflow
+ - cl_cache
+ - neon_permute
+ - Enable the fusion of batch normalization with convolution and depthwise convolution layer for FP32 in the graph API (OpenCL only)
+ - Added support for fusing activation function and broadcast addition with the matrix multiplication for FP32 (OpenCL only)
+ - Re-factored the depthwise convolution layer kernel on NEON for generic cases
+ - Added an optimized depthwise convolution layer kernel for 5x5 filters (NEON only)
+ - Added support to enable OpenCL kernel cache. Added example showing how to load the prebuilt OpenCL kernels from a binary cache file
+ - Altered @ref QuantizationInfo interface to support per-channel quantization.
+ - The @ref NEDepthwiseConvolutionLayer3x3 will be replaced by @ref NEDepthwiseConvolutionLayerOptimized to accommodate for future optimizations.
+ - Removed inner_border_right and inner_border_top parameters from @ref CLDeconvolutionLayer interface
+ - Removed inner_border_right and inner_border_top parameters from @ref NEDeconvolutionLayer interface
v19.05 Public major release
- Various bug fixes.