You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
516 B
25 lines
516 B
11 years ago
|
#!/bin/bash
|
||
|
#SBATCH -t 0:30:00
|
||
|
#SBATCH -n 4
|
||
|
|
||
|
p=4
|
||
|
n=32768
|
||
|
mstart=1
|
||
|
mend=12
|
||
|
iters=100
|
||
|
|
||
|
if [[ `whoami` == "bissstud" ]]; then
|
||
|
cd $HOME/Students13/JoshuaMoerman/assignments
|
||
|
echo "Running on Cartesius $@"
|
||
|
RUNCOMMAND="srun"
|
||
|
else
|
||
|
echo "Running locally $@"
|
||
|
RUNCOMMAND=""
|
||
|
fi
|
||
|
|
||
|
for m in `seq $mstart $mend`; do
|
||
|
echo -e "\n\033[1;34mtime\t`date`\033[0;39m"
|
||
|
$RUNCOMMAND ./build-Release/wavelet/wavelet_parallel_mockup --m $m --n $n --p $p --show-input --iterations $iters
|
||
|
done
|
||
|
echo -e "\n\033[1;31mtime\t`date`\033[0;39m"
|