Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OpenSource
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Willem Thorbecke
OpenSource
Commits
f653696e
Commit
f653696e
authored
5 years ago
by
Jan Thorbecke
Browse files
Options
Downloads
Patches
Plain Diff
bug in cc1fft
parent
5e4669ba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
FFTlib/ccmfft.c
+2
-1
2 additions, 1 deletion
FFTlib/ccmfft.c
FFTlib/cr1fft.c
+2
-1
2 additions, 1 deletion
FFTlib/cr1fft.c
FFTlib/crmfft.c
+2
-1
2 additions, 1 deletion
FFTlib/crmfft.c
FFTlib/rc1fft.c
+2
-1
2 additions, 1 deletion
FFTlib/rc1fft.c
FFTlib/rcmfft.c
+2
-1
2 additions, 1 deletion
FFTlib/rcmfft.c
with
10 additions
and
5 deletions
FFTlib/ccmfft.c
+
2
−
1
View file @
f653696e
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
FFTlib/cr1fft.c
+
2
−
1
View file @
f653696e
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
FFTlib/crmfft.c
+
2
−
1
View file @
f653696e
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
FFTlib/rc1fft.c
+
2
−
1
View file @
f653696e
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
FFTlib/rcmfft.c
+
2
−
1
View file @
f653696e
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment