1
0
mirror of https://github.com/andre-wojtowicz/blas-benchmarks synced 2024-07-22 15:40:29 +02:00

removed hiplarb and culatoos;

added removing cpu packages;
added deps for cuda online install
This commit is contained in:
Andrzej Wójtowicz 2016-05-05 12:26:35 +02:00
parent a9b174d0eb
commit c3d9bdce84

View File

@ -6,10 +6,6 @@ CHECKPOINT_DATE="2016-04-01"
R_SAMPLE_BENCHMARK="Rscript sample-benchmark.R" R_SAMPLE_BENCHMARK="Rscript sample-benchmark.R"
DIR_BLAP="/opt/blap-lib" DIR_BLAP="/opt/blap-lib"
#TODO:
# - leave installed packages
# - after installation export "LD_PRELOAD"s
function mro_install { function mro_install {
echo "Started installing Microsoft R Open and dependencies" echo "Started installing Microsoft R Open and dependencies"
@ -40,11 +36,15 @@ function mro_install {
# prepare R checkpoint # prepare R checkpoint
mkdir ~/.checkpoint mkdir ~/.checkpoint
Rscript -e "library(checkpoint); checkpoint('${CHECKPOINT_DATE}')" Rscript -e "library(checkpoint); checkpoint('${CHECKPOINT_DATE}')"
sed -i "1i\library(checkpoint); checkpoint('${CHECKPOINT_DATE}', scanForPackages=FALSE, verbose=FALSE)" sample-benchmark.R #sed -i "1i\library(checkpoint); checkpoint('${CHECKPOINT_DATE}', scanForPackages=FALSE, verbose=FALSE)" sample-benchmark.R
#TODO: add new .libPaths()
# make directory for BLAS and LAPACK libraries # make directory for BLAS and LAPACK libraries
mkdir -p ${DIR_BLAP} mkdir -p ${DIR_BLAP}
# detect logical and physical cores
# Rscript -e "parallel::detectCores(1, logical=F)"
# clean archives # clean archives
apt-get clean apt-get clean
@ -77,6 +77,8 @@ function netlib_install {
cp /usr/lib/libblas/libblas.so.3.0 ${DIR_NETLIB} cp /usr/lib/libblas/libblas.so.3.0 ${DIR_NETLIB}
cp /usr/lib/lapack/liblapack.so.3.0 ${DIR_NETLIB} cp /usr/lib/lapack/liblapack.so.3.0 ${DIR_NETLIB}
apt-get -y purge libblas3 liblapack3
apt-get -y autoremove
apt-get clean apt-get clean
echo "Installed files:" echo "Installed files:"
@ -85,6 +87,15 @@ function netlib_install {
echo "Finished installing netlib." echo "Finished installing netlib."
} }
function netlib_remove {
echo "Started removing netlib"
rm ${DIR_NETLIB} -r
echo "Finished removing netlib."
}
function netlib_check { function netlib_check {
echo "Started checking netlib." echo "Started checking netlib."
@ -115,6 +126,7 @@ function atlas_st_install {
cp /usr/lib/atlas-base/atlas/libblas.so.3 ${DIR_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} cp /usr/lib/atlas-base/atlas/liblapack.so.3 ${DIR_ATLAS_ST}
apt-get -y purge libatlas3-base
apt-get clean apt-get clean
echo "Installed files:" echo "Installed files:"
@ -132,6 +144,15 @@ function atlas_st_check {
echo "Finished checking ATLAS (single-threaded)" echo "Finished checking ATLAS (single-threaded)"
} }
function atlas_st_remove {
echo "Started removing ATLAS (single-threaded)"
rm ${DIR_ATLAS_ST} -r
echo "Finished removing ATLAS (single-threaded)"
}
############################################################## ##############################################################
# OpenBLAS # # OpenBLAS #
# - http://www.openblas.net/ # # - http://www.openblas.net/ #
@ -153,6 +174,7 @@ function openblas_install {
cp /usr/lib/openblas-base/libblas.so.3 ${DIR_OPENBLAS} cp /usr/lib/openblas-base/libblas.so.3 ${DIR_OPENBLAS}
cp /usr/lib/openblas-base/liblapack.so.3 ${DIR_OPENBLAS} cp /usr/lib/openblas-base/liblapack.so.3 ${DIR_OPENBLAS}
apt-get -y purge libopenblas-base
apt-get clean apt-get clean
echo "Installed files:" echo "Installed files:"
@ -170,6 +192,15 @@ function openblas_check {
echo "Finished checking OpenBLAS" echo "Finished checking OpenBLAS"
} }
function openblas_remove {
echo "Started removing OpenBLAS"
rm ${DIR_OPENBLAS} -r
echo "Finished removing OpenBLAS"
}
############################################################## ##############################################################
# ATLAS (mt) # # ATLAS (mt) #
# - http://math-atlas.sourceforge.net/ # # - http://math-atlas.sourceforge.net/ #
@ -218,6 +249,15 @@ function atlas_mt_check {
echo "Finished checking ATLAS (multi-threaded)" echo "Finished checking ATLAS (multi-threaded)"
} }
function atlas_mt_remove {
echo "Started removing ATLAS (multi-threaded)"
rm ${DIR_ATLAS_MT} -r
echo "Finished removing ATLAS (multi-threaded)"
}
############################################################## ##############################################################
# GotoBLAS2 # # GotoBLAS2 #
# - https://prs.ism.ac.jp/~nakama/SurviveGotoBLAS2/ # # - https://prs.ism.ac.jp/~nakama/SurviveGotoBLAS2/ #
@ -271,6 +311,15 @@ function gotoblas2_check {
echo "Finished checking GotoBLAS2" echo "Finished checking GotoBLAS2"
} }
function gotoblas2_remove {
echo "Started removing GotoBLAS2"
rm ${DIR_GOTOBLAS2} -r
echo "Finished removing GotoBLAS2"
}
############################################################## ##############################################################
# MKL # # MKL #
# - https://mran.microsoft.com/documents/rro/multithread/ # # - https://mran.microsoft.com/documents/rro/multithread/ #
@ -309,6 +358,15 @@ function mkl_check {
echo "Finished checking MKL" echo "Finished checking MKL"
} }
function mkl_remove {
echo "Started removing MKL"
rm ${DIR_MKL} -r
echo "Finished removing MKL"
}
############################################################## ##############################################################
# BLIS # # BLIS #
# - https://github.com/flame/blis # # - https://github.com/flame/blis #
@ -352,6 +410,15 @@ function blis_check {
echo "Finished checking BLIS" echo "Finished checking BLIS"
} }
function blis_remove {
echo "Started removing BLIS"
rm ${DIR_BLIS} -r
echo "Finished removing BLIS"
}
############################################################## ##############################################################
############################################################## ##############################################################
## GPU ## ## GPU ##
@ -376,7 +443,6 @@ function cublas_install {
modprobe -r nouveau modprobe -r nouveau
DEBIAN_FRONTEND=noninteractive apt-get install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') nvidia-driver nvidia-modprobe libcuda1 libnvblas6.0 -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" DEBIAN_FRONTEND=noninteractive apt-get install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') nvidia-driver nvidia-modprobe libcuda1 libnvblas6.0 -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew"
# TODO: optimus - bbswitch ?
nvidia-modprobe nvidia-modprobe
@ -391,13 +457,25 @@ function cublas_install {
echo "Finished installing cuBLAS" echo "Finished installing cuBLAS"
} }
#TODO: switch to 7.5 function cublas_online_install {
function cublas_get_online {
# 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/s/screen-resolution-extra/screen-resolution-extra_0.17.1_all.deb
gdebi -n python3-xkit_0.5.0ubuntu2_all.deb
gdebi -n screen-resolution-extra_0.17.1_all.deb
wget ${WGET_OPTIONS} http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1504/x86_64/cuda-repo-ubuntu1504_7.5-18_amd64.deb wget ${WGET_OPTIONS} http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1504/x86_64/cuda-repo-ubuntu1504_7.5-18_amd64.deb
dpkg -i cuda-repo-ubuntu1504_7.5-18_amd64.deb dpkg -i cuda-repo-ubuntu1504_7.5-18_amd64.deb
apt-get update apt-get update
#TODO: install packages
rm python3-xkit_0.5.0ubuntu2_all.deb
rm screen-resolution-extra_0.17.1_all.deb
rm cuda-repo-ubuntu1504_7.5-18_amd64.deb rm cuda-repo-ubuntu1504_7.5-18_amd64.deb
apt-get clean
} }
function cublas_check { function cublas_check {
@ -420,7 +498,7 @@ function clblas_install {
echo "Started installing clBLAS" echo "Started installing clBLAS"
# opencl 1.2 #TODO: opencl 1.2
apt-get install libboost-dev liblapack-dev libboost-program-options-dev opencl-headers nvidia-opencl-dev -y apt-get install libboost-dev liblapack-dev libboost-program-options-dev opencl-headers nvidia-opencl-dev -y
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
@ -440,68 +518,6 @@ function clblas_install {
echo "Finished installing clBLAS" echo "Finished installing clBLAS"
} }
##############################################################
# MAGMA #
# - http://icl.cs.utk.edu/magma/software/ #
# - LAPACK #
# - OpenCL, CUDA #
##############################################################
DIR_MAGMA="${DIR_BLAP}/magma"
function magma_install {
echo "Started installing MAGMA"
apt-get install nvidia-cuda-toolkit libopenblas-dev -y
apt-get clean
wget http://icl.cs.utk.edu/projectsfiles/magma/downloads/magma-2.0.2.tar.gz
tar -xvf magma-2.0.2.tar.gz
rm magma-2.0.2.tar.gz
cd magma-2.0.2
sed -i '7s/.*/include make.inc.openblas/' Makefile
sed -i '18s/.*/GPU_TARGET = Fermi/' make.inc.openblas # TODO: auto choose
sed -i '64s/.*/OPENBLASDIR = \/usr/' make.inc.openblas
sed -i '65s/.*/CUDADIR = \/usr/' make.inc.openblas
make -j `nproc`
cp lib/libmagma.so ${DIR_MAGMA}
cd ..
rm -r magma-2.0.2
echo "Finished installing MAGMA"
}
function magma_check {
echo "Started checking MAGMA"
LD_PRELOAD="${DIR_MAGMA}/libmagma.so" ${R_SAMPLE_BENCHMARK}
echo "Finished checking MAGMA"
}
##############################################################
# CULA #
# - http://www.culatools.com/ #
# - LAPACK #
# - CUDA #
##############################################################
function cula_install {
echo "Started installing CULA"
echo "TODO!"
echo "Finished installing CULA"
}
############################################################## ##############################################################
############################################################## ##############################################################