jcmp: My image compression format (w/ wavelets)
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
#!/bin/bash
|
|
|
|
#SBATCH -t 0:30:00
|
|
|
|
#SBATCH -n 4
|
|
|
|
|
|
|
|
p=4
|
|
|
|
m=5
|
|
|
|
start=6
|
|
|
|
end=27
|
|
|
|
iters=100
|
|
|
|
|
|
|
|
if [[ `whoami` == "bissstud" ]]; then
|
|
|
|
cd $HOME/Students13/JoshuaMoerman/assignments
|
|
|
|
echo "Running on Cartesius $@"
|
|
|
|
RUNCOMMAND="srun"
|
|
|
|
else
|
|
|
|
echo "Running locally $@"
|
|
|
|
RUNCOMMAND=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
for i in `seq $start $end`; do
|
|
|
|
echo -e "\n\033[1;34mtime\t`date`\033[0;39m"
|
|
|
|
let "n=2**$i"
|
|
|
|
$RUNCOMMAND ./build-Release/wavelet/wavelet_parallel_mockup --seq --m $m --n $n --p $p --show-input --iterations $iters
|
|
|
|
done
|
|
|
|
echo -e "\n\033[1;31mtime\t`date`\033[0;39m"
|