本文整理汇总了Python中CacheConfig.config_cache_parbs方法的典型用法代码示例。如果您正苦于以下问题:Python CacheConfig.config_cache_parbs方法的具体用法?Python CacheConfig.config_cache_parbs怎么用?Python CacheConfig.config_cache_parbs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CacheConfig
的用法示例。
在下文中一共展示了CacheConfig.config_cache_parbs方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: CoherentBus
# 需要导入模块: import CacheConfig [as 别名]
# 或者: from CacheConfig import config_cache_parbs [as 别名]
# Connect the cpu's cache ports to Ruby
system.cpu[i].icache_port = ruby_port.slave
system.cpu[i].dcache_port = ruby_port.slave
if buildEnv['TARGET_ISA'] == 'x86':
system.cpu[i].interrupts.pio = ruby_port.master
system.cpu[i].interrupts.int_master = ruby_port.slave
system.cpu[i].interrupts.int_slave = ruby_port.master
system.cpu[i].itb.walker.port = ruby_port.slave
system.cpu[i].dtb.walker.port = ruby_port.slave
else:
system.membus = CoherentBus()
system.system_port = system.membus.slave
if options.mutlu:
CacheConfig.config_cache_parbs(options, system)
else:
CacheConfig.config_cache(options, system)
MemConfig.config_mem(options, system)
if options.dump_interval:
statDump (options.dump_interval)
m5.disableAllListeners()
root = Root(full_system = False, system = system)
#Prodromou: Try to modify the tCL value of the controller
#for ctrl in system.mem_ctrls:
# print "Hello %l" % (ctrl.tCL.getValue())
Simulation.run(options, root, system, FutureClass)