https://github.com/geodynamics/citcoms
Revision 79f2f38675d0974e97501e2f43052dd3bbf7582b authored by Vlad Manea on 30 March 2005, 10:27:51 UTC, committed by Vlad Manea on 30 March 2005, 10:27:51 UTC
1 parent 97e5139
Raw File
Tip revision: 79f2f38675d0974e97501e2f43052dd3bbf7582b authored by Vlad Manea on 30 March 2005, 10:27:51 UTC
*** empty log message ***
Tip revision: 79f2f38
hrothgar.py
#!/usr/bin/env python
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# <LicenseText>
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#

import journal


# the required component factory
def staging():

    info = journal.debug("staging")
    info.log("instantiating application launcher")

    from mpi.LauncherMPICH import LauncherMPICH
    stager = LauncherMPICH()

    # initialize using the local values
    stager.inventory.nodegen = "n%03d"
    stager.inventory.nodes = 12
    stager.inventory.nodelist = [101,102,103,104,105,106]
    return stager


# version
# $Id: hrothgar.py,v 1.2 2003/08/01 22:57:42 tan2 Exp $

# End of file
back to top