From dc822d844eb6d2b0e8274ce9dbf3dcc0644c92ae Mon Sep 17 00:00:00 2001 From: ribes Date: Wed, 18 Nov 2009 14:57:53 +0000 Subject: [PATCH] Memory is in kilobytes --- src/PBS/Batch_BatchManager_ePBS.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PBS/Batch_BatchManager_ePBS.cxx b/src/PBS/Batch_BatchManager_ePBS.cxx index 9d4d0ed..994c721 100644 --- a/src/PBS/Batch_BatchManager_ePBS.cxx +++ b/src/PBS/Batch_BatchManager_ePBS.cxx @@ -262,7 +262,7 @@ namespace Batch { if( edt > 0 ) tempOutputFile << "#PBS -l walltime=" << edt*60 << endl; if( mem > 0 ) - tempOutputFile << "#PBS -l mem=" << mem << "mb" << endl; + tempOutputFile << "#PBS -l mem=" << mem << "kb" << endl; tempOutputFile << "#PBS -o " << workDir << "/logs/output.log." << rootNameToExecute << endl; tempOutputFile << "#PBS -e " << workDir << "/logs/error.log." << rootNameToExecute << endl; -- 2.39.2