raspberrypi-hpl/scripts/make_openblas.sh
Arif Ali c6a6912094 Initial commit
Added initial scripts and configs to get HPL compiled on
raspberry pi4 and get reasonable performance
2020-06-10 11:53:11 +00:00

18 lines
359 B
Bash
Executable File

#!/bin/bash
. CONFIG
version=develop
package=OpenBLAS
rm -rf ${package}-${version}
rm -rf ${WORKDIR}/${package}-${version}
wget https://github.com/xianyi/OpenBLAS/archive/develop.tar.gz -O ${DOWNLOADS}/${package}-${version}.tar.gz
cd ${WORKDIR}
tar xfz ${DOWNLOADS}/${package}-${version}.tar.gz
cd ${package}-${version}
make -j 3
sudo make -j 3 install