AIfES 2  2.0.0
aimath_f32_cmsis.h
Go to the documentation of this file.
1 
26 #ifndef AIMATH_F32_CMSIS
27 #define AIMATH_F32_CMSIS
28 
29 
31 
32 #if __arm__
33 #ifdef AIFES_WITH_CMSIS
34 
35 
112 void aimath_f32_cmsis_linear(const aitensor_t *a, const aitensor_t *b, const aitensor_t *c, aitensor_t *result);
113 
125 void aimath_f32_cmsis_mat_mul(const aitensor_t *a, const aitensor_t *b, aitensor_t *result);
126 
127 #endif // AIFES_WITH_CMSIS
128 #endif //__arm__
129 #endif // AIMATH_F32_CMSIS
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:98