You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, split_nlogo_experiment.py creates a separate job script for each experiment. For a large number of experiments, this can be cumbersome.
Instead of separate job scripts per experiment, it should produce a single job script defining a job array. Job arrays are supported by PBS/Torque, Slurm, and Grid Engine.
An example in Slurm:
#SBATCH --job-name=my_job
#SBATCH --array=1-400
The text was updated successfully, but these errors were encountered:
Currently,
split_nlogo_experiment.py
creates a separate job script for each experiment. For a large number of experiments, this can be cumbersome.Instead of separate job scripts per experiment, it should produce a single job script defining a job array. Job arrays are supported by PBS/Torque, Slurm, and Grid Engine.
An example in Slurm:
The text was updated successfully, but these errors were encountered: