s**p 发帖数: 275 | 1 请教各位:
我是一个MPI的新手,
现在我有1000个小程序,每个程序的运行script为:
fff <1.a> z01
fff <2.a> z02
...
其中 fff 为应用程序, 1.a, 2.a 为我的input, z01,z02 为输出
我想用多nodes加快运行速度,如何写script? | B******e 发帖数: 48 | 2 you should read machine file in MPI doc
【在 s**p 的大作中提到】 : 请教各位: : 我是一个MPI的新手, : 现在我有1000个小程序,每个程序的运行script为: : fff <1.a> z01 : fff <2.a> z02 : ... : 其中 fff 为应用程序, 1.a, 2.a 为我的input, z01,z02 为输出 : 我想用多nodes加快运行速度,如何写script?
| s*******d 发帖数: 59 | 3 why not use rsh?
rsh node1 command1&
rsh node2 command2&
simpler, write a loop to create and execute these lines. | s**p 发帖数: 275 | 4 This method worked when I used a Linux based workstation in which each node
can be accessed directly.
But now I am using a super computer. I can only enter one node, not all
nodes.
【在 s*******d 的大作中提到】 : why not use rsh? : rsh node1 command1& : rsh node2 command2& : simpler, write a loop to create and execute these lines.
|
|