Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
lscsoft
lalsuite
Commits
7c8c0e9d
Commit
7c8c0e9d
authored
Jun 26, 2019
by
Adam Mercer
💬
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'intel-psd-scaling-release' into 'o3-release'
lal: fixed missing factor in mkl PSD See merge request
!847
parents
01f827f5
668f3656
Pipeline
#68332
passed with stages
in 72 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 @
7c8c0e9d
...
...
@@ -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