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

perparing stuff for daic

parent d51db9bc
No related branches found
No related tags found
1 merge request!8985 overshooting
#!/bin/bash
#SBATCH --job-name="Grid-search Linearly Separable (ECCCo)"
#SBATCH --time=01:00:00
#SBATCH --time=00:30:00
#SBATCH --ntasks=10
#SBATCH --cpus-per-task=10
#SBATCH --partition=general
#SBATCH --mem-per-cpu=4GB
#SBATCH --mem-per-cpu=1GB
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes.
module use /opt/insy/modulefiles # Use DAIC INSY software collection
module load openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=linearly_separable output_path=results mpi grid_search n_individuals=10 threaded > experiments/grid_search_linearly_separable.log
source experiments/slurm_header.sh
srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=linearly_separable output_path=results mpi grid_search n_individuals=10 threaded > experiments/grid_search_linearly_separable.log
......@@ -2,13 +2,15 @@
#SBATCH --job-name="Grid-search California Housing (ECCCo)"
#SBATCH --time=01:00:00
#SBATCH --ntasks=100
#SBATCH --cpus-per-task=1
#SBATCH --ntasks=20
#SBATCH --cpus-per-task=20
#SBATCH --partition=general
#SBATCH --mem-per-cpu=4GB
#SBATCH --mem-per-cpu=2GB
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes.
module use /opt/insy/modulefiles # Use DAIC INSY software collection
module load openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=california_housing output_path=results mpi grid_search n_individuals=5 > experiments/grid_search_california_housing.log
source experiments/slurm_header.sh
srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=california_housing output_path=results mpi grid_search threaded n_individuals=10 > experiments/logs/grid_search_california_housing.log
#!/bin/bash
#SBATCH --job-name="Grid-search Synthetic (ECCCo)"
#SBATCH --time=04:00:00
#SBATCH --ntasks=100
#SBATCH --cpus-per-task=1
#SBATCH --job-name="Grid-search Circles (ECCCo)"
#SBATCH --time=01:00:00
#SBATCH --ntasks=30
#SBATCH --cpus-per-task=30
#SBATCH --partition=general
#SBATCH --mem-per-cpu=4GB
#SBATCH --mem-per-cpu=1GB
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes.
module use /opt/insy/modulefiles # Use DAIC INSY software collection
module load openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=linearly_separable,moons,circles output_path=results mpi grid_search > experiments/grid_search_synthetic.log
\ No newline at end of file
source experiments/slurm_header.sh
srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=circles output_path=results mpi grid_search threaded n_individuals=100 > experiments/logs/grid_search_circles.log
#!/bin/bash
#SBATCH --job-name="Grid-search Germand Credit (ECCCo)"
#SBATCH --time=04:00:00
#SBATCH --ntasks=1000
#SBATCH --cpus-per-task=1
#SBATCH --job-name="Grid-search German Credit (ECCCo)"
#SBATCH --time=01:00:00
#SBATCH --ntasks=30
#SBATCH --cpus-per-task=30
#SBATCH --partition=general
#SBATCH --mem-per-cpu=8GB
#SBATCH --mem-per-cpu=1GB
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes.
module use /opt/insy/modulefiles # Use DAIC INSY software collection
module load openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=german_credit output_path=results mpi grid_search > experiments/grid_search_german_credit.log
source experiments/slurm_header.sh
srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=german_credit output_path=results mpi grid_search threaded n_individuals=100 > experiments/logs/grid_search_german_credit.log
#!/bin/bash
#SBATCH --job-name="Grid-search GMSC (ECCCo)"
#SBATCH --time=04:00:00
#SBATCH --ntasks=1000
#SBATCH --cpus-per-task=1
#SBATCH --time=01:00:00
#SBATCH --ntasks=20
#SBATCH --cpus-per-task=20
#SBATCH --partition=general
#SBATCH --mem-per-cpu=8GB
#SBATCH --mem-per-cpu=2GB
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes.
module use /opt/insy/modulefiles # Use DAIC INSY software collection
module load openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=gmsc output_path=results mpi grid_search > experiments/grid_search_gmsc.log
source experiments/slurm_header.sh
srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=gmsc output_path=results mpi grid_search threaded n_individuals=10 > experiments/logs/grid_search_gmsc.log
#!/bin/bash
#SBATCH --job-name="Grid-search Linearly Separable (ECCCo)"
#SBATCH --time=02:00:00
#SBATCH --ntasks=1000
#SBATCH --cpus-per-task=1
#SBATCH --time=01:00:00
#SBATCH --ntasks=30
#SBATCH --cpus-per-task=30
#SBATCH --partition=general
#SBATCH --mem-per-cpu=4GB
#SBATCH --mem-per-cpu=1GB
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes.
module use /opt/insy/modulefiles # Use DAIC INSY software collection
module load openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=linearly_separable output_path=results mpi grid_search > experiments/grid_search_linearly_separable.log
source experiments/slurm_header.sh
srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=linearly_separable output_path=results mpi grid_search threaded n_individuals=100 > experiments/logs/grid_search_linearly_separable.log
#!/bin/bash
#SBATCH --job-name="Grid-search Synthetic (ECCCo)"
#SBATCH --time=02:00:00
#SBATCH --ntasks=1000
#SBATCH --cpus-per-task=1
#SBATCH --job-name="Grid-search Moons (ECCCo)"
#SBATCH --time=01:00:00
#SBATCH --ntasks=30
#SBATCH --cpus-per-task=30
#SBATCH --partition=general
#SBATCH --mem-per-cpu=8GB
#SBATCH --mem-per-cpu=1GB
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes.
module use /opt/insy/modulefiles # Use DAIC INSY software collection
module load openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=circles output_path=results mpi grid_search > experiments/grid_search_synthetic.log
source experiments/slurm_header.sh
srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=moons output_path=results mpi grid_search threaded n_individuals=100 > experiments/logs/grid_search_moons.log
#!/bin/bash
#SBATCH --job-name="Grid-search Tabular (ECCCo)"
#SBATCH --time=04:00:00
#SBATCH --ntasks=2000
#SBATCH --cpus-per-task=1
#SBATCH --partition=general
#SBATCH --mem-per-cpu=4GB
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes.
module use /opt/insy/modulefiles # Use DAIC INSY software collection
module load openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=gmsc,german_credit output_path=results mpi grid_search > experiments/grid_search_tabular.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