From 016f7ba575e4a71c5f530c62729daab6a3bfacf3 Mon Sep 17 00:00:00 2001 From: Pat Alt <55311242+pat-alt@users.noreply.github.com> Date: Sun, 17 Sep 2023 12:53:49 +0200 Subject: [PATCH] halle --- experiments/jobscripts/generators/mnist.sh | 2 +- experiments/jobscripts/tuning/generators/fmnist.sh | 14 ++++++++++++++ experiments/jobscripts/tuning/generators/mnist.sh | 2 +- .../jobscripts/tuning/generators/synthetic.sh | 4 ++-- .../jobscripts/tuning/generators/tabular.sh | 4 ++-- 5 files changed, 20 insertions(+), 6 deletions(-) create mode 100644 experiments/jobscripts/tuning/generators/fmnist.sh diff --git a/experiments/jobscripts/generators/mnist.sh b/experiments/jobscripts/generators/mnist.sh index d1635412..bb65d94f 100644 --- a/experiments/jobscripts/generators/mnist.sh +++ b/experiments/jobscripts/generators/mnist.sh @@ -1,7 +1,7 @@ #!/bin/bash #SBATCH --job-name="MNIST (ECCCo)" -#SBATCH --time=24:00:00 +#SBATCH --time=4:00:00 #SBATCH --ntasks=1000 #SBATCH --cpus-per-task=1 #SBATCH --partition=compute diff --git a/experiments/jobscripts/tuning/generators/fmnist.sh b/experiments/jobscripts/tuning/generators/fmnist.sh new file mode 100644 index 00000000..b1838a6e --- /dev/null +++ b/experiments/jobscripts/tuning/generators/fmnist.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +#SBATCH --job-name="Grid-search Fashion MNIST (ECCCo)" +#SBATCH --time=24:00:00 +#SBATCH --ntasks=1000 +#SBATCH --cpus-per-task=1 +#SBATCH --partition=compute +#SBATCH --mem-per-cpu=8GB +#SBATCH --account=research-eemcs-insy +#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes. + +module load 2023r1 openmpi + +srun julia --project=experiments experiments/run_experiments.jl -- data=fmnist output_path=results mpi grid_search > experiments/grid_search_fmnist.log \ No newline at end of file diff --git a/experiments/jobscripts/tuning/generators/mnist.sh b/experiments/jobscripts/tuning/generators/mnist.sh index 2ab736c7..c9cd9c45 100644 --- a/experiments/jobscripts/tuning/generators/mnist.sh +++ b/experiments/jobscripts/tuning/generators/mnist.sh @@ -11,4 +11,4 @@ module load 2023r1 openmpi -srun julia --project=experiments experiments/run_experiments.jl -- data=mnist output_path=results mpi grid_search > experiments/synthetic.log \ No newline at end of file +srun julia --project=experiments experiments/run_experiments.jl -- data=mnist output_path=results mpi grid_search > experiments/grid_search_mnist.log \ No newline at end of file diff --git a/experiments/jobscripts/tuning/generators/synthetic.sh b/experiments/jobscripts/tuning/generators/synthetic.sh index 578bcf08..83744419 100644 --- a/experiments/jobscripts/tuning/generators/synthetic.sh +++ b/experiments/jobscripts/tuning/generators/synthetic.sh @@ -1,11 +1,11 @@ #!/bin/bash #SBATCH --job-name="Grid-search Synthetic (ECCCo)" -#SBATCH --time=03:00:00 +#SBATCH --time=06:00:00 #SBATCH --ntasks=1000 #SBATCH --cpus-per-task=1 #SBATCH --partition=compute -#SBATCH --mem-per-cpu=4GB +#SBATCH --mem-per-cpu=8GB #SBATCH --account=research-eemcs-insy #SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes. diff --git a/experiments/jobscripts/tuning/generators/tabular.sh b/experiments/jobscripts/tuning/generators/tabular.sh index 6769aebd..d33a49c1 100644 --- a/experiments/jobscripts/tuning/generators/tabular.sh +++ b/experiments/jobscripts/tuning/generators/tabular.sh @@ -1,8 +1,8 @@ #!/bin/bash #SBATCH --job-name="Grid-search Tabular (ECCCo)" -#SBATCH --time=06:00:00 -#SBATCH --ntasks=100 +#SBATCH --time=10:00:00 +#SBATCH --ntasks=1000 #SBATCH --cpus-per-task=1 #SBATCH --partition=compute #SBATCH --mem-per-cpu=8GB -- GitLab