This commit is contained in:
2022-06-19 14:11:30 +02:00
parent 91896f1cc0
commit f4a657032d
4 changed files with 40 additions and 3 deletions

21
compile.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
BENCHES=(
"B_INIT"
"B_SUM"
"B_COPY"
"B_UPDATE"
"B_TRIAD"
"B_DAXPY"
"B_STRIAD"
"B_SDAXPY"
)
for BENCH in ${BENCHES[@]}; do
echo Compile $BENCH...
make clean
make MY_OPTS=-D$BENCH -j4
mv bwbench-GCC $BENCH-bwbench-gcc
done