From 9a0628a7ef06e371873bffc6d8f4681b9a2eacfa Mon Sep 17 00:00:00 2001 From: barate Date: Thu, 20 May 2010 13:18:22 +0000 Subject: [PATCH] Changed memory unit in eLSF to be coherent with ePBS (kb for now, will be changed to MB later). --- 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 f5fc22d..80d0346 100644 --- a/src/LSF/Batch_BatchManager_eLSF.cxx +++ b/src/LSF/Batch_BatchManager_eLSF.cxx @@ -255,7 +255,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; -- 2.39.2