mirror of
https://github.com/xiph/opus.git
synced 2025-06-03 09:07:42 +00:00
C implementation of FARGAN
This commit is contained in:
parent
9e76a7bfb8
commit
35cb8d7f66
11 changed files with 487 additions and 6 deletions
|
@ -146,6 +146,7 @@ void compute_generic_dense(const LinearLayer *layer, float *output, const float
|
|||
void compute_generic_gru(const LinearLayer *input_weights, const LinearLayer *recurrent_weights, float *state, const float *in);
|
||||
void compute_generic_conv1d(const LinearLayer *layer, float *output, float *mem, const float *input, int input_size, int activation);
|
||||
void compute_generic_conv1d_dilation(const LinearLayer *layer, float *output, float *mem, const float *input, int input_size, int dilation, int activation);
|
||||
void compute_glu(const LinearLayer *layer, float *output, const float *input);
|
||||
void compute_gated_activation(const LinearLayer *layer, float *output, const float *input, int activation);
|
||||
|
||||
void compute_activation(float *output, const float *input, int N, int activation);
|
||||
|
@ -176,6 +177,7 @@ extern const WeightArray lpcnet_plc_arrays[];
|
|||
extern const WeightArray rdovaeenc_arrays[];
|
||||
extern const WeightArray rdovaedec_arrays[];
|
||||
extern const WeightArray fwgan_arrays[];
|
||||
extern const WeightArray fargan_arrays[];
|
||||
extern const WeightArray pitchdnn_arrays[];
|
||||
|
||||
int linear_init(LinearLayer *layer, const WeightArray *arrays,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue