added checking multithreading by ld preload for all cpu libraries;

externalized checkpoint to bash script;
added functions for each library;
added info about current process
This commit is contained in:
Andrzej Wójtowicz 2016-05-01 22:36:35 +02:00
parent 4ccadeaded
commit fd5e9d734f
2 changed files with 324 additions and 117 deletions

View File

@ -2,6 +2,13 @@
WGET_OPTIONS="--no-check-certificate" WGET_OPTIONS="--no-check-certificate"
MRO_VERSION="3.2.4" MRO_VERSION="3.2.4"
CHECKPOINT_DATE="2016-04-01"
R_SAMPLE_BENCHMARK="Rscript sample-benchmark.R"
DIR_BLAP="/opt/blap-lib"
function mro_install {
echo "Started installing Microsoft R Open and dependencies."
# update debian repos & upgrade packages # update debian repos & upgrade packages
apt-get update apt-get update
@ -26,23 +33,19 @@ rm MRO-${MRO_VERSION}-Ubuntu-15.4.x86_64.deb
# make symbolic link to R libraries dir # make symbolic link to R libraries dir
ln -s /usr/lib64/MRO-${MRO_VERSION}/R-${MRO_VERSION}/lib/R/lib/ /opt/MRO-lib ln -s /usr/lib64/MRO-${MRO_VERSION}/R-${MRO_VERSION}/lib/R/lib/ /opt/MRO-lib
# make directory for R checkpoint # prepare R checkpoint
mkdir ~/.checkpoint mkdir ~/.checkpoint
Rscript -e "library(checkpoint); checkpoint('${CHECKPOINT_DATE}')"
sed -i "1i\library(checkpoint); checkpoint('${CHECKPOINT_DATE}', scanForPackages=FALSE, verbose=FALSE)" sample-benchmark.R
# make directory for BLAS and LAPACK libraries # make directory for BLAS and LAPACK libraries
mkdir -p /opt/blap-lib/ mkdir -p ${DIR_BLAP}
# Generic BLAS & LAPACK install/uninstall in R: # clean archives
# apt-get clean
# install: mv /opt/MRO-lib/libRblas.so /opt/MRO-lib/libRblas.so.orig
# mv /opt/MRO-lib/libRlapack.so /opt/MRO-lib/libRlapack.so.orig echo "Finished installing Microsoft R Open and dependencies."
# ln -s /opt/blap-lib/xxx/libblas.so /opt/MRO-lib/libRblas.so }
# ln -s /opt/blap-lib/xxx/liblapack.so /opt/MRO-lib/libRlapack.so
#
# uninstall: rm /opt/MRO-lib/libRblas.so
# rm /opt/MRO-lib/libRlapack.so
# mv /opt/MRO-lib/libRblas.so.orig /opt/MRO-lib/libRblas.so
# mv /opt/MRO-lib/libRlapack.so.orig /opt/MRO-lib/libRlapack.so
############################################################## ##############################################################
############################################################## ##############################################################
@ -57,14 +60,36 @@ mkdir -p /opt/blap-lib/
# - single-threaded (reference) # # - single-threaded (reference) #
############################################################## ##############################################################
mkdir /opt/blap-lib/netlib/ DIR_NETLIB="${DIR_BLAP}/netlib"
function netlib_install {
echo "Started installing netlib."
mkdir ${DIR_NETLIB}
apt-get -y install libblas3 liblapack3 apt-get -y install libblas3 liblapack3
cp /usr/lib/libblas/libblas.so.3.0 /opt/blap-lib/netlib/ cp /usr/lib/libblas/libblas.so.3.0 ${DIR_NETLIB}
cp /usr/lib/lapack/liblapack.so.3.0 /opt/blap-lib/netlib/ cp /usr/lib/lapack/liblapack.so.3.0 ${DIR_NETLIB}
apt-get -y purge libblas3 liblapack3 apt-get -y purge libblas3 liblapack3
apt-get clean
echo "Installed files:"
find ${DIR_NETLIB} -type f
echo "Finished installing netlib."
}
function netlib_check {
echo "Started checking netlib."
LD_PRELOAD="${DIR_NETLIB}/libblas.so.3.0 ${DIR_NETLIB}/liblapack.so.3.0" ${R_SAMPLE_BENCHMARK}
echo "Finished checking netlib."
}
############################################################## ##############################################################
# ATLAS (st) # # ATLAS (st) #
@ -73,14 +98,37 @@ apt-get -y purge libblas3 liblapack3
# - single-threaded # # - single-threaded #
############################################################## ##############################################################
mkdir /opt/blap-lib/atlas-st/ DIR_ATLAS_ST="${DIR_BLAP}/atlas-st"
function atlas_st_install {
echo "Started installing ATLAS (single-threaded)."
mkdir ${DIR_ATLAS_ST}
apt-get -y install libatlas3-base apt-get -y install libatlas3-base
cp /usr/lib/atlas-base/atlas/libblas.so.3 /opt/blap-lib/atlas-st/ cp /usr/lib/atlas-base/libatlas.so.3 ${DIR_ATLAS_ST}
cp /usr/lib/atlas-base/atlas/liblapack.so.3 /opt/blap-lib/atlas-st/ cp /usr/lib/atlas-base/atlas/libblas.so.3 ${DIR_ATLAS_ST}
cp /usr/lib/atlas-base/atlas/liblapack.so.3 ${DIR_ATLAS_ST}
apt-get -y purge libatlas3-base apt-get -y purge libatlas3-base
apt-get clean
echo "Installed files:"
find ${DIR_ATLAS_ST} -type f
echo "Finished installing ATLAS (single-threaded)."
}
function atlas_st_check {
echo "Started checking ATLAS (single-threaded)."
LD_PRELOAD="${DIR_ATLAS_ST}/libatlas.so.3 ${DIR_ATLAS_ST}/libblas.so.3 ${DIR_ATLAS_ST}/liblapack.so.3" ${R_SAMPLE_BENCHMARK}
echo "Finished checking ATLAS (single-threaded)."
}
############################################################## ##############################################################
# OpenBLAS # # OpenBLAS #
@ -89,23 +137,52 @@ apt-get -y purge libatlas3-base
# - multi-threaded # # - multi-threaded #
############################################################## ##############################################################
mkdir /opt/blap-lib/openblas/ DIR_OPENBLAS="${DIR_BLAP}/openblas"
function openblas_install {
echo "Started installing OpenBLAS."
mkdir ${DIR_OPENBLAS}
apt-get -y install libopenblas-base apt-get -y install libopenblas-base
cp /usr/lib/openblas-base/libblas.so.3 /opt/blap-lib/openblas/ cp /usr/lib/libopenblas.so.0 ${DIR_OPENBLAS}
cp /usr/lib/openblas-base/liblapack.so.3 /opt/blap-lib/openblas/ cp /usr/lib/openblas-base/libblas.so.3 ${DIR_OPENBLAS}
cp /usr/lib/openblas-base/liblapack.so.3 ${DIR_OPENBLAS}
apt-get -y purge libopenblas-base apt-get -y purge libopenblas-base
apt-get clean
echo "Installed files:"
find ${DIR_OPENBLAS} -type f
echo "Finished installing OpenBLAS."
}
function openblas_check {
echo "Started checking OpenBLAS."
LD_PRELOAD="${DIR_OPENBLAS}/libopenblas.so.0 ${DIR_OPENBLAS}/libblas.so.3 ${DIR_OPENBLAS}/liblapack.so.3" ${R_SAMPLE_BENCHMARK}
echo "Finished checking OpenBLAS."
}
############################################################## ##############################################################
# ATLAS (mt) # # ATLAS (mt) #
# - http://math-atlas.sourceforge.net/ # # - http://math-atlas.sourceforge.net/ #
# - BLAS + LAPACK # # - BLAS + netlib LAPACK #
# - multi-threaded # # - multi-threaded #
############################################################## ##############################################################
mkdir /opt/blap-lib/atlas-mt/ DIR_ATLAS_MT="${DIR_BLAP}/atlas-mt"
function atlas_mt_install {
echo "Started installing ATLAS (multi-threaded)."
mkdir ${DIR_ATLAS_MT}
curl -L https://sourceforge.net/projects/math-atlas/files/Developer%20%28unstable%29/3.11.38/atlas3.11.38.tar.bz2/download > atlas3.11.38.tar.bz2 curl -L https://sourceforge.net/projects/math-atlas/files/Developer%20%28unstable%29/3.11.38/atlas3.11.38.tar.bz2/download > atlas3.11.38.tar.bz2
tar -xvf atlas3.11.38.tar.bz2 tar -xvf atlas3.11.38.tar.bz2
@ -120,11 +197,26 @@ wget ${WGET_OPTIONS} http://www.netlib.org/lapack/lapack-3.6.0.tgz
../configure --shared --with-netlib-lapack-tarfile=`pwd`/lapack-3.6.0.tgz ../configure --shared --with-netlib-lapack-tarfile=`pwd`/lapack-3.6.0.tgz
make make
cp lib/libtatlas.so /opt/blap-lib/atlas-mt/ cp lib/libtatlas.so ${DIR_ATLAS_MT}
cd ../../ cd ../../
rm -r ATLAS rm -r ATLAS
echo "Installed files:"
find ${DIR_ATLAS_MT} -type f
echo "Finished installing ATLAS (multi-threaded)."
}
function atlas_mt_check {
echo "Started checking ATLAS (multi-threaded)."
LD_PRELOAD="${DIR_ATLAS_MT}/libtatlas.so" ${R_SAMPLE_BENCHMARK}
echo "Finished checking ATLAS (multi-threaded)."
}
############################################################## ##############################################################
# GotoBLAS2 # # GotoBLAS2 #
# - https://prs.ism.ac.jp/~nakama/SurviveGotoBLAS2/ # # - https://prs.ism.ac.jp/~nakama/SurviveGotoBLAS2/ #
@ -132,21 +224,51 @@ rm -r ATLAS
# - multi-threaded # # - multi-threaded #
############################################################## ##############################################################
mkdir /opt/blap-lib/gotoblas2/ DIR_GOTOBLAS2="${DIR_BLAP}/gotoblas2"
function gotoblas2_install {
echo "Started installing GotoBLAS2."
mkdir ${DIR_GOTOBLAS2}
wget ${WGET_OPTIONS} https://prs.ism.ac.jp/~nakama/SurviveGotoBLAS2/SurviveGotoBLAS2_3.141.tar.gz wget ${WGET_OPTIONS} https://prs.ism.ac.jp/~nakama/SurviveGotoBLAS2/SurviveGotoBLAS2_3.141.tar.gz
tar -xvf SurviveGotoBLAS2_3.141.tar.gz tar -xvf SurviveGotoBLAS2_3.141.tar.gz
rm SurviveGotoBLAS2_3.141.tar.gz rm SurviveGotoBLAS2_3.141.tar.gz
cd survivegotoblas2-3.141 cd survivegotoblas2-3.141
make -j `nproc` make REFBLAS_ANTILOGY=1 NO_CBLAS=1 GOTOBLASLIBSONAME=libgoto2blas.so GOTOLAPACKLIBSONAME=libgoto2lapack.so -j `nproc`
cp exports/libgoto2blas.so ${DIR_GOTOBLAS2}
cp exports/libgoto2lapack.so ${DIR_GOTOBLAS2}
cd .. cd ..
cp survivegotoblas2-3.141/exports/libgoto2_nehalemp-r3.141_blas.so /opt/blap-lib/gotoblas2/
cp survivegotoblas2-3.141/exports/libgoto2_nehalemp-r3.141_lapack.so /opt/blap-lib/gotoblas2/
rm -r survivegotoblas2-3.141 rm -r survivegotoblas2-3.141
echo "${DIR_GOTOBLAS2}" > /etc/ld.so.conf.d/gotoblas2.conf
ldconfig
Rscript -e "library(checkpoint); checkpoint('${CHECKPOINT_DATE}', scanForPackages=FALSE, verbose=FALSE); install.packages('RhpcBLASctl')"
echo "Installed files:"
find ${DIR_GOTOBLAS2} -type f
echo "Finished installing GotoBLAS2."
}
function gotoblas2_check {
echo "Started checking GotoBLAS2."
sed "2i\library(RhpcBLASctl); blas_set_num_threads(`nproc`)" sample-benchmark.R > sample-benchmark-gotoblas2.R
LD_PRELOAD="${DIR_GOTOBLAS2}/libgoto2blas.so ${DIR_GOTOBLAS2}/libgoto2lapack.so" GOTO_NUM_THREADS=`nproc` Rscript sample-benchmark-gotoblas2.R
rm sample-benchmark-gotoblas2.R
echo "Finished checking GotoBLAS2."
}
############################################################## ##############################################################
# MKL # # MKL #
# - https://mran.microsoft.com/documents/rro/multithread/ # # - https://mran.microsoft.com/documents/rro/multithread/ #
@ -154,17 +276,36 @@ rm -r survivegotoblas2-3.141
# - multi-threaded # # - multi-threaded #
############################################################## ##############################################################
mkdir /opt/blap-lib/mkl/ DIR_MKL="${DIR_BLAP}/mkl"
function mkl_install {
echo "Started installing MKL."
mkdir ${DIR_MKL}
wget ${WGET_OPTIONS} https://mran.microsoft.com/install/mro/${MRO_VERSION}/RevoMath-${MRO_VERSION}.tar.gz wget ${WGET_OPTIONS} https://mran.microsoft.com/install/mro/${MRO_VERSION}/RevoMath-${MRO_VERSION}.tar.gz
tar -xvzf RevoMath-${MRO_VERSION}.tar.gz tar -xvzf RevoMath-${MRO_VERSION}.tar.gz
rm RevoMath-${MRO_VERSION}.tar.gz rm RevoMath-${MRO_VERSION}.tar.gz
sed -i '16,18d' RevoMath/RevoMath.sh
mv RevoMath /opt/blap-lib/mkl/ cp RevoMath/mkl/libs/*.so ${DIR_MKL}
# install: cd /opt/blap-lib/mkl/RevoMath ; echo 1 | ./RevoMath.sh rm RevoMath -r
# uninstall: cd /opt/blap-lib/mkl/RevoMath ; echo 2 | ./RevoMath.sh
echo "Installed files:"
find ${DIR_MKL} -type f
echo "Finished installing MKL."
}
function mkl_check {
echo "Started checking MKL."
LD_PRELOAD="${DIR_MKL}/libRblas.so ${DIR_MKL}/libRlapack.so ${DIR_MKL}/libmkl_vml_mc3.so ${DIR_MKL}/libmkl_vml_def.so ${DIR_MKL}/libmkl_gnu_thread.so ${DIR_MKL}/libmkl_core.so ${DIR_MKL}/libmkl_gf_lp64.so ${DIR_MKL}/libiomp5.so ${DIR_MKL}/libmkl_gf_ilp64.so" MKL_INTERFACE_LAYER="GNU,LP64" MKL_THREADING_LAYER="GNU" ${R_SAMPLE_BENCHMARK}
echo "Finished checking MKL."
}
############################################################## ##############################################################
# BLIS # # BLIS #
@ -173,20 +314,41 @@ mv RevoMath /opt/blap-lib/mkl/
# - multi-threaded # # - multi-threaded #
############################################################## ##############################################################
mkdir /opt/blap-lib/blis/ DIR_BLIS="${DIR_BLAP}/blis"
wget ${WGET_OPTIONS} https://github.com/flame/blis/archive/0.2.0.tar.gz -O blis-0.2.0.tar.gz function blis_install {
tar -xvzf blis-0.2.0.tar.gz
rm blis-0.2.0.tar.gz
cd blis-0.2.0 echo "Started installing BLIS."
./configure --enable-shared auto
mkdir ${DIR_BLIS}
git clone https://github.com/flame/blis.git
cd blis
git checkout 0b01d355ae861754ae2da6c9a545474af010f02e
./configure -t pthreads --enable-shared auto
make -j `nproc` make -j `nproc`
cd .. cd ..
cp `find ./blis-0.2.0/ -name "libblis.so"` /opt/blap-lib/blis/ cp `find ./blis/ -name "libblis.so"` ${DIR_BLIS}
rm -r blis-0.2.0 rm -r blis
echo "Installed files:"
find ${DIR_BLIS} -type f
echo "Finished installing BLIS."
}
function blis_check {
echo "Started checking BLIS."
# TODO: auto set variables according to https://github.com/flame/blis/wiki/Multithreading
LD_PRELOAD="${DIR_BLIS}/libblis.so" BLIS_JC_NT=2 BLIS_IC_NT=1 BLIS_JR_NT=1 BLIS_IR_NT=1 ${R_SAMPLE_BENCHMARK}
echo "Finished checking BLIS."
}
############################################################## ##############################################################
############################################################## ##############################################################
@ -201,6 +363,10 @@ rm -r blis-0.2.0
# - OpenCL # # - OpenCL #
############################################################## ##############################################################
function clblas_install {
echo "Started installing clBLAS."
wget ${WGET_OPTIONS} https://github.com/clMathLibraries/clBLAS/archive/v2.10.tar.gz -O clBLAS-2.10.tar.gz wget ${WGET_OPTIONS} https://github.com/clMathLibraries/clBLAS/archive/v2.10.tar.gz -O clBLAS-2.10.tar.gz
tar -xvzf clBLAS-2.10.tar.gz tar -xvzf clBLAS-2.10.tar.gz
rm clBLAS-2.10.tar.gz rm clBLAS-2.10.tar.gz
@ -208,6 +374,10 @@ rm clBLAS-2.10.tar.gz
#cd clBLAS-2.10 #cd clBLAS-2.10
# #
#cd .. #cd ..
echo "TODO!"
echo "Finished installing clBLAS."
}
############################################################## ##############################################################
# cuBLAS (NVBLAS) # # cuBLAS (NVBLAS) #
@ -216,9 +386,13 @@ rm clBLAS-2.10.tar.gz
# - CUDA # # - CUDA #
############################################################## ##############################################################
function cublas_install {
echo "Started installing cuBLAS."
# TODO: cuSOLVE (dense, LAPACK)? # TODO: cuSOLVE (dense, LAPACK)?
mkdir /opt/blap-lib/cublas/ mkdir /opt/blap-lib/cublas
# Ubuntu dependencies # Ubuntu dependencies
wget ${WGET_OPTIONS} http://de.archive.ubuntu.com/ubuntu/pool/main/x/x-kit/python3-xkit_0.5.0ubuntu2_all.deb wget ${WGET_OPTIONS} http://de.archive.ubuntu.com/ubuntu/pool/main/x/x-kit/python3-xkit_0.5.0ubuntu2_all.deb
@ -239,9 +413,14 @@ NVBLAS_GPU_LIST ALL0
NVBLAS_TILE_DIM 2048 NVBLAS_TILE_DIM 2048
NVBLAS_AUTOPIN_MEM_ENABLED" > /opt/blap-lib/cublas/nvblas.conf NVBLAS_AUTOPIN_MEM_ENABLED" > /opt/blap-lib/cublas/nvblas.conf
apt-get clean
# run R: # run R:
# NVBLAS_CONFIG_FILE=/opt/blap-lib/cublas/nvblas.conf LD_PRELOAD="/usr/local/cuda-7.5/targets/x86_64-linux/lib/libnvblas.so.7.5 /usr/local/cuda-7.5/targets/x86_64-linux/lib/libcublas.so.7.5" R # NVBLAS_CONFIG_FILE=/opt/blap-lib/cublas/nvblas.conf LD_PRELOAD="/usr/local/cuda-7.5/targets/x86_64-linux/lib/libnvblas.so.7.5 /usr/local/cuda-7.5/targets/x86_64-linux/lib/libcublas.so.7.5" R
echo "Finished installing cuBLAS."
}
############################################################## ##############################################################
# MAGMA # # MAGMA #
# - http://icl.cs.utk.edu/magma/software/ # # - http://icl.cs.utk.edu/magma/software/ #
@ -249,9 +428,40 @@ NVBLAS_AUTOPIN_MEM_ENABLED" > /opt/blap-lib/cublas/nvblas.conf
# - OpenCL, CUDA # # - OpenCL, CUDA #
############################################################## ##############################################################
function magma_install {
echo "Started installing MAGMA."
echo "TODO!"
echo "Finished installing MAGMA."
}
############################################################## ##############################################################
# CULA # # CULA #
# - http://www.culatools.com/ # # - http://www.culatools.com/ #
# - LAPACK # # - LAPACK #
# - CUDA # # - CUDA #
############################################################## ##############################################################
function cula_install {
echo "Started installing CULA."
echo "TODO!"
echo "Finished installing CULA."
}
##############################################################
##############################################################
if [ $# -eq 0 ]; then
echo "No arguments supplied"
else
for i in "$@"
do
$i
done
fi

View File

@ -1,6 +1,3 @@
library(checkpoint)
checkpoint("2016-04-01")
library(rbenchmark) library(rbenchmark)
f = function() f = function()