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
873ff0aa
Commit
873ff0aa
authored
Jun 09, 2019
by
Andreas Marek
Browse files
Test complex AVX Block2 kernel
parent
b57f0f88
Changes
8
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
873ff0aa
...
...
@@ -794,7 +794,6 @@ EXTRA_DIST = \
src/elpa2/kernels/complex_avx512_1hv_template.c
\
src/elpa2/kernels/complex_avx512_2hv_template.c
\
src/elpa2/kernels/complex_128bit_256bit_512bit_BLOCK_template.c
\
src/elpa2/kernels/complex_avx-avx2_2hv_template.c
\
src/elpa2/kernels/complex_template.F90
\
src/elpa2/kernels/real_vsx_4hv_template.c
\
src/elpa2/kernels/real_vsx_6hv_template.c
\
...
...
ci_test_scripts/run_ci_tests.sh
View file @
873ff0aa
...
...
@@ -190,7 +190,10 @@ then
#if [ $exitCode -ne 0 ]
#then
if
[
-f
./test-suite.log
]
then
cat
./test-suite.log
fi
#fi
exit
$exitCode
...
...
ci_test_scripts/run_distcheck_tests.sh
View file @
873ff0aa
...
...
@@ -130,6 +130,10 @@ then
#then
cat
./ELPA_CI.err.
*
#fi
if
[
-f
./test-suite.log
]
then
cat
./test-suite.log
fi
fi
...
...
ci_test_scripts/run_project_tests.sh
View file @
873ff0aa
...
...
@@ -188,6 +188,10 @@ then
#then
cat
./ELPA_CI.err.
*
#fi
if
[
-f
./test-suite.log
]
then
cat
./test-suite.log
fi
fi
...
...
src/elpa2/kernels/complex_128bit_256bit_512bit_BLOCK_template.c
View file @
873ff0aa
...
...
@@ -528,6 +528,36 @@ static __forceinline void CONCAT_8ARGS(hh_trafo_complex_kernel_,ROW_LENGTH,_,SIM
!f>#endif
*/
/*
!f>#if defined(HAVE_AVX) || defined(HAVE_AVX2)
!f> interface
!f> subroutine double_hh_trafo_complex_AVX_AVX2_2hv_double(q, hh, pnb, pnq, pldq, pldh) &
!f> bind(C, name="double_hh_trafo_complex_AVX_AVX2_2hv_double")
!f> use, intrinsic :: iso_c_binding
!f> integer(kind=c_int) :: pnb, pnq, pldq, pldh
!f> ! complex(kind=c_double_complex) :: q(*)
!f> type(c_ptr), value :: q
!f> complex(kind=c_double_complex) :: hh(pnb,2)
!f> end subroutine
!f> end interface
!f>#endif
*/
/*
!f>#if defined(HAVE_AVX) || defined(HAVE_AVX2)
!f> interface
!f> subroutine double_hh_trafo_complex_AVX_AVX2_2hv_single(q, hh, pnb, pnq, pldq, pldh) &
!f> bind(C, name="double_hh_trafo_complex_AVX_AVX2_2hv_single")
!f> use, intrinsic :: iso_c_binding
!f> integer(kind=c_int) :: pnb, pnq, pldq, pldh
!f> ! complex(kind=c_float_complex) :: q(*)
!f> type(c_ptr), value :: q
!f> complex(kind=c_float_complex) :: hh(pnb,2)
!f> end subroutine
!f> end interface
!f>#endif
*/
void
CONCAT_7ARGS
(
PREFIX
,
_hh_trafo_complex_
,
SIMD_SET
,
_
,
BLOCK
,
hv_
,
WORD_LENGTH
)
(
DATA_TYPE_PTR
q
,
DATA_TYPE_PTR
hh
,
int
*
pnb
,
int
*
pnq
,
int
*
pldq
#ifdef BLOCK1
)
...
...
src/elpa2/kernels/complex_avx-avx2_2hv_double_precision.c
View file @
873ff0aa
...
...
@@ -51,7 +51,7 @@
#define VEC_SET AVX_256
#define BLOCK2 1
#include "../../general/precision_macros.h"
#include "complex_
avx-avx2_2hv
_template.c"
#include "complex_
128bit_256bit_512bit_BLOCK
_template.c"
#undef VEC_SET
#undef BLOCK2
#undef DOUBLE_PRECISION
...
...
src/elpa2/kernels/complex_avx-avx2_2hv_single_precision.c
View file @
873ff0aa
...
...
@@ -51,7 +51,7 @@
#define VEC_SET AVX_256
#define BLOCK2 1
#include "../../general/precision_macros.h"
#include "complex_
avx-avx2_2hv
_template.c"
#include "complex_
128bit_256bit_512bit_BLOCK
_template.c"
#undef VEC_SET
#undef BLOCK2
#undef SINGLE_PRECISION
...
...
src/elpa2/kernels/complex_avx-avx2_2hv_template.c
deleted
100644 → 0
View file @
b57f0f88
This diff is collapsed.
Click to expand it.
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