Salome HOME
Changed memory unit in eLSF to be coherent with ePBS (kb for now, will be changed...
authorbarate <barate>
Thu, 20 May 2010 13:18:22 +0000 (13:18 +0000)
committerbarate <barate>
Thu, 20 May 2010 13:18:22 +0000 (13:18 +0000)
src/LSF/Batch_BatchManager_eLSF.cxx

index f5fc22da23c297cdd106ff26704751e732f5cf87..80d0346b2c0b6dc37752218c973c081cf12628e7 100644 (file)
@@ -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;