I am trying to run this on Cray XE6:
aprun -n 1 sh -c 'parallel -j8 :::: s.txt'
where in s.txt I have 16 lines like this:
python hello.py > 01.out
hello.py
just prints hello. My script runs forever. And I am running it on one compute node which has 32 cores. Plan was to submit first 8 hello.py
on it to run in parallel
and when they finish to go for another 8. I am new to parallel
command, can someone please see if there is something wrong with my syntax, in particular how to use it with aprun
command.