Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
elpa
elpa
Commits
7d4d6829
Commit
7d4d6829
authored
Sep 14, 2016
by
Andreas Marek
Browse files
Wrong preprocessor ifdef in complex block2 kernel
parent
150880a4
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/elpa2_kernels/elpa2_kernels_complex_avx-avx2_2hv.c
View file @
7d4d6829
...
...
@@ -443,7 +443,7 @@ static __forceinline void hh_trafo_complex_kernel_8_AVX_2hv(double complex* q, d
q1
=
_mm256_add_pd
(
q1
,
_mm256_addsub_pd
(
_mm256_mul_pd
(
h2_real
,
y1
),
_mm256_shuffle_pd
(
tmp1
,
tmp1
,
0x5
)));
#endif
tmp2
=
_mm256_mul_pd
(
h2_imag
,
y2
);
#ifdef __FMA
4
_
#ifdef __
ELPA_USE_
FMA_
q2
=
_mm256_add_pd
(
q2
,
_mm256_FMADDSUB_pd
(
h2_real
,
y2
,
_mm256_shuffle_pd
(
tmp2
,
tmp2
,
0x5
)));
#else
q2
=
_mm256_add_pd
(
q2
,
_mm256_addsub_pd
(
_mm256_mul_pd
(
h2_real
,
y2
),
_mm256_shuffle_pd
(
tmp2
,
tmp2
,
0x5
)));
...
...
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