AIfES 2  2.0.0
ailayer_tanh_default.h File Reference

Default implementation of the Tanh layer . More...

Go to the source code of this file.

Typedefs

typedef struct ailayer_tanh ailayer_tanh_f32_t
 
typedef struct ailayer_tanh ailayer_tanh_q31_t
 
typedef struct ailayer_tanh ailayer_tanh_q7_t
 

Functions

ailayer_tailayer_tanh_f32_default (ailayer_tanh_f32_t *layer, ailayer_t *input_layer)
 Initializes and connect an Tanh layer with the F32 default implementation. More...
 
ailayer_tailayer_tanh_q31_default (ailayer_tanh_q31_t *layer, ailayer_t *input_layer)
 Initializes and connect a Tanh layer with the Q31 default implementation. More...
 
ailayer_tailayer_tanh_q7_default (ailayer_tanh_q7_t *layer, ailayer_t *input_layer)
 Initializes and connect a Tanh layer with the Q7 default implementation. More...
 
void ailayer_tanh_calc_result_tensor_params_q31_default (ailayer_t *self)
 Calculate and set the quantization parameters for the result tensor of the tanh Q31 default implementation. More...
 
void ailayer_tanh_calc_result_tensor_params_q7_default (ailayer_t *self)
 Calculate and set the quantization parameters for the result tensor of the tanh Q7 default implementation. More...
 

Detailed Description

Default implementation of the Tanh layer .

Version
2.2.0

Hardware independent implementations of the Tanh layer in F32 data-type. For more information about the Tanh layer refer to ailayer_tanh.h.

Function Documentation

◆ ailayer_tanh_calc_result_tensor_params_q31_default()

void ailayer_tanh_calc_result_tensor_params_q31_default ( ailayer_t self)

Calculate and set the quantization parameters for the result tensor of the tanh Q31 default implementation.

Implementation of ailayer.calc_result_tensor_params.

The quantization parameters are pre-defined and the same as in the corresponding math function aimath_q31_default_tanh().

Parameters
*selfThe layer structure

◆ ailayer_tanh_calc_result_tensor_params_q7_default()

void ailayer_tanh_calc_result_tensor_params_q7_default ( ailayer_t self)

Calculate and set the quantization parameters for the result tensor of the tanh Q7 default implementation.

Implementation of ailayer.calc_result_tensor_params.

The quantization parameters are pre-defined and the same as in the corresponding math function aimath_q7_default_tanh().

Parameters
*selfThe layer structure

◆ ailayer_tanh_f32_default()

ailayer_t* ailayer_tanh_f32_default ( ailayer_tanh_f32_t layer,
ailayer_t input_layer 
)

Initializes and connect an Tanh layer with the F32 default implementation.

Example: Create the layer structure:

ailayer_tanh_f32_t tanh_layer;
General Tanh layer struct.
Definition: ailayer_tanh.h:47

or

ailayer_tanh_f32_t tanh_layer = AILAYER_TANH_F32_A();

Example: Initialize and connect the layer:

x = ailayer_tanh_f32_default(&tanh_layer, x);
ailayer_t * ailayer_tanh_f32_default(ailayer_tanh_f32_t *layer, ailayer_t *input_layer)
Initializes and connect an Tanh layer with the F32 default implementation.

Initializes the tanh layer structure with the float 32 default implementation

Parameters
*layerThe layer structure to initialize.
*input_layerThe prior layer.
Returns
The (successfully) initialized layer structure.

◆ ailayer_tanh_q31_default()

ailayer_t* ailayer_tanh_q31_default ( ailayer_tanh_q31_t layer,
ailayer_t input_layer 
)

Initializes and connect a Tanh layer with the Q31 default implementation.

The quantization parameters of the result tensor are automatically set to {shift = 31, zero_point = 0} because the output values are in the interval (-1, 1).

Example: Create the layer structure:

ailayer_tanh_q31_t tanh_layer;

or

ailayer_tanh_q31_t tanh_layer = AILAYER_TANH_Q31_M();

Example: Initialize and connect the layer:

x = ailayer_tanh_q31_default(&tanh_layer, x);
ailayer_t * ailayer_tanh_q31_default(ailayer_tanh_q31_t *layer, ailayer_t *input_layer)
Initializes and connect a Tanh layer with the Q31 default implementation.
Parameters
*layerThe layer structure to initialize.
*input_layerThe prior layer.
Returns
The (successfully) initialized layer structure.

◆ ailayer_tanh_q7_default()

ailayer_t* ailayer_tanh_q7_default ( ailayer_tanh_q7_t layer,
ailayer_t input_layer 
)

Initializes and connect a Tanh layer with the Q7 default implementation.

The quantization parameters of the result tensor are automatically set to {shift = 7, zero_point = 0} because the output values are in the interval (-1, 1).

Example: Create the layer structure:

ailayer_tanh_q7_t tanh_layer;

or

ailayer_tanh_q7_t tanh_layer = AILAYER_TANH_Q7_M();

Example: Initialize and connect the layer:

x = ailayer_tanh_q7_default(&tanh_layer, x);
ailayer_t * ailayer_tanh_q7_default(ailayer_tanh_q7_t *layer, ailayer_t *input_layer)
Initializes and connect a Tanh layer with the Q7 default implementation.
Parameters
*layerThe layer structure to initialize.
*input_layerThe prior layer.
Returns
The (successfully) initialized layer structure.