From: ribes Date: Wed, 29 Jun 2011 07:18:40 +0000 (+0000) Subject: Bug Fix Memory for LSF X-Git-Tag: V1_3_1rc1~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=9063628bc625cc8174a17887600f5c106e272b12;p=tools%2Flibbatch.git Bug Fix Memory for LSF --- diff --git a/src/LSF/Batch_BatchManager_eLSF.cxx b/src/LSF/Batch_BatchManager_eLSF.cxx index fe3cfc7..73db2c9 100644 --- a/src/LSF/Batch_BatchManager_eLSF.cxx +++ b/src/LSF/Batch_BatchManager_eLSF.cxx @@ -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;