Paste #150

Welcome To LodgeIt

Welcome to the LodgeIt pastebin. In order to use the notification feature a 31 day cookie with an unique ID was created for you. The lodgeit database does not store any information about you, it's just used for an advanced pastebin experience :-). Read more on the about lodgeit page. Have fun :-)

hide this notification

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#!/bin/bash

for i in {1..16};
do

printf "runing with $i cores...\n"

mpirun -np $i python yt-test.py >& core_$i

wait $!

done