Open mlxd opened 7 years ago
The multiprocess submission code reads the incorrect file for substitution.
```self.srun_contents = self.substitute(self.srun_contents, "<nproc>", str(self.params.shifter.nproc))```
should be
self.srun_contents = self.substitute(self.sbatch_contents, "<nproc>", str(self.params.shifter.nproc))
The multiprocess submission code reads the incorrect file for substitution.
should be
self.srun_contents = self.substitute(self.sbatch_contents, "<nproc>", str(self.params.shifter.nproc))