#!/bin/bash

#PBS -q phi

cd $PBS_O_WORKDIR

echo "Running on Xeon Phi with 60 threads"
./sum-phi -n 32 -t 60 
echo "Running on Xeon Phi with 10 threads"
./sum-phi -n 32 -t 10
echo "Running on CPU with 12 threads"
./sum-cpu -n 32 -t 12
echo "Running on CPU with 2 threads"
./sum-cpu -n 32 -t 2


