]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
just a little modification
authorsecher <secher>
Mon, 17 Sep 2007 13:05:29 +0000 (13:05 +0000)
committersecher <secher>
Mon, 17 Sep 2007 13:05:29 +0000 (13:05 +0000)
src/Batch/BatchLight_BatchManager_PBS.cxx
src/Batch/BatchLight_BatchManager_SLURM.cxx

index ae539128cda90d22b513d53dafe8a31cfc8b62a8..b8f11c0d7c36ef4ee21dc7bfa32ba72165a72776 100644 (file)
@@ -273,7 +273,7 @@ namespace BatchLight {
 
     tempOutputFile << "#! /bin/sh -f" << endl ;
     tempOutputFile << "#PBS -l nodes=" << nbnodes << endl ;
-    tempOutputFile << "#PBS -o runSalome.log" << endl ;
+    tempOutputFile << "#PBS -o ~/" << _dirForTmpFiles << "/runSalome.log" << endl ;
     tempOutputFile << _mpiImpl->boot("${PBS_NODEFILE}",nbnodes);
     tempOutputFile << _mpiImpl->run("${PBS_NODEFILE}",nbproc,filenameToExecute.str());
     tempOutputFile << _mpiImpl->halt();
index 3e0fc0fbfdaf73e40da3209afea0258e2226ca8c..23c62f92e6e95bdbdde9168224b96278c4295a76 100644 (file)
@@ -231,14 +231,9 @@ namespace BatchLight {
     tempOutputFile.open(_TmpFileName.c_str(), ofstream::out );
 
     tempOutputFile << "#! /bin/sh -f" << endl ;
-    tempOutputFile << "#BSUB -n  " ;
-    tempOutputFile << nbproc << endl ;
-    tempOutputFile << "#BSUB -o runSalome.log%J" << endl ;
-    tempOutputFile << "mpirun -srun ~/" ;
-    tempOutputFile << _dirForTmpFiles ;
-    tempOutputFile << "/runSalome_" ;
-    tempOutputFile << _fileNameToExecute ;
-    tempOutputFile << "_Batch.sh" << endl ;
+    tempOutputFile << "#BSUB -n " << nbproc << endl ;
+    tempOutputFile << "#BSUB -o ~/" << _dirForTmpFiles << "/runSalome.log%J" << endl ;
+    tempOutputFile << "mpirun -srun ~/" << _dirForTmpFiles << "/runSalome_" << _fileNameToExecute << "_Batch.sh" << endl ;
     tempOutputFile.flush();
     tempOutputFile.close();
     chmod(_TmpFileName.c_str(), 0x1ED);