Add R benchmarks at higher core counts

This commit is contained in:
Martin Kroeker 2020-08-20 16:42:27 +02:00 committed by GitHub
parent 9f0ef9cdfc
commit 35557ec926
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -159,13 +159,14 @@ steps:
commands: commands:
- echo "MAKE_FLAGS:= $COMMON_FLAGS" - echo "MAKE_FLAGS:= $COMMON_FLAGS"
- apt-get update -y - apt-get update -y
- apt-get install -y make $CC gfortran perl python g++ - apt-get install -y make $CC gfortran perl python g++ r-base
- $CC --version - $CC --version
- make QUIET_MAKE=1 $COMMON_FLAGS - make QUIET_MAKE=1 $COMMON_FLAGS
- make -C test $COMMON_FLAGS - make -C test $COMMON_FLAGS
- make -C ctest $COMMON_FLAGS - make -C ctest $COMMON_FLAGS
- make -C utest $COMMON_FLAGS - make -C utest $COMMON_FLAGS
- make -C cpp_thread_test dgemm_tester - make -C cpp_thread_test dgemm_tester
- Rscript benchmark/scripts/R/deig.R
--- ---
kind: pipeline kind: pipeline
name: epyc_native_test name: epyc_native_test
@ -183,10 +184,13 @@ steps:
commands: commands:
- echo "MAKE_FLAGS:= $COMMON_FLAGS" - echo "MAKE_FLAGS:= $COMMON_FLAGS"
- apt-get update -y - apt-get update -y
- apt-get install -y make $CC gfortran perl python g++ - apt-get install -y make $CC gfortran perl python g++ r-base
- $CC --version - $CC --version
- make QUIET_MAKE=1 $COMMON_FLAGS - make QUIET_MAKE=1 $COMMON_FLAGS
- make -C test $COMMON_FLAGS - make -C test $COMMON_FLAGS
- make -C ctest $COMMON_FLAGS - make -C ctest $COMMON_FLAGS
- make -C utest $COMMON_FLAGS - make -C utest $COMMON_FLAGS
- make -C cpp_thread_test dgemm_tester - make -C cpp_thread_test dgemm_tester
- Rscript benchmark/scripts/R/deig.R
- OPENBLAS_NUM_THREADS=4 Rscript benchmark/scripts/R/deig.R