Arif Ali
2bee672d92
Added timestamp variable, and output the results to a file, so that these can be viewed agin at a later date
19 lines
442 B
Bash
Executable File
19 lines
442 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. CONFIG
|
|
|
|
version=2.3
|
|
package=hpl
|
|
|
|
rm -rf ${package}-${version}
|
|
rm -rf ${WORKDIR}/${package}-${version}
|
|
wget https://www.netlib.org/benchmark/hpl/${package}-${version}.tar.gz -O ${DOWNLOADS}/${package}-${version}.tar.gz
|
|
|
|
cd ${WORKDIR}
|
|
tar xfz ${DOWNLOADS}/${package}-${version}.tar.gz
|
|
cd ${package}-${version}
|
|
|
|
cp ${SCRIPTSDIR}/../configs/Make.rpi4-mpich .
|
|
make arch=rpi4-mpich -j 3 clean_arch
|
|
make arch=rpi4-mpich -j 3 install
|