]> SALOME platform Git repositories - tools/libbatch.git/commitdiff
Salome HOME
Bug Fix Memory for LSF
authorribes <ribes>
Wed, 29 Jun 2011 07:18:40 +0000 (07:18 +0000)
committerribes <ribes>
Wed, 29 Jun 2011 07:18:40 +0000 (07:18 +0000)
src/LSF/Batch_BatchManager_eLSF.cxx

index fe3cfc7ef634039ed8679d98c8c56a8ac210d7e6..73db2c944b4fe2424aa6707f909046a2ea26befd 100644 (file)
@@ -265,7 +265,7 @@ namespace Batch {
     if( edt > 0 )
       tempOutputFile << "#BSUB -W " << getWallTime(edt) << endl ;
     if( mem > 0 )
-      tempOutputFile << "#BSUB -M " << mem*1024 << endl ;
+      tempOutputFile << "#BSUB -M " << mem << endl ;
     tempOutputFile << "#BSUB -n " << nbproc << endl ;
     size_t pos = workDir.find("$HOME");
     string baseDir;