wall clock time makes rt quota independent of nprocs

This commit is contained in:
cody burkard
2014-09-04 10:46:57 -07:00
parent cde6c3aaf4
commit 04c1c098ed
+1 -1
View File
@@ -661,7 +661,7 @@ class CPULimitedHost( Host ):
"Internal method: return parameters for RT bandwidth"
pstr, qstr = 'rt_period_us', 'rt_runtime_us'
# RT uses wall clock time for period and quota
quota = int( self.period_us * f * numCores() )
quota = int( self.period_us * f )
return pstr, qstr, self.period_us, quota
def cfsInfo( self, f):