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