From d6d1bd42056a70d40cd1ababe039c65770afcef4 Mon Sep 17 00:00:00 2001 From: barate Date: Wed, 29 Jun 2011 08:15:13 +0000 Subject: [PATCH] Rollback previous commit. Memory for LSF is specified in kb. --- src/LSF/Batch_BatchManager_eLSF.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2