Skip to content
GitLab
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
567fc568
Commit
567fc568
authored
Nov 20, 2017
by
Andreas Marek
Browse files
Correct errors in VSX block2 kernel
parent
afa7e5e3
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
567fc568
...
...
@@ -251,12 +251,12 @@ endif
#endif
#endif
#
if
WITH_REAL_VSX_BLOCK4_KERNEL
libelpa@SUFFIX@
_private_la_SOURCES
+=
src/elpa2/kernels/real_vsx_4hv_double_precision.c
if
WANT_SINGLE_PRECISION_REAL
libelpa@SUFFIX@
_private_la_SOURCES
+=
src/elpa2/kernels/real_vsx_4hv_single_precision.c
endif
endif
#
if WITH_REAL_VSX_BLOCK4_KERNEL
#
libelpa@SUFFIX@_private_la_SOURCES += src/elpa2/kernels/real_vsx_4hv_double_precision.c
#
if WANT_SINGLE_PRECISION_REAL
#
libelpa@SUFFIX@_private_la_SOURCES += src/elpa2/kernels/real_vsx_4hv_single_precision.c
#
endif
#
endif
if
WITH_REAL_SSE_BLOCK4_KERNEL
libelpa@SUFFIX@
_private_la_SOURCES
+=
src/elpa2/kernels/real_sse_4hv_double_precision.c
...
...
generate_gitlab_ci_tests.py
View file @
567fc568
...
...
@@ -623,8 +623,8 @@ for cc, fc, m, o, p, a, b, g, cov, instr, addr, na in product(
print
(
" - export SRUN_COMMANDLINE_CONFIGURE=
\"
--partition=$SLURMPARTITION --nodelist=$SLURMHOST --time=$CONFIGURETIME --constraint=$CONTSTRAINTS --mem=$REQUESTED_MEMORY
\"
"
)
print
(
" - export SRUN_COMMANDLINE_BUILD=
\"
--partition=$SLURMPARTITION --nodelist=$SLURMHOST --time=$BUILDTIME --constraint=$CONTSTRAINTS --mem=$REQUESTED_MEMORY
\"
"
)
print
(
" - export SRUN_COMMANDLINE_RUN=
\"
--partition=$SLURMPARTITION --nodelist=$SLURMHOST --time=$RUNTIME --constraint=$CONTSTRAINTS --mem=$REQUESTED_MEMORY
\"
"
)
print
(
" - echo
\"
srun --ntasks=1 --cpus-per-task=1 $SRUN_COMMANDLINE_CONFIGURE
\"
"
)
print
(
" - srun --threads-per-core=1 --ntasks-per-core=1 --ntasks=1 --cpus-per-task=1 $SRUN_COMMANDLINE_CONFIGURE"
\
print
(
" - echo
\"
srun
--cpu_bind=cores --hint=nomultithread
--ntasks=1 --cpus-per-task=1 $SRUN_COMMANDLINE_CONFIGURE
\"
"
)
print
(
" - srun
--cpu_bind=cores --hint=nomultithread
--threads-per-core=1 --ntasks-per-core=1 --ntasks=1 --cpus-per-task=1 $SRUN_COMMANDLINE_CONFIGURE"
\
+
" /scratch/elpa/bin/configure_elpa.sh"
\
+
"
\"
CC=
\\\"
"
+
c_compiler_wrapper
+
"
\\\"
"
+
" CFLAGS=
\\\"
"
+
CFLAGS
+
"
\\\"
"
\
+
" FC=
\\\"
"
+
fortran_compiler_wrapper
+
"
\\\"
"
+
" FCFLAGS=
\\\"
"
+
FCFLAGS
+
"
\\\"
"
\
...
...
@@ -638,8 +638,8 @@ for cc, fc, m, o, p, a, b, g, cov, instr, addr, na in product(
if
(
instr
==
"sse"
or
(
instr
==
"avx"
and
g
!=
"with-gpu"
)):
print
(
" - make -j 8"
)
if
(
instr
==
"avx2"
or
instr
==
"avx512"
or
instr
==
"knl"
or
g
==
"with-gpu"
):
print
(
" - echo
\"
srun --ntasks=1 --cpus-per-task=8 $SRUN_COMMANDLINE_BUILD
\"
"
)
print
(
" - srun --threads-per-core=1 --ntasks-per-core=1 --ntasks=1 --cpus-per-task=8 $SRUN_COMMANDLINE_BUILD /scratch/elpa/bin/build_elpa.sh"
)
print
(
" - echo
\"
srun
--cpu_bind=cores --hint=nomultithread
--ntasks=1 --cpus-per-task=8 $SRUN_COMMANDLINE_BUILD
\"
"
)
print
(
" - srun
--cpu_bind=cores --hint=nomultithread
--threads-per-core=1 --ntasks-per-core=1 --ntasks=1 --cpus-per-task=8 $SRUN_COMMANDLINE_BUILD /scratch/elpa/bin/build_elpa.sh"
)
# do the test
if
(
instr
==
"sse"
or
(
instr
==
"avx"
and
g
!=
"with-gpu"
)):
...
...
@@ -662,8 +662,8 @@ for cc, fc, m, o, p, a, b, g, cov, instr, addr, na in product(
openmp_threads
=
" 1 "
for
na
in
sorted
(
matrix_size
.
keys
(),
reverse
=
True
):
cores
=
set_number_of_cores
(
MPI_TASKS
,
o
)
print
(
" - echo
\"
srun --ntasks=1 --cpus-per-task="
+
str
(
cores
)
+
" $SRUN_COMMANDLINE_RUN
\"
"
)
print
(
" - srun --threads-per-core=1 --ntasks-per-core=1 --ntasks=1 --cpus-per-task="
+
str
(
cores
)
+
" $SRUN_COMMANDLINE_RUN
\
print
(
" - echo
\"
srun
--cpu_bind=cores --hint=nomultithread
--ntasks=1 --cpus-per-task="
+
str
(
cores
)
+
" $SRUN_COMMANDLINE_RUN
\"
"
)
print
(
" - srun
--cpu_bind=cores --hint=nomultithread
--threads-per-core=1 --ntasks-per-core=1 --ntasks=1 --cpus-per-task="
+
str
(
cores
)
+
" $SRUN_COMMANDLINE_RUN
\
/scratch/elpa/bin/run_elpa.sh "
+
str
(
MPI_TASKS
)
+
openmp_threads
+
"
\"
TEST_FLAGS=
\\\"
"
+
matrix_size
[
na
]
+
" "
+
str
(
nev
)
+
" "
+
str
(
nblk
)
+
"
\\\"
|| { cat test-suite.log; exit 1; }
\"
"
)
if
(
cov
==
"coverage"
):
...
...
src/elpa2/kernels/real_vsx_2hv_template.c
View file @
567fc568
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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