mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 13:16:44 +01:00
Crates io (#76)
* crates re-organisation * fixed typo in layout & added test for vmp_apply * updated dependencies
This commit is contained in:
committed by
GitHub
parent
dce4d82706
commit
a1de248567
@@ -0,0 +1,18 @@
|
||||
#include "cplx_fft_internal.h"
|
||||
#include "cplx_fft_private.h"
|
||||
|
||||
EXPORT void cplx_from_znx32(const CPLX_FROM_ZNX32_PRECOMP* tables, void* r, const int32_t* a) {
|
||||
tables->function(tables, r, a);
|
||||
}
|
||||
EXPORT void cplx_from_tnx32(const CPLX_FROM_TNX32_PRECOMP* tables, void* r, const int32_t* a) {
|
||||
tables->function(tables, r, a);
|
||||
}
|
||||
EXPORT void cplx_to_tnx32(const CPLX_TO_TNX32_PRECOMP* tables, int32_t* r, const void* a) {
|
||||
tables->function(tables, r, a);
|
||||
}
|
||||
EXPORT void cplx_fftvec_mul(const CPLX_FFTVEC_MUL_PRECOMP* tables, void* r, const void* a, const void* b) {
|
||||
tables->function(tables, r, a, b);
|
||||
}
|
||||
EXPORT void cplx_fftvec_addmul(const CPLX_FFTVEC_ADDMUL_PRECOMP* tables, void* r, const void* a, const void* b) {
|
||||
tables->function(tables, r, a, b);
|
||||
}
|
||||
Reference in New Issue
Block a user