diff --git a/experiments/jobscripts/generators/fmnist.sh b/experiments/jobscripts/generators/fmnist.sh index 8969365350864126bd915929c4aadf2c548df530..ba3e919a0e055015a603375a013ec31b6bb5f048 100644 --- a/experiments/jobscripts/generators/fmnist.sh +++ b/experiments/jobscripts/generators/fmnist.sh @@ -1,11 +1,11 @@ #!/bin/bash #SBATCH --job-name="Fashion MNIST (ECCCo)" -#SBATCH --time=05:00:00 +#SBATCH --time=07:00:00 #SBATCH --ntasks=50 #SBATCH --cpus-per-task=10 #SBATCH --partition=compute -#SBATCH --mem-per-cpu=10GB +#SBATCH --mem-per-cpu=16GB #SBATCH --account=research-eemcs-insy #SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes. @@ -13,4 +13,4 @@ module load 2023r1 openmpi source experiments/slurm_header.sh -srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=fmnist output_path=results mpi threaded n_individuals=100 n_runs=5 > experiments/logs/fmnist.log +srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=fmnist output_path=results mpi threaded n_individuals=50 n_runs=5 n_each=16 > experiments/logs/fmnist.log diff --git a/experiments/jobscripts/generators/mnist.sh b/experiments/jobscripts/generators/mnist.sh index 58b35400f889624110782873a364889673e01a13..23d9584da3669642a7b45c35dafe1919ddbb3800 100644 --- a/experiments/jobscripts/generators/mnist.sh +++ b/experiments/jobscripts/generators/mnist.sh @@ -1,11 +1,11 @@ #!/bin/bash #SBATCH --job-name="MNIST (ECCCo)" -#SBATCH --time=05:00:00 +#SBATCH --time=07:00:00 #SBATCH --ntasks=50 #SBATCH --cpus-per-task=10 #SBATCH --partition=compute -#SBATCH --mem-per-cpu=12GB +#SBATCH --mem-per-cpu=16GB #SBATCH --account=research-eemcs-insy #SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes. @@ -13,4 +13,4 @@ module load 2023r1 openmpi source experiments/slurm_header.sh -srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=mnist output_path=results mpi threaded n_individuals=100 n_runs=5 > experiments/logs/mnist.log +srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=mnist output_path=results mpi threaded n_individuals=50 n_runs=5 n_each=16 > experiments/logs/mnist.log diff --git a/experiments/jobscripts/testing/mnist.sh b/experiments/jobscripts/testing/mnist.sh index 2ef77e4f17c0b300ddbdda498dbee7a56c65b434..4a07f71db0f956b052fccfec6a257ca5f0f4b2ad 100644 --- a/experiments/jobscripts/testing/mnist.sh +++ b/experiments/jobscripts/testing/mnist.sh @@ -1,11 +1,11 @@ #!/bin/bash -#SBATCH --job-name="MNIST test (ECCCo)" -#SBATCH --time=00:30:00 -#SBATCH --ntasks=10 +#SBATCH --job-name="MNIST (ECCCo)" +#SBATCH --time=01:00:00 +#SBATCH --ntasks=5 #SBATCH --cpus-per-task=4 #SBATCH --partition=compute -#SBATCH --mem-per-cpu=8GB +#SBATCH --mem-per-cpu=16GB #SBATCH --account=research-eemcs-insy #SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes. @@ -13,5 +13,4 @@ module load 2023r1 openmpi source experiments/slurm_header.sh -srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=mnist output_path=results_testing mpi grid_search n_individuals=10 threaded n_each=32 > experiments/logs/grid_search_mnist.log - \ No newline at end of file +srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=mnist output_path=results mpi threaded n_individuals=50 n_runs=5 n_each=16 > experiments/logs/mnist.log