summaryrefslogtreecommitdiffstats
path: root/src/ffts_real_nd.h
diff options
context:
space:
mode:
authorJukka Ojanen <jukka.ojanen@linkotec.net>2014-10-29 16:13:33 +0200
committerJukka Ojanen <jukka.ojanen@linkotec.net>2014-10-29 16:13:33 +0200
commitc602cee1b51e8c532e4817d41d973deea8ab257a (patch)
treec70cbd83bc8aa2bc44ee99bd44a6f69979b22668 /src/ffts_real_nd.h
parentcf01293c196926d9bfccc84bc050682240feae35 (diff)
downloadffts-c602cee1b51e8c532e4817d41d973deea8ab257a.zip
ffts-c602cee1b51e8c532e4817d41d973deea8ab257a.tar.gz
Cleaning and reorganizing
Diffstat (limited to 'src/ffts_real_nd.h')
-rw-r--r--src/ffts_real_nd.h33
1 files changed, 13 insertions, 20 deletions
diff --git a/src/ffts_real_nd.h b/src/ffts_real_nd.h
index bc8ed75..d23a002 100644
--- a/src/ffts_real_nd.h
+++ b/src/ffts_real_nd.h
@@ -1,10 +1,10 @@
/*
-
+
This file is part of FFTS -- The Fastest Fourier Transform in the South
-
+
Copyright (c) 2012, Anthony M. Blake <amb@anthonix.com>
- Copyright (c) 2012, The University of Waikato
-
+ Copyright (c) 2012, The University of Waikato
+
All rights reserved.
Redistribution and use in source and binary forms, with or without
@@ -31,24 +31,17 @@
*/
-#ifndef __FFTS_REAL_ND_H__
-#define __FFTS_REAL_ND_H__
+#ifndef FFTS_REAL_ND_H
+#define FFTS_REAL_ND_H
-#include <stdint.h>
-#include <stddef.h>
-#include <stdio.h>
+#if defined (_MSC_VER) && (_MSC_VER >= 1020)
+#pragma once
+#endif
-#include "ffts_nd.h"
-#include "ffts_real.h"
#include "ffts.h"
+#include <stddef.h>
-#ifdef HAVE_NEON
- #include <arm_neon.h>
-#endif
-#ifdef HAVE_SSE
- #include <xmmintrin.h>
-#endif
-
-#endif
+ffts_plan_t *ffts_init_nd_real(int rank, size_t *Ns, int sign);
+ffts_plan_t *ffts_init_2d_real(size_t N1, size_t N2, int sign);
-// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3:
+#endif /* FFTS_REAL_ND_H */ \ No newline at end of file
OpenPOWER on IntegriCloud