#ifndef FFT_H_INCLUDED\r
#define FFT_H_INCLUDED\r
\r
-#define BIT_SIZE 3\r
-#define SIZE (1<<BIT_SIZE)\r
-\r
/* Define some parameters for this FFT algorithm. We prefix them \r
* with PARAM_ so we can still use variable names like 'n' :-) */\r
/* Change these: */\r
/** 2log of total FFT size */\r
#define PARAM_n 4\r
\r
+/* Note that the FFT size on each tile 2^(n-q) must be at least 8! */\r
+\r
/* But don't change these: */\r
/* Number of tiles */\r
#define PARAM_Q (1 << PARAM_q)\r