raspberrypi-hpl/scripts/install_deps.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

10 lines
117 B
Bash
Executable File

#!/bin/bash
sudo apt update
sudo apt -y upgrade
dep_pkgs="gcc g++ gfortran make"
sudo apt -y install ${dep_pkgs}