From: ribes Date: Wed, 18 Nov 2009 14:57:53 +0000 (+0000) Subject: Memory is in kilobytes X-Git-Tag: new_launcher_alpha_091119~3 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=dc822d844eb6d2b0e8274ce9dbf3dcc0644c92ae;p=tools%2Flibbatch.git Memory is in kilobytes --- 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;