SSCMA-Micro CPP SDK  v2.0.0
SSCMA-Micro is a cross-platform machine learning inference framework designed for embedded devices.
ma_math_vectors.h
Go to the documentation of this file.
1 #ifndef _MA_MATH_VECTORS_H_
2 #define _MA_MATH_VECTORS_H_
3 
4 #include <cstdint>
5 #include <cstddef>
6 
7 namespace ma::math {
8 
9 void softmax(float* data, size_t size);
10 
11 void fastSoftmax(float* data, size_t size);
12 
13 } // namespace ma::math
14 
15 #endif
Definition: ma_math_scalars.h:9
void softmax(float *data, size_t size)
Definition: ma_math_vectors.cpp:39
void fastSoftmax(float *data, size_t size)
Definition: ma_math_vectors.cpp:41