aboutsummaryrefslogtreecommitdiff
path: root/includes/fftbench.h
diff options
context:
space:
mode:
authorSimon Quigley <tsimonq2@ubuntu.com>2017-06-19 15:19:47 -0500
committerSimon Quigley <tsimonq2@ubuntu.com>2017-06-19 15:19:47 -0500
commit79c11b29d78a70ae1b04af3b7ca4ec9bb12dd8d7 (patch)
treec4577e59ae13a8031f937991dcc3a63f68d18db5 /includes/fftbench.h
parent62eb92d94fa902b4a34dafce45547680a2655b40 (diff)
parent7aacc9f2510901c9e97b30fa9bcb550bb7f99c03 (diff)
Merge tag 'upstream/0.5.1+git20170605'
Upstream version 0.5.1+git20170605
Diffstat (limited to 'includes/fftbench.h')
-rw-r--r--includes/fftbench.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/includes/fftbench.h b/includes/fftbench.h
new file mode 100644
index 00000000..7c0afc3d
--- /dev/null
+++ b/includes/fftbench.h
@@ -0,0 +1,19 @@
+#ifndef __FFTBENCH_H__
+#define __FFTBENCH_H__
+
+#include <glib.h>
+
+typedef struct _FFTBench FFTBench;
+
+struct _FFTBench {
+ double **a, *b, *r;
+ int *p;
+};
+
+FFTBench *fft_bench_new(void);
+void fft_bench_run(FFTBench *fftbench);
+void fft_bench_free(FFTBench *fftbench);
+
+#endif /* __FFTBENCH_H__ */
+
+