blob: b76aa1d6e9be4bacb99f5487ff887d9595c7c605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from m5.SimObject import SimObject
from m5.params import *
class Repl(SimObject):
type = 'Repl'
abstract = True
class GenRepl(Repl):
type = 'GenRepl'
fresh_res = Param.Int("Fresh pool residency time")
num_pools = Param.Int("Number of priority pools")
pool_res = Param.Int("Pool residency time")
|