Package org.apache.airavata.schemas.gfac

Examples of org.apache.airavata.schemas.gfac.ExtendedKeyValueType


   
    appDepType.setMaxWallTime(15);
   
    appDepType.setExecutableLocation("us_mpi_analysis");
   
    ExtendedKeyValueType extKV = appDepType.addNewKeyValuePairs();
    // using jsdl spmd standard
    extKV.setName("NumberOfProcesses");
    // this will be transformed into mpiexec -n 4
    extKV.setStringValue("32");
   
    /*
     * Default tmp location
     */
    String date = (new Date()).toString();
View Full Code Here


   
//    appDepType.setExecutableLocation("/lustre/jhome11/zam/m.memon/mpiexamples");
   
   
   
    ExtendedKeyValueType extKV = appDepType.addNewKeyValuePairs();
    // using jsdl spmd standard
    extKV.setName("NumberOfProcesses");
    // this will be transformed into mpiexec -n 4
    extKV.setStringValue("1");
   
    /*
     * Default tmp location
     */
    String date = (new Date()).toString();
View Full Code Here

TOP

Related Classes of org.apache.airavata.schemas.gfac.ExtendedKeyValueType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.