first attempt of C implementation of fec encoder (not tested yet due to NEON/DOT_PROD not being separable)

This commit is contained in:
Jan Buethe 2022-10-18 19:30:23 +02:00
parent 9629ea6a70
commit c1b357ed47
8 changed files with 417 additions and 2 deletions

View file

@ -98,6 +98,8 @@ void compute_activation(float *output, const float *input, int N, int activation
void _lpcnet_compute_dense(const DenseLayer *layer, float *output, const float *input);
void compute_dense(const DenseLayer *layer, float *output, const float *input);
void compute_mdense(const MDenseLayer *layer, float *output, const float *input);
int sample_mdense(const MDenseLayer *layer, const float *input, const float *sampling_logit_table, kiss99_ctx *rng);