diff --git a/experiments/fmnist.sh b/experiments/fmnist.sh new file mode 100644 index 0000000000000000000000000000000000000000..9f9eef024fdd9de0185768ab80200af4848a7ea9 --- /dev/null +++ b/experiments/fmnist.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +#SBATCH --job-name="Fashion-MNIST (ECCCo)" +#SBATCH --time=24:00:00 +#SBATCH --ntasks=12 +#SBATCH --cpus-per-task=4 +#SBATCH --partition=compute +#SBATCH --mem-per-cpu=4GB +#SBATCH --account=innovation +#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 retrain output_path=results threaded mpi > experiments/fmnist.log diff --git a/experiments/hpc_blue.sh b/experiments/gmsc.sh similarity index 65% rename from experiments/hpc_blue.sh rename to experiments/gmsc.sh index 504a8c2e989dd0a38cbcb31234d400c8cbc73155..634ff160387057b1f6dcd11dc7bbba46f23d0cfd 100644 --- a/experiments/hpc_blue.sh +++ b/experiments/gmsc.sh @@ -1,7 +1,7 @@ #!/bin/bash -#SBATCH --job-name="ECCCo" -#SBATCH --time=01:00:00 +#SBATCH --job-name="GMSC (ECCCo)" +#SBATCH --time=2:00:00 #SBATCH --ntasks=12 #SBATCH --cpus-per-task=4 #SBATCH --partition=compute @@ -9,6 +9,6 @@ #SBATCH --account=innovation #SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes. -module load 2023r1 openmpi julia +module load 2023r1 openmpi -srun julia --project=experiments experiments/run_experiments.jl -- data=linearly_separable threaded > experiments/hpc.log +srun julia --project=experiments experiments/run_experiments.jl -- data=gmsc retrain output_path=results threaded mpi > experiments/gmsc.log diff --git a/experiments/mnist.sh b/experiments/mnist.sh new file mode 100644 index 0000000000000000000000000000000000000000..14faad1b5c4c0331aa70aac9dca994924cf06246 --- /dev/null +++ b/experiments/mnist.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +#SBATCH --job-name="MNIST (ECCCo)" +#SBATCH --time=24:00:00 +#SBATCH --ntasks=12 +#SBATCH --cpus-per-task=4 +#SBATCH --partition=compute +#SBATCH --mem-per-cpu=4GB +#SBATCH --account=innovation +#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=mnist retrain output_path=results threaded mpi > experiments/mnist.log diff --git a/experiments/synthetic.sh b/experiments/synthetic.sh new file mode 100644 index 0000000000000000000000000000000000000000..5cf4c35901363e9f4fdaeb82c03667444f481cdc --- /dev/null +++ b/experiments/synthetic.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +#SBATCH --job-name="Synthetic (ECCCo)" +#SBATCH --time=02:00:00 +#SBATCH --ntasks=12 +#SBATCH --cpus-per-task=4 +#SBATCH --partition=compute +#SBATCH --mem-per-cpu=4GB +#SBATCH --account=innovation +#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=linearly_separable,moons,cricles output_path=results retrain threaded mpi > experiments/synthetic.log