Package org.ogf.schemas.jsdl.spmd

Examples of org.ogf.schemas.jsdl.spmd.NumberOfProcessesType


            if (isParallelJob(appDepType)) {
                JSDLUtils.getOrCreateSPMDApplication(value).setExecutable(fNameType);
                JSDLUtils.getSPMDApplication(value).setSPMDVariation(getSPMDVariation(appDepType));

                if (getValueFromMap(appDepType, JSDLUtils.NUMBEROFPROCESSES) != null) {
                    NumberOfProcessesType num = NumberOfProcessesType.Factory.newInstance();
                    num.setStringValue(getValueFromMap(appDepType, JSDLUtils.NUMBEROFPROCESSES));
                    JSDLUtils.getSPMDApplication(value).setNumberOfProcesses(num);
                }

                if (getValueFromMap(appDepType, JSDLUtils.PROCESSESPERHOST) != null) {
                    ProcessesPerHostType pph = ProcessesPerHostType.Factory.newInstance();
View Full Code Here

TOP

Related Classes of org.ogf.schemas.jsdl.spmd.NumberOfProcessesType

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.