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/arm__nnexamples__gru_8cpp.html | 531 ++++++++++++++++++++++++++++ 1 file changed, 531 insertions(+) create mode 100644 docs/NN/html/arm__nnexamples__gru_8cpp.html (limited to 'docs/NN/html/arm__nnexamples__gru_8cpp.html') diff --git a/docs/NN/html/arm__nnexamples__gru_8cpp.html b/docs/NN/html/arm__nnexamples__gru_8cpp.html new file mode 100644 index 0000000..1b43700 --- /dev/null +++ b/docs/NN/html/arm__nnexamples__gru_8cpp.html @@ -0,0 +1,531 @@ + + + + + +arm_nnexamples_gru.cpp File Reference +CMSIS-NN: arm_nnexamples_gru.cpp File Reference + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
CMSIS-NN +  Version 1.1.0 +
+
CMSIS NN Software Library
+
+
+ +
+
    + +
+
+ + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
arm_nnexamples_gru.cpp File Reference
+
+
+ + + + + + + + + + +

+Macros

#define DIM_HISTORY
 
#define DIM_INPUT
 
#define DIM_VEC
 
#define USE_X4
 
+ + + + + +

+Functions

void gru_example (q15_t *scratch_input, uint16_t input_size, uint16_t history_size, q7_t *weights_update, q7_t *weights_reset, q7_t *weights_hidden_state, q7_t *bias_update, q7_t *bias_reset, q7_t *bias_hidden_state)
 
int main ()
 
+ + + + + + + + + + + + + + + + + + + + + +

+Variables

static q7_t update_gate_weights [DIM_VEC *DIM_HISTORY]
 
static q7_t reset_gate_weights [DIM_VEC *DIM_HISTORY]
 
static q7_t hidden_state_weights [DIM_VEC *DIM_HISTORY]
 
static q7_t update_gate_bias [DIM_HISTORY]
 
static q7_t reset_gate_bias [DIM_HISTORY]
 
static q7_t hidden_state_bias [DIM_HISTORY]
 
static q15_t test_input1 [DIM_INPUT]
 
static q15_t test_input2 [DIM_INPUT]
 
static q15_t test_history [DIM_HISTORY]
 
q15_t scratch_buffer [DIM_HISTORY *4+DIM_INPUT]
 
+

Macro Definition Documentation

+ +
+
+ + + + +
#define DIM_HISTORY
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + +
#define DIM_INPUT
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + +
#define DIM_VEC
+
+ +
+
+ +
+
+ + + + +
#define USE_X4
+
+ +
+
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void gru_example (q15_t * scratch_input,
uint16_t input_size,
uint16_t history_size,
q7_t * weights_update,
q7_t * weights_reset,
q7_t * weights_hidden_state,
q7_t * bias_update,
q7_t * bias_reset,
q7_t * bias_hidden_state 
)
+
+
+ + +

Variable Documentation

+ +
+
+ + + + + +
+ + + + +
q7_t hidden_state_bias[DIM_HISTORY]
+
+static
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + + +
+ + + + +
q7_t hidden_state_weights[DIM_VEC *DIM_HISTORY]
+
+static
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + + +
+ + + + +
q7_t reset_gate_bias[DIM_HISTORY]
+
+static
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + + +
+ + + + +
q7_t reset_gate_weights[DIM_VEC *DIM_HISTORY]
+
+static
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + +
q15_t scratch_buffer[DIM_HISTORY *4+DIM_INPUT]
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + + +
+ + + + +
q15_t test_history[DIM_HISTORY]
+
+static
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + + +
+ + + + +
q15_t test_input1[DIM_INPUT]
+
+static
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + + +
+ + + + +
q15_t test_input2[DIM_INPUT]
+
+static
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + + +
+ + + + +
q7_t update_gate_bias[DIM_HISTORY]
+
+static
+
+ +

Referenced by main().

+ +
+
+ +
+
+ + + + + +
+ + + + +
q7_t update_gate_weights[DIM_VEC *DIM_HISTORY]
+
+static
+
+ +

Referenced by main().

+ +
+
+
+
+ + + + -- cgit