Check latest LINPACK version
https://software.intel.com/en-us/articles/intel-mkl-benchmarks-suite
# https://software.intel.com/sites/default/files/managed/cc/19/l_mklb_p_2019.6.005.tgz
configure parameter
export MKL_DYNAMIC=false
export OMP_NUM_THREADS=4Run LINPACK
wget https://raw.githubusercontent.com/panticz/scripts/master/run_linpack.sh -qO- | bash[embed_url: https://raw.githubusercontent.com/panticz/scripts/master/run_linpack.sh]
Install LINPACK
[embed_url: https://raw.githubusercontent.com/panticz/installit/master/install.linpack.sh]
Get CPU info
CPU=$(cat /proc/cpuinfo | grep "model name" | tail -1)
COUNT=$(cat /proc/cpuinfo | grep processor | wc -l)
echo "
CPU : ${CPU}
COUNT : ${COUNT}
"