#!/bin/bash

echo "^ mode ^ allocation ^ shuffing ^ deallocation ^"
for mode in SYSTEM_ALLOC USE_LOKI_SOA
do
  for n in 1 10 20 30 40 50
  do
    rm -f test.out
    make N=$n MODE=$mode > /dev/null && echo -n "| N=$n, $mode | " && ./test.out
  done
done

rm -f test.out
