Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
elpa
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
14
Issues
14
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Environments
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
elpa
elpa
Commits
7560a7b3
Commit
7560a7b3
authored
Sep 16, 2016
by
Andreas Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup of subkernel calls for AVX complex double precision block1
parent
fa9926fc
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
src/elpa2_kernels/elpa2_kernels_complex_avx-avx2_1hv_double_precision.c
...els/elpa2_kernels_complex_avx-avx2_1hv_double_precision.c
+6
-3
No files found.
src/elpa2_kernels/elpa2_kernels_complex_avx-avx2_1hv_double_precision.c
View file @
7560a7b3
...
...
@@ -113,11 +113,14 @@ void single_hh_trafo_complex_avx_avx2_1hv_double(double complex* q, double compl
{
hh_trafo_complex_kernel_12_AVX_1hv_double
(
&
q
[
i
],
hh
,
nb
,
ldq
);
}
if
(
nq
-
i
>
4
)
if
(
nq
-
i
==
0
)
{
hh_trafo_complex_kernel_8_AVX_1hv_double
(
&
q
[
i
],
hh
,
nb
,
ldq
)
;
return
;
}
else
if
(
nq
-
i
>
0
)
if
(
nq
-
i
==
8
)
{
hh_trafo_complex_kernel_8_AVX_1hv_double
(
&
q
[
i
],
hh
,
nb
,
ldq
);
}
else
{
hh_trafo_complex_kernel_4_AVX_1hv_double
(
&
q
[
i
],
hh
,
nb
,
ldq
);
}
...
...
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