Skip to content

Instantly share code, notes, and snippets.

View paulosevero's full-sized avatar

Paulo Silas Severo de Souza paulosevero

View GitHub Profile
@paulosevero
paulosevero / compile.sh
Created August 10, 2018 13:42
NAS Parallel Benchmark setup script on Ubuntu 14.04
#!/bin/bash
# compile_bench(bench, nprocs, class)
compile_bench() {
local bench="${1}"
local nprocs="${2}"
local class="${3}"
make "${bench}" NPROCS="${nprocs}" CLASS="${class}"
}