X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSlurm%2FBatch_FactBatchManager_eSlurm.cxx;h=9fd77abf488a63c0af22857dffc5d441e2279a0c;hb=22e2a51eb83e8e1ff962a027f67f9e433d30389f;hp=36a217ad004876f7bae7bdfb14639324c35b5507;hpb=f9cfa27307e650551fd1f69d616cdec5f9ff2efd;p=tools%2Flibbatch.git diff --git a/src/Slurm/Batch_FactBatchManager_eSlurm.cxx b/src/Slurm/Batch_FactBatchManager_eSlurm.cxx index 36a217a..9fd77ab 100644 --- a/src/Slurm/Batch_FactBatchManager_eSlurm.cxx +++ b/src/Slurm/Batch_FactBatchManager_eSlurm.cxx @@ -35,7 +35,7 @@ namespace Batch { static FactBatchManager_eSlurm sFBM_eSlurm; - FactBatchManager_eSlurm::FactBatchManager_eSlurm() : FactBatchManager_eClient("eSLURM") + FactBatchManager_eSlurm::FactBatchManager_eSlurm() : FactBatchManager("SLURM") { } @@ -43,19 +43,12 @@ namespace Batch { { } - BatchManager * FactBatchManager_eSlurm::operator() (const char * hostname) const + BatchManager * FactBatchManager_eSlurm::operator() (const char * hostname, + const char * username, + CommunicationProtocolType protocolType, + const char * mpiImpl, + int nb_proc_per_node) const { - // MESSAGE("Building new BatchManager_eSlurm on host '" << hostname << "'"); - return new BatchManager_eSlurm(this, hostname); - } - - BatchManager_eClient * FactBatchManager_eSlurm::operator() (const char * hostname, - const char * username, - CommunicationProtocolType protocolType, - const char * mpiImpl, - int nb_proc_per_node) const - { - // MESSAGE("Building new BatchManager_eSlurm on host '" << hostname << "'"); return new BatchManager_eSlurm(this, hostname, username, protocolType, mpiImpl, nb_proc_per_node); }