eigen/run.sh
Everton Constantino bfadb56107 WIP 2
2021-05-13 14:48:40 +00:00

34 lines
764 B
Bash
Executable File

#!/bin/bash
function run() {
OLD=0
NEW=0
NEWP=0
EXECS=$1
SIZE=$2
RUNS=$3
for ((i = 0; i < $EXECS; i++)) do
SEL=$(A=$(shuf -i 0-10 -n 1); echo $(($A % 2)))
if [ $SEL -eq 0 ]; then
T_OLD=$(./gto $SIZE $RUNS)
T_NEW=$(./gt $SIZE $RUNS)
T_NEWP=$(./gtp $SIZE $RUNS)
else
T_NEW=$(./gt $SIZE $RUNS)
T_NEWP=$(./gtp $SIZE $RUNS)
T_OLD=$(./gto $SIZE $RUNS)
fi
NEW=$NEW+$T_NEW
OLD=$OLD+$T_OLD
NEWP=$NEWP+$T_NEWP
done
SPEED=$(echo "($OLD) / ($NEW)" | bc -l)
SPEEDP=$(echo "($OLD) / ($NEWP)" | bc -l)
echo "$SIZE -> $SPEED $SPEEDP"
}
run $1 16 500
run $1 32 500
run $1 64 500
run $1 128 100
run $1 256 50