Skip to content
Snippets Groups Projects
Commit f653696e authored by Jan Thorbecke's avatar Jan Thorbecke
Browse files

bug in cc1fft

parent 5e4669ba
No related branches found
No related tags found
No related merge requests found
......@@ -67,8 +67,9 @@ void ccmfft(complex *data, int n1, int n2, int ld1, int sign)
static DFTI_DESCRIPTOR_HANDLE handle[MAX_NUMTHREADS];
static int nprev[MAX_NUMTHREADS];
MKL_LONG Status;
int j, id;
int j;
#endif
int id;
#ifdef _OPENMP
id = omp_get_thread_num();
......
......@@ -61,8 +61,9 @@ void cr1fft(complex *cdata, REAL *rdata, int n, int sign)
static int nprev[MAX_NUMTHREADS];
REAL *tmp;
MKL_LONG Status;
int i, id;
int i;
#endif
int id;
#ifdef _OPENMP
id = omp_get_thread_num();
......
......@@ -75,8 +75,9 @@ void crmfft(complex *cdata, REAL *rdata, int n1, int n2, int ldc, int ldr, int s
static int nprev[MAX_NUMTHREADS];
REAL *tmp;
MKL_LONG Status;
int i, j, id;
int i, j;
#endif
int id;
#ifdef _OPENMP
id = omp_get_thread_num();
......
......@@ -60,8 +60,9 @@ void rc1fft(REAL *rdata, complex *cdata, int n, int sign)
static DFTI_DESCRIPTOR_HANDLE handle[MAX_NUMTHREADS];
static int nprev[MAX_NUMTHREADS];
MKL_LONG Status;
int i, id;
int i;
#endif
int id;
#ifdef _OPENMP
id = omp_get_thread_num();
......
......@@ -72,8 +72,9 @@ void rcmfft(REAL *rdata, complex *cdata, int n1, int n2, int ldr, int ldc, int s
static DFTI_DESCRIPTOR_HANDLE handle[MAX_NUMTHREADS];
static int nprev[MAX_NUMTHREADS];
MKL_LONG Status;
int i, j, id;
int i, j;
#endif
int id;
#ifdef _OPENMP
id = omp_get_thread_num();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment