Skip to content
Snippets Groups Projects
Commit 453d5ae7 authored by pat-alt's avatar pat-alt
Browse files

batch job scripts

parent c94722f4
No related branches found
No related tags found
1 merge request!7669 initial run including fmnist lenet and new method
#!/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
#!/bin/bash #!/bin/bash
#SBATCH --job-name="ECCCo" #SBATCH --job-name="GMSC (ECCCo)"
#SBATCH --time=01:00:00 #SBATCH --time=2:00:00
#SBATCH --ntasks=12 #SBATCH --ntasks=12
#SBATCH --cpus-per-task=4 #SBATCH --cpus-per-task=4
#SBATCH --partition=compute #SBATCH --partition=compute
...@@ -9,6 +9,6 @@ ...@@ -9,6 +9,6 @@
#SBATCH --account=innovation #SBATCH --account=innovation
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes. #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
#!/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
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment