Changeset 147
- Timestamp:
- 06/12/09 14:02:42 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pyina/applications/mpi_world.py
r137 r147 30 30 def alias(nnodes): 31 31 "set a bash shell alias to configure mpiexec to run python on nnodes" 32 raise NotImplementedError #FIXME: alias doesn't stick to user's console33 32 node = str(nnodes) 34 33 alias = "mpython%s='mpiexec -np %s `which mpipython.exe`'" % (node,node) 35 34 command = "alias %s" % alias 35 print command 36 raise NotImplementedError #FIXME: alias doesn't stick to user's console 36 37 try: 37 38 launch(command)
Note: See TracChangeset
for help on using the changeset viewer.