Clean up configs.
configs/common/FSConfig.py: configs/common/SysPaths.py: configs/example/fs.py: configs/example/se.py: tests/configs/o3-timing-mp.py: tests/configs/o3-timing.py: Clean up configs by removing FullO3Config and instead using default values. src/python/m5/objects/FUPool.py: Add in default FUPool. src/python/m5/objects/O3CPU.py: Use defaults better. Also set checker parameters, and fix up a config bug. --HG-- extra : convert_revision : 5fd0c000143f4881f10a9a575c3810dc97cb290b
This commit is contained in:
parent
b17421da20
commit
8949d813ff
9 changed files with 60 additions and 14 deletions
|
@ -30,7 +30,6 @@ import m5
|
|||
from m5 import makeList
|
||||
from m5.objects import *
|
||||
from Benchmarks import *
|
||||
from FullO3Config import *
|
||||
|
||||
class CowIdeDisk(IdeDisk):
|
||||
image = CowDiskImage(child=RawDiskImage(read_only=True),
|
||||
|
|
|
@ -58,7 +58,7 @@ def system():
|
|||
if not binary.dir:
|
||||
binary.dir = joinpath(system.dir, 'binaries')
|
||||
if not disk.dir:
|
||||
disk.dir = joinpath(system.dir, 'disks')
|
||||
disk.dir = joinpath('/n/zamp/z/ktlim/local/clean/linux', 'disks')
|
||||
if not script.dir:
|
||||
script.dir = joinpath(system.dir, 'boot')
|
||||
|
||||
|
|
|
@ -63,8 +63,8 @@ if args:
|
|||
sys.exit(1)
|
||||
|
||||
if options.detailed:
|
||||
cpu = DetailedO3CPU()
|
||||
cpu2 = DetailedO3CPU()
|
||||
cpu = DerivO3CPU()
|
||||
cpu2 = DerivO3CPU()
|
||||
mem_mode = 'timing'
|
||||
elif options.timing:
|
||||
cpu = TimingSimpleCPU()
|
||||
|
|
|
@ -34,7 +34,6 @@ import m5
|
|||
from m5.objects import *
|
||||
import os, optparse, sys
|
||||
m5.AddToPath('../common')
|
||||
from FullO3Config import *
|
||||
|
||||
parser = optparse.OptionParser()
|
||||
|
||||
|
@ -86,7 +85,7 @@ if options.detailed:
|
|||
if options.timing:
|
||||
cpu = TimingSimpleCPU()
|
||||
elif options.detailed:
|
||||
cpu = DetailedO3CPU()
|
||||
cpu = DerivO3CPU()
|
||||
else:
|
||||
cpu = AtomicSimpleCPU()
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
from m5.SimObject import SimObject
|
||||
from m5.params import *
|
||||
from FuncUnit import *
|
||||
from FuncUnitConfig import *
|
||||
|
||||
class FUPool(SimObject):
|
||||
type = 'FUPool'
|
||||
FUList = VectorParam.FUDesc("list of FU's for this pool")
|
||||
|
||||
class DefaultFUPool(FUPool):
|
||||
FUList = [ IntALU(), IntMultDiv(), FP_ALU(), FP_MultDiv(), ReadPort(),
|
||||
WritePort(), RdWrPort(), IprPort() ]
|
||||
|
|
41
src/python/m5/objects/FuncUnitConfig.py
Normal file
41
src/python/m5/objects/FuncUnitConfig.py
Normal file
|
@ -0,0 +1,41 @@
|
|||
from m5.SimObject import SimObject
|
||||
from m5.params import *
|
||||
from FuncUnit import *
|
||||
|
||||
class IntALU(FUDesc):
|
||||
opList = [ OpDesc(opClass='IntAlu') ]
|
||||
count = 6
|
||||
|
||||
class IntMultDiv(FUDesc):
|
||||
opList = [ OpDesc(opClass='IntMult', opLat=3),
|
||||
OpDesc(opClass='IntDiv', opLat=20, issueLat=19) ]
|
||||
count=2
|
||||
|
||||
class FP_ALU(FUDesc):
|
||||
opList = [ OpDesc(opClass='FloatAdd', opLat=2),
|
||||
OpDesc(opClass='FloatCmp', opLat=2),
|
||||
OpDesc(opClass='FloatCvt', opLat=2) ]
|
||||
count = 4
|
||||
|
||||
class FP_MultDiv(FUDesc):
|
||||
opList = [ OpDesc(opClass='FloatMult', opLat=4),
|
||||
OpDesc(opClass='FloatDiv', opLat=12, issueLat=12),
|
||||
OpDesc(opClass='FloatSqrt', opLat=24, issueLat=24) ]
|
||||
count = 2
|
||||
|
||||
class ReadPort(FUDesc):
|
||||
opList = [ OpDesc(opClass='MemRead') ]
|
||||
count = 0
|
||||
|
||||
class WritePort(FUDesc):
|
||||
opList = [ OpDesc(opClass='MemWrite') ]
|
||||
count = 0
|
||||
|
||||
class RdWrPort(FUDesc):
|
||||
opList = [ OpDesc(opClass='MemRead'), OpDesc(opClass='MemWrite') ]
|
||||
count = 4
|
||||
|
||||
class IprPort(FUDesc):
|
||||
opList = [ OpDesc(opClass='IprAccess', opLat = 3, issueLat = 3) ]
|
||||
count = 1
|
||||
|
|
@ -3,6 +3,7 @@ from m5.proxy import *
|
|||
from m5 import build_env
|
||||
from BaseCPU import BaseCPU
|
||||
from Checker import O3Checker
|
||||
from FUPool import *
|
||||
|
||||
class DerivO3CPU(BaseCPU):
|
||||
type = 'DerivO3CPU'
|
||||
|
@ -14,11 +15,13 @@ class DerivO3CPU(BaseCPU):
|
|||
if build_env['USE_CHECKER']:
|
||||
if not build_env['FULL_SYSTEM']:
|
||||
checker = Param.BaseCPU(O3Checker(workload=Parent.workload,
|
||||
exitOnError=True,
|
||||
exitOnError=False,
|
||||
updateOnError=True,
|
||||
warnOnlyOnLoadError=False),
|
||||
"checker")
|
||||
else:
|
||||
checker = Param.BaseCPU(O3Checker(exitOnError=True, warnOnlyOnLoadError=False), "checker")
|
||||
checker = Param.BaseCPU(O3Checker(exitOnError=False, updateOnError=True,
|
||||
warnOnlyOnLoadError=False), "checker")
|
||||
checker.itb = Parent.itb
|
||||
checker.dtb = Parent.dtb
|
||||
|
||||
|
@ -57,7 +60,7 @@ class DerivO3CPU(BaseCPU):
|
|||
issueWidth = Param.Unsigned(8, "Issue width")
|
||||
wbWidth = Param.Unsigned(8, "Writeback width")
|
||||
wbDepth = Param.Unsigned(1, "Writeback depth")
|
||||
fuPool = Param.FUPool("Functional Unit pool")
|
||||
fuPool = Param.FUPool(DefaultFUPool(), "Functional Unit pool")
|
||||
|
||||
iewToCommitDelay = Param.Unsigned(1, "Issue/Execute/Writeback to commit "
|
||||
"delay")
|
||||
|
@ -77,7 +80,7 @@ class DerivO3CPU(BaseCPU):
|
|||
localHistoryBits = Param.Unsigned(11, "Bits for the local history")
|
||||
globalPredictorSize = Param.Unsigned(8192, "Size of global predictor")
|
||||
globalCtrBits = Param.Unsigned(2, "Bits per counter")
|
||||
globalHistoryBits = Param.Unsigned(4096, "Bits of history")
|
||||
globalHistoryBits = Param.Unsigned(13, "Bits of history")
|
||||
choicePredictorSize = Param.Unsigned(8192, "Size of choice predictor")
|
||||
choiceCtrBits = Param.Unsigned(2, "Bits of choice counters")
|
||||
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
import m5
|
||||
from m5.objects import *
|
||||
m5.AddToPath('../configs/common')
|
||||
from FullO3Config import *
|
||||
|
||||
# --------------------
|
||||
# Base L1 Cache
|
||||
|
@ -54,7 +53,7 @@ class L2(BaseCache):
|
|||
write_buffers = 8
|
||||
|
||||
nb_cores = 4
|
||||
cpus = [ DetailedO3CPU() for i in xrange(nb_cores) ]
|
||||
cpus = [ DerivO3CPU() for i in xrange(nb_cores) ]
|
||||
|
||||
# system simulated
|
||||
system = System(cpu = cpus, physmem = PhysicalMemory(), membus =
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
import m5
|
||||
from m5.objects import *
|
||||
m5.AddToPath('../configs/common')
|
||||
from FullO3Config import *
|
||||
|
||||
class MyCache(BaseCache):
|
||||
assoc = 2
|
||||
|
@ -38,7 +37,7 @@ class MyCache(BaseCache):
|
|||
mshrs = 10
|
||||
tgts_per_mshr = 5
|
||||
|
||||
cpu = DetailedO3CPU()
|
||||
cpu = DerivO3CPU()
|
||||
cpu.addTwoLevelCacheHierarchy(MyCache(size = '128kB'), MyCache(size = '256kB'),
|
||||
MyCache(size = '2MB'))
|
||||
cpu.mem = cpu.dcache
|
||||
|
|
Loading…
Reference in a new issue