org.griphyn.cPlanner.cluster.aggregator |
|
Java Source File Name | Type | Comment |
Abstract.java | Class | An abstract implementation of the JobAggregator interface, which the other
implementations can choose to extend. |
JobAggregatorFactory.java | Class | A factory class to load the appropriate JobAggregator implementations while
clustering jobs. |
JobAggregatorFactoryException.java | Class | Class to notify of failures while instantiating JobAggregator implementations. |
JobAggregatorInstanceFactory.java | Class | A JobAggergator factory that caches up the loaded implementations.
It loads a new implementation only if it has not loaded it earlier.
However, it is different from a Singleton Factory, as the implementations
are not stored in static instances. |
MPIExec.java | Class | This class aggregates the smaller jobs in a manner such that
they are launched at remote end, by mpiexec on n nodes where n is the nodecount
associated with the aggregated job that is being lauched by mpiexec. |
SeqExec.java | Class | This class aggregates the smaller jobs in a manner such that
they are launched at remote end, sequentially on a single node using
seqexec. |