Hi I'm new to SLURM, and i encountered a problem. I tried to use sbatch to run parallel tasks from a single batch script, but, as i noticed, they are being run sequentially. What should i do to force sbatch to run all tasks simultaneously?
Code: Master script: `sbatch -n "$count" -c 1 -J Name script.log` where $count is the number of tasks to run and script.log is the batch script Batch script: #!/bin/bash srun -n 1 script1.py srun -n 1 script2.py srun -n 1 script3.py Any ideas?
