summaryrefslogtreecommitdiffstats
path: root/include/ffts.h
diff options
context:
space:
mode:
authorAnthony Blake <anthonix@me.com>2012-08-09 13:36:45 +1200
committerAnthony Blake <anthonix@me.com>2012-08-09 13:36:45 +1200
commit829c8fbb2fe38c0f5c45d6f081c53dde73dc605d (patch)
tree50a3148093431a325aaf876e177524b1883223de /include/ffts.h
parent9993b4b77bd21971c2e1a43dbb45567b692698c7 (diff)
downloadffts-829c8fbb2fe38c0f5c45d6f081c53dde73dc605d.zip
ffts-829c8fbb2fe38c0f5c45d6f081c53dde73dc605d.tar.gz
Pre- dynamic code generation
Diffstat (limited to 'include/ffts.h')
-rw-r--r--include/ffts.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ffts.h b/include/ffts.h
index e266491..9bd0dbe 100644
--- a/include/ffts.h
+++ b/include/ffts.h
@@ -45,7 +45,7 @@ struct _ffts_plan_t {
ptrdiff_t *is;
ptrdiff_t *offsets;
void __attribute__ ((aligned(32))) **ws;
- void (*firstpass)(const float * restrict, float * restrict, size_t, struct _ffts_plan_t * restrict);
+ void (*firstpass)(const float * restrict, float * restrict, struct _ffts_plan_t * restrict);
size_t i0, i1, i2;
uint64_t n_bits, leaftime;
@@ -57,6 +57,6 @@ typedef struct _ffts_plan_t ffts_plan_t;
void ffts_execute(ffts_plan_t * restrict, const void * restrict, const void * restrict);
ffts_plan_t *ffts_init(size_t N, int sign);
-
+void ffts_free(ffts_plan_t *);
#endif
OpenPOWER on IntegriCloud