From: barate Date: Wed, 29 Jun 2011 08:15:13 +0000 (+0000) Subject: Rollback previous commit. Memory for LSF is specified in kb. X-Git-Tag: V1_3_1rc1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=d6d1bd42056a70d40cd1ababe039c65770afcef4;p=tools%2Flibbatch.git Rollback previous commit. Memory for LSF is specified in kb. --- diff --git a/src/LSF/Batch_BatchManager_eLSF.cxx b/src/LSF/Batch_BatchManager_eLSF.cxx index 73db2c9..fe3cfc7 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 << endl ; + tempOutputFile << "#BSUB -M " << mem*1024 << endl ; tempOutputFile << "#BSUB -n " << nbproc << endl ; size_t pos = workDir.find("$HOME"); string baseDir;