]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
CCAR: update from BR_Dev_For_4_0 branch
authorcaremoli <caremoli>
Wed, 16 Jan 2008 07:57:21 +0000 (07:57 +0000)
committercaremoli <caremoli>
Wed, 16 Jan 2008 07:57:21 +0000 (07:57 +0000)
src/Batch/BatchLight_BatchManager_PBS.cxx
src/Batch/BatchLight_BatchManager_SLURM.cxx

index d2856d828ce0db54781ac3cadb0ce1b655bb7509..bba030a0c69177070ca2ae90167359cf6826e9e9 100644 (file)
@@ -184,7 +184,7 @@ namespace BatchLight {
     tempOutputFile << "if test " ;
     tempOutputFile << _mpiImpl->rank() ;
     tempOutputFile << " = 0; then" << endl ;
-    tempOutputFile << "  ./runAppli --terminal --batch --modules=" ;
+    tempOutputFile << "  ./runAppli --terminal --modules=" ;
     for ( int i = 0 ; i < _params.modulesList.size() ; i++ ) {
       tempOutputFile << _params.modulesList[i] ;
       if ( i != _params.modulesList.size()-1 )
index 67c1ed6fbce78bb25e2c079946b5bbfc4e0008f3..9a740e32838dbf8fa7f1ba8d60f76f8df20bccd2 100644 (file)
@@ -162,7 +162,7 @@ namespace BatchLight {
     tempOutputFile << _dirForTmpFiles ;
     tempOutputFile << ":$PYTHONPATH" << endl ;
     tempOutputFile << "if test $SLURM_PROCID = 0; then" << endl ;
-    tempOutputFile << "  ./runAppli --terminal --batch --modules=" ;
+    tempOutputFile << "  ./runAppli --terminal --modules=" ;
     for ( int i = 0 ; i < _params.modulesList.size() ; i++ ) {
       tempOutputFile << _params.modulesList[i] ;
       if ( i != _params.modulesList.size()-1 )
@@ -173,13 +173,12 @@ namespace BatchLight {
     tempOutputFile << "  do" << endl ;
     tempOutputFile << "    arglist=\"$arglist YACS_Server_\"$ip" << endl ;
     tempOutputFile << "  done" << endl ;
-    tempOutputFile << "  sleep 5" << endl ;
+    tempOutputFile << "  ./runSession waitNS.sh" << endl ;
     tempOutputFile << "  ./runSession waitContainers.py $arglist" << endl ;
     tempOutputFile << "  ./runSession python ~/" << _dirForTmpFiles << "/" << _fileNameToExecute << ".py" << endl;
     tempOutputFile << "  ./runSession killCurrentPort" << endl;
     tempOutputFile << "else" << endl ;
-    tempOutputFile << "  sleep 5" << endl ;
-    tempOutputFile << "  ./runSession waitNS.py" << endl ;
+    tempOutputFile << "  ./runSession waitNS.sh" << endl ;
     tempOutputFile << "  ./runSession SALOME_Container 'YACS_Server_'${SLURM_PROCID}" << endl ;
     tempOutputFile << "fi" << endl ;
     tempOutputFile.flush();
@@ -226,7 +225,7 @@ namespace BatchLight {
 
     tempOutputFile << "#! /bin/sh -f" << endl ;
     tempOutputFile << "#BSUB -n " << nbproc << endl ;
-    tempOutputFile << "#BSUB -o ~/" << _dirForTmpFiles << "/runSalome.log%J" << endl ;
+    tempOutputFile << "#BSUB -o " << _dirForTmpFiles << "/runSalome.log%J" << endl ;
     tempOutputFile << "mpirun -srun ~/" << _dirForTmpFiles << "/runSalome_" << _fileNameToExecute << "_Batch.sh" << endl ;
     tempOutputFile.flush();
     tempOutputFile.close();