AIfES 2 2.0.0
aimath_f32_cmsis.h
Go to the documentation of this file.
1
27#include "aifes_config.h"
28
29#if __arm__
30#ifdef AIFES_WITH_CMSIS
31
32#ifndef AIMATH_F32_CMSIS
33#define AIMATH_F32_CMSIS
34
36
37
114void aimath_f32_cmsis_linear(const aitensor_t *a, const aitensor_t *b, const aitensor_t *c, aitensor_t *result);
115
128
129#endif // AIMATH_F32_CMSIS
130
131#endif // AIFES_WITH_CMSIS
132#endif //__arm__
Definition of the F32 (aif32) data-type.
void aimath_f32_cmsis_mat_mul(const aitensor_t *a, const aitensor_t *b, aitensor_t *result)
Performs a matrix multiplication of f32 tensors a and b, using the ARM CMSIS DSP.
void aimath_f32_cmsis_linear(const aitensor_t *a, const aitensor_t *b, const aitensor_t *c, aitensor_t *result)
Performs a matrix multiplication of f32 tensors a and b and adds a 1D tensor c to each row,...
A tensor in AIfES.
Definition: aifes_math.h:92