]> SALOME platform Git repositories - tools/libbatch.git/commitdiff
Salome HOME
Rollback previous commit. Memory for LSF is specified in kb. V1_3_1rc1
authorbarate <barate>
Wed, 29 Jun 2011 08:15:13 +0000 (08:15 +0000)
committerbarate <barate>
Wed, 29 Jun 2011 08:15:13 +0000 (08:15 +0000)
src/LSF/Batch_BatchManager_eLSF.cxx

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