aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/includes/fftbench.h
diff options
context:
space:
mode:
authorLeandro A. F. Pereira <leandro@hardinfo.org>2010-05-03 09:25:43 -0300
committerLeandro A. F. Pereira <leandro@hardinfo.org>2010-05-03 09:25:43 -0300
commit9a50155ec3e27aa6cedf3f118196f1947c769a29 (patch)
treec23cc6949b227b9e09432af038a44ccb81d92ce6 /hardinfo2/includes/fftbench.h
parentca5a3e84296a34c2391374942001cfaf1d8395a6 (diff)
Use CMake instead of ToscoConf.
Diffstat (limited to 'hardinfo2/includes/fftbench.h')
-rw-r--r--hardinfo2/includes/fftbench.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/hardinfo2/includes/fftbench.h b/hardinfo2/includes/fftbench.h
new file mode 100644
index 00000000..7c0afc3d
--- /dev/null
+++ b/hardinfo2/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__ */
+
+