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
860222c6
Commit
860222c6
authored
Jul 26, 2017
by
Andreas Marek
Browse files
Gitlab CI: show test-suite.log on GPU tests
parent
3d314b9d
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
860222c6
...
...
@@ -870,40 +870,63 @@ gfortran-single-precision-mpi-noomp-no-assumed-size-avx2-jobs:
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
# no coverage on system with tag AVX2
#
## gfortran double precision mpi noomp AVX2 COVERAGE
#gfortran-double-precision-mpi-noomp-coverage-avx2-jobs
:
# tags:
# - avx2
# script:
# - ./autogen.sh
# - ./configure --enable-option-checking=fatal CFLAGS="--coverage -O3 -mavx2 -mfma" FCFLAGS="--coverage -O3 -mavx2 -mfma" SCALAPACK_LDFLAGS="$MKL_GFORTRAN_SCALAPACK_LDFLAGS_MPI_NO_OMP" SCALAPACK_FCFLAGS="$MKL_GFORTRAN_SCALAPACK_FCFLAGS_MPI_NO_OMP" FC=mpif90
# - make -j 8
# - export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
# - make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
# - grep -i "Expected %stop" test-suite.log && exit 1 || true ;
# - ./ci_coverage_collect
# artifacts:
# paths:
# - coverage_data
#
## gfortran single precision mpi noomp AVX2 COVERAGE
#gfortran-double-precision-mpi-noomp-coverage-avx2-jobs:
# tags:
# - avx2
# script:
# - ./autogen.sh
# - ./configure --enable-option-checking=fatal CFLAGS="--coverage -O3 -mavx2 -mfma" FCFLAGS="--coverage -O3 -mavx2 -mfma" SCALAPACK_LDFLAGS="$MKL_GFORTRAN_SCALAPACK_LDFLAGS_MPI_NO_OMP" SCALAPACK_FCFLAGS="$MKL_GFORTRAN_SCALAPACK_FCFLAGS_MPI_NO_OMP" FC=mpif90 --enable-single-precision
# - make -j 8
# - export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
# - make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
# - grep -i "Expected %stop" test-suite.log && exit 1 || true ;
# - ./ci_coverage_collect
# artifacts:
# paths:
# - coverage_data
#
# gfortran double precision mpi noomp AVX2 coverage
gfortran-double-precision-mpi-noomp-avx2-coverage-jobs
:
tags
:
-
avx2-coverage
script
:
-
./autogen.sh
-
./configure --enable-option-checking=fatal CFLAGS="-O3 -march=haswell -mavx2 -mfma --coverage" FCFLAGS="--coverage -O3 -march=haswell -mavx2 -mfma" SCALAPACK_LDFLAGS="$MKL_GFORTRAN_SCALAPACK_LDFLAGS_MPI_NO_OMP" SCALAPACK_FCFLAGS="$MKL_GFORTRAN_SCALAPACK_FCFLAGS_MPI_NO_OMP" FC=mpif90
-
make -j
8
-
export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
-
export ELPA_FORCE_complex_kernel=ELPA_2STAGE_COMPLEX_AVX2_BLOCK1
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
export ELPA_FORCE_real_kernel=ELPA_2STAGE_REAL_AVX2_BLOCK2
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
export ELPA_FORCE_complex_kernel=ELPA_2STAGE_COMPLEX_AVX2_BLOCK2
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
export ELPA_FORCE_real_kernel=ELPA_2STAGE_REAL_AVX2_BLOCK4
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
export ELPA_FORCE_complex_kernel=ELPA_2STAGE_COMPLEX_AVX2_BLOCK2
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
export ELPA_FORCE_real_kernel=ELPA_2STAGE_REAL_AVX2_BLOCK6
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
-
./ci_coverage_collect
artifacts
:
paths
:
-
coverage_data
# gfortran single precision mpi noomp AVX2 coverage
gfortran-single-precision-mpi-noomp-avx2-coverage-jobs
:
tags
:
-
avx2-coverage
script
:
-
./autogen.sh
-
./configure --enable-option-checking=fatal CFLAGS="-O3 -march=haswell -mavx2 -mfma --coverage" FCFLAGS="--coverage -O3 -march=haswell -mavx2 -mfma" SCALAPACK_LDFLAGS="$MKL_GFORTRAN_SCALAPACK_LDFLAGS_MPI_NO_OMP" SCALAPACK_FCFLAGS="$MKL_GFORTRAN_SCALAPACK_FCFLAGS_MPI_NO_OMP" --enable-single-precision FC=mpif90
-
make -j
8
-
export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
-
export ELPA_FORCE_complex_kernel=ELPA_2STAGE_COMPLEX_AVX2_BLOCK1
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
export ELPA_FORCE_real_kernel=ELPA_2STAGE_REAL_AVX2_BLOCK2
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
export ELPA_FORCE_complex_kernel=ELPA_2STAGE_COMPLEX_AVX2_BLOCK2
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
export ELPA_FORCE_real_kernel=ELPA_2STAGE_REAL_AVX2_BLOCK4
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
export ELPA_FORCE_complex_kernel=ELPA_2STAGE_COMPLEX_AVX2_BLOCK2
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
export ELPA_FORCE_real_kernel=ELPA_2STAGE_REAL_AVX2_BLOCK6
-
make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
-
./ci_coverage_collect
artifacts
:
paths
:
-
coverage_data
## gfortran double precision mpi noomp AVX2, no assumed size COVERAGE
#gfortran-double-precision-mpi-noomp-no-assumed-size-coverage-avx2-jobs:
# tags:
...
...
@@ -1584,7 +1607,7 @@ intel-double-precision-mpi-noomp-cuda-jobs-blocksize-32:
-
make -j
8
-
export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
-
GPJOBID=$(/home/elpa/bin/reserve_timeslot/reserve_timeslot)
-
make check TASKS=2 TEST_FLAGS='150 50 32'
-
make check TASKS=2 TEST_FLAGS='150 50 32'
|| { cat test-suite.log; exit 1; }
-
cat test-suite.log
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
-
gpschedule -d $GPJOBID
...
...
@@ -1644,7 +1667,7 @@ intel-double-precision-mpi-noomp-cuda-jobs-blocksize-16:
-
make -j
8
-
export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
-
GPJOBID=$(/home/elpa/bin/reserve_timeslot/reserve_timeslot)
-
make check TASKS=2 TEST_FLAGS='150 50 16'
-
make check TASKS=2 TEST_FLAGS='150 50 16'
|| { cat test-suite.log; exit 1; }
-
cat test-suite.log
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
-
gpschedule -d $GPJOBID
...
...
@@ -1701,7 +1724,7 @@ intel-double-precision-nompi-noomp-cuda-jobs:
-
make -j
8
-
export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
-
GPJOBID=$(/home/elpa/bin/reserve_timeslot/reserve_timeslot)
-
make check TASKS=2 TEST_FLAGS='150 50 16'
-
make check TASKS=2 TEST_FLAGS='150 50 16'
|| { cat test-suite.log; exit 1; }
-
cat test-suite.log
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
-
gpschedule -d $GPJOBID
...
...
@@ -1718,7 +1741,7 @@ intel-single-precision-mpi-noomp-cuda-jobs:
-
make -j
8
-
export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
-
GPJOBID=$(/home/elpa/bin/reserve_timeslot/reserve_timeslot)
-
make check TASKS=2 TEST_FLAGS='150 50 128'
-
make check TASKS=2 TEST_FLAGS='150 50 128'
|| { cat test-suite.log; exit 1; }
-
cat test-suite.log
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
-
gpschedule -d $GPJOBID
...
...
@@ -1735,7 +1758,7 @@ intel-single-precision-mpi-noomp-cuda-jobs-blocksize-64:
-
make -j
8
-
export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
-
GPJOBID=$(/home/elpa/bin/reserve_timeslot/reserve_timeslot)
-
make check TASKS=2 TEST_FLAGS='150 50 64'
-
make check TASKS=2 TEST_FLAGS='150 50 64'
|| { cat test-suite.log; exit 1; }
-
cat test-suite.log
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
-
gpschedule -d $GPJOBID
...
...
@@ -1753,7 +1776,7 @@ intel-single-precision-mpi-noomp-cuda-larger-jobs:
-
make -j
8
-
export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
-
GPJOBID=$(/home/elpa/bin/reserve_timeslot/reserve_timeslot)
-
make check TASKS=2 TEST_FLAGS='1500 500 128'
-
make check TASKS=2 TEST_FLAGS='1500 500 128'
|| { cat test-suite.log; exit 1; }
-
cat test-suite.log
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
-
gpschedule -d $GPJOBID
...
...
@@ -1771,7 +1794,7 @@ intel-single-precision-nompi-noomp-cuda-jobs:
-
make -j
8
-
export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
-
GPJOBID=$(/home/elpa/bin/reserve_timeslot/reserve_timeslot)
-
make check TASKS=2 TEST_FLAGS='150 50 128'
-
make check TASKS=2 TEST_FLAGS='150 50 128'
|| { cat test-suite.log; exit 1; }
-
cat test-suite.log
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
-
gpschedule -d $GPJOBID
...
...
@@ -1788,7 +1811,7 @@ intel-single-precision-nompi-noomp-cuda-larger-jobs:
-
make -j
8
-
export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH
-
GPJOBID=$(/home/elpa/bin/reserve_timeslot/reserve_timeslot)
-
make check TASKS=2 TEST_FLAGS='1500 500 128'
-
make check TASKS=2 TEST_FLAGS='1500 500 128'
|| { cat test-suite.log; exit 1; }
-
cat test-suite.log
-
grep -i "Expected %stop" test-suite.log && exit 1 ||
true
;
-
gpschedule -d $GPJOBID
...
...
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