Explorar o código

Rebase - Update version number (#1423)

Co-authored-by: Felix Johnny <felixjohnny.thomasmathibalan.com>
felix-johnny %!s(int64=3) %!d(string=hai) anos
pai
achega
e776dfa705
Modificáronse 2 ficheiros con 15 adicións e 4 borrados
  1. 11 2
      CMSIS/NN/Include/arm_nnfunctions.h
  2. 4 2
      CMSIS/NN/README.md

+ 11 - 2
CMSIS/NN/Include/arm_nnfunctions.h

@@ -21,8 +21,8 @@
  * Title:        arm_nnfunctions.h
  * Description:  Public header file for CMSIS NN Library
  *
- * $Date:        22 February 2022
- * $Revision:    V.8.1.0
+ * $Date:        10 March 2022
+ * $Revision:    V.8.1.1
  *
  * Target Processor:  Cortex-M CPUs
  * -------------------------------------------------------------------- */
@@ -51,6 +51,15 @@
    * kernels are included in the function description. The implementation details are also
    * described in this paper [1].
    *
+   * Supported Processors
+   * -------
+   * CMSIS-NN targets Cortex-M processors with typically three different implementations for each function. Each
+   * targets a different group of processors.
+   *  - Processors without SIMD capability (e.g, Cortex-M0)
+   *  - Processors with DSP extention (e.g Cortex-M4)
+   *  - Processors with MVE extension (e.g Cortex-M55)
+   * The right implementation is picked through feature flags and the user usually does not have to explicit set it.
+   *
    * Function Classification
    * --------
    * The functions can be classified into two segments

+ 4 - 2
CMSIS/NN/README.md

@@ -1,5 +1,6 @@
 # CMSIS NN
-
+CMSIS NN software library is a collection of efficient neural network kernels developed to maximize the
+performance and minimize the memory footprint of neural networks on Cortex-M processors.
 ## About
 This page  give a quick overview of the functions available and key differences between them.
 
@@ -7,7 +8,8 @@ This page  give a quick overview of the functions available and key differences
 
 ## Support / Contact
 For any questions or to reach the CMSIS-NN team, please create a new issue in https://github.com/ARM-software/CMSIS_5/issues
-
+## Supported Framework
+[TensorFlow Lite for Microcontrollers](https://www.tensorflow.org/lite/microcontrollers)
 ## Legacy vs TFL micro compliant APIs
 There are two kinds of APIs available in the CMSIS-NN repository; One that supports a legacy symmetric quantization scheme[1] and one that supports TFL micro's symmetric quantization scheme. One of the main differences is how the quantization is performed. The legacy APIs have a fixed point format with power of 2 scaling. This simplifies the re-quantization to a cycle efficient shift operation. No new development is done on the legacy functions and all of the new development is on the functions that support TFL micro. The table below highlights some of the differences between the two formats for convolution related functions. The TFL micro compliant APIs in most cases have a _s8 suffix and is always specified in the API header file.