Skip to content
Snippets Groups Projects
Commit 0cc0216b authored by Pat Alt's avatar Pat Alt
Browse files

avoid threading because gather is apparently not thread safe

parent 41299aae
No related branches found
No related tags found
1 merge request!7669 initial run including fmnist lenet and new method
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
#SBATCH --job-name="GMSC (ECCCo)" #SBATCH --job-name="GMSC (ECCCo)"
#SBATCH --time=3:00:00 #SBATCH --time=3:00:00
#SBATCH --ntasks=12 #SBATCH --ntasks=48
#SBATCH --cpus-per-task=4 #SBATCH --cpus-per-task=1
#SBATCH --partition=compute #SBATCH --partition=compute
#SBATCH --mem-per-cpu=4GB #SBATCH --mem-per-cpu=4GB
#SBATCH --account=innovation #SBATCH --account=innovation
...@@ -11,4 +11,4 @@ ...@@ -11,4 +11,4 @@
module load 2023r1 openmpi module load 2023r1 openmpi
srun julia --project=experiments --threads 4 experiments/run_experiments.jl -- data=gmsc output_path=results retrain threaded mpi > experiments/gmsc.log srun julia --project=experiments experiments/run_experiments.jl -- data=gmsc output_path=results retrain mpi > experiments/gmsc.log
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
#SBATCH --job-name="MNIST (ECCCo)" #SBATCH --job-name="MNIST (ECCCo)"
#SBATCH --time=24:00:00 #SBATCH --time=24:00:00
#SBATCH --ntasks=12 #SBATCH --ntasks=48
#SBATCH --cpus-per-task=4 #SBATCH --cpus-per-task=1
#SBATCH --partition=compute #SBATCH --partition=compute
#SBATCH --mem-per-cpu=4GB #SBATCH --mem-per-cpu=4GB
#SBATCH --account=innovation #SBATCH --account=innovation
...@@ -11,4 +11,4 @@ ...@@ -11,4 +11,4 @@
module load 2023r1 openmpi module load 2023r1 openmpi
srun julia --project=experiments --threads 4 experiments/run_experiments.jl -- data=mnist output_path=results mpi > experiments/mnist.log srun julia --project=experiments experiments/run_experiments.jl -- data=mnist output_path=results mpi > experiments/mnist.log
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
#SBATCH --job-name="Synthetic (ECCCo)" #SBATCH --job-name="Synthetic (ECCCo)"
#SBATCH --time=02:00:00 #SBATCH --time=02:00:00
#SBATCH --ntasks=12 #SBATCH --ntasks=48
#SBATCH --cpus-per-task=4 #SBATCH --cpus-per-task=1
#SBATCH --partition=compute #SBATCH --partition=compute
#SBATCH --mem-per-cpu=4GB #SBATCH --mem-per-cpu=4GB
#SBATCH --account=innovation #SBATCH --account=innovation
...@@ -11,4 +11,4 @@ ...@@ -11,4 +11,4 @@
module load 2023r1 openmpi module load 2023r1 openmpi
srun julia --project=experiments --threads 4 experiments/run_experiments.jl -- data=linearly_separable,moons,circles output_path=results threaded mpi retrain > experiments/synthetic.log srun julia --project=experiments experiments/run_experiments.jl -- data=linearly_separable,moons,circles output_path=results mpi retrain > 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