Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
lscsoft
lalsuite
Commits
7ddc981c
Commit
7ddc981c
authored
Jun 25, 2019
by
Josh Willis
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'intel-psd-scaling' into 'master'
Fixed missing factor of 2 in mkl PSD See merge request
!826
parents
552aa497
18fd13c1
Pipeline
#68247
passed with stages
in 76 minutes and 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
lal/src/fft/IntelRealFFT_source.c
lal/src/fft/IntelRealFFT_source.c
+1
-0
No files found.
lal/src/fft/IntelRealFFT_source.c
View file @
7ddc981c
...
...
@@ -295,6 +295,7 @@ int POWER_SPECTRUM_FUNCTION(REAL_VECTOR_TYPE * spec, const REAL_VECTOR_TYPE * da
REAL_TYPE
re
=
plan
->
tmp
[
2
*
k
-
1
];
REAL_TYPE
im
=
plan
->
tmp
[
2
*
k
];
spec
->
data
[
k
]
=
re
*
re
+
im
*
im
;
spec
->
data
[
k
]
*=
2
.
0
;
/* accounts for negative frequency part */
}
/* Nyquist frequency */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment