From 9f95ff5b6ba01db09552b84a0ab79607060a2666 Mon Sep 17 00:00:00 2001 From: Ali Labbene Date: Wed, 11 Dec 2019 08:59:21 +0100 Subject: Official ARM version: v5.4.0 Add CMSIS V5.4.0, please refer to index.html available under \docs folder. Note: content of \CMSIS\Core\Include has been copied under \Include to keep the same structure used in existing projects, and thus avoid projects mass update Note: the following components have been removed from ARM original delivery (as not used in ST packages) - CMSIS_EW2018.pdf - .gitattributes - .gitignore - \Device - \CMSIS - \CoreValidation - \DAP - \Documentation - \DoxyGen - \Driver - \Pack - \RTOS\CMSIS_RTOS_Tutorial.pdf - \RTOS\RTX - \RTOS\Template - \RTOS2\RTX - \Utilities - All ARM/GCC projects files are deleted from \DSP, \RTOS and \RTOS2 Change-Id: Ia026c3f0f0d016627a4fb5a9032852c33d24b4d3 --- docs/NN/html/index.html | 163 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 docs/NN/html/index.html (limited to 'docs/NN/html/index.html') diff --git a/docs/NN/html/index.html b/docs/NN/html/index.html new file mode 100644 index 0000000..965e6d3 --- /dev/null +++ b/docs/NN/html/index.html @@ -0,0 +1,163 @@ + + + + + +CMSIS NN Software Library +CMSIS-NN: CMSIS NN Software Library + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
CMSIS-NN +  Version 1.1.0 +
+
CMSIS NN Software Library
+
+
+ +
+
    + +
+
+ + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
CMSIS NN Software Library
+
+
+

Introduction

+

This user manual describes the CMSIS NN software library, a collection of efficient neural network kernels developed to maximize the performance and minimize the memory footprint of neural networks on Cortex-M processor cores.

+

The library is divided into a number of functions each covering a specific category:

+
    +
  • Neural Network Convolution Functions
  • +
  • Neural Network Activation Functions
  • +
  • Fully-connected Layer Functions
  • +
  • Neural Network Pooling Functions
  • +
  • Softmax Functions
  • +
  • Neural Network Support Functions
  • +
+

The library has separate functions for operating on different weight and activation data types including 8-bit integers (q7_t) and 16-bit integers (q15_t). The descrition of the kernels are included in the function description. The implementation details are also described in this paper [1].

+

Block Diagram

+
+CMSIS-NN-OVERVIEW.PNG +
+

Examples

+

The library ships with a number of examples which demonstrate how to use the library functions.

+

Pre-processor Macros

+

Each library project have differant pre-processor macros.

+
    +
  • ARM_MATH_DSP:
  • +
+

Define macro ARM_MATH_DSP, If the silicon supports DSP instructions.

+
    +
  • ARM_MATH_BIG_ENDIAN:
  • +
+

Define macro ARM_MATH_BIG_ENDIAN to build the library for big endian targets. By default library builds for little endian targets.

+
    +
  • ARM_NN_TRUNCATE:
  • +
+

Define macro ARM_NN_TRUNCATE to use floor instead of round-to-the-nearest-int for the computation.

+

Copyright Notice

+

Copyright (C) 2010-2018 Arm Limited. All rights reserved.

+

[1] CMSIS-NN: Efficient Neural Network Kernels for Arm Cortex-M CPUs https://arxiv.org/abs/1801.06601

+
+
+ + + + -- cgit