...
> srun --pty --x11=first -p interactive stata -help |
---|
How can Stata use parallel computing?
Stata can not use multiple nodes but stata-mp is able to use multi-cores. See http://www.stata.com/statamp/statamp.pdf for a listing of which Stata functions work well with multi-cores.
$module load stata/13
$srun --pty -c 8 -p interactive stata-mp
or to submit a batch job
$sbatch --time=12:00:00 -c 8 --wrap="stata-mp -b filename.do"