roboservant/benchmarks/runTimingNoisy.sh
2020-12-30 13:03:26 -05:00

11 lines
235 B
Bash
Executable File

lo=$1
hi=$2
for i in $(seq $lo 5 $hi); do
./genFile.sh $i > main.hs;
echo "sievedn: $i,";
/usr/bin/time -f "%e" stack ghc main.hs 2>&1;
# /usr/bin/time -f "%e" stack ghc -- -fomit-interface-pragmas main.hs 2>&1;
done