Arif Ali
c6a6912094
Added initial scripts and configs to get HPL compiled on raspberry pi4 and get reasonable performance
18 lines
359 B
Bash
Executable File
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
|