Page 1 of 1

OpenSeesMP

Posted: Fri Nov 13, 2009 2:20 am
by jinlu
I'm not sure if I understand how to use OpenSeesMP. Below is the shorten version of my tcl script (where A.tcl and B.tcl are separate models). But seems the run just hangs on TACC Ranger. Or maybe this is not a proper way to use MP version?

-Jinchi

set pid [getPID]
set np [getNP]
switch $pid {
0 {
source A.tcl
}
1 {
source B.tcl
}
default {}
}
barrier

Posted: Fri Nov 13, 2009 3:52 pm
by jinlu
It seems the hanging issue is not from the tcl script but from qsub script. This tcl script worked OK when I changed my qsub script.

Jinchi