Searched refs:L1Cache (Results 1 - 22 of 22) sorted by relevance

/gem5/configs/common/
H A DCaches.py53 class L1Cache(Cache): class in inherits:Cache
61 class L1_ICache(L1Cache):
66 class L1_DCache(L1Cache):
/gem5/configs/learning_gem5/part1/
H A Dcaches.py51 class L1Cache(Cache): class in inherits:Cache
62 super(L1Cache, self).__init__()
74 class L1ICache(L1Cache):
93 class L1DCache(L1Cache):
/gem5/configs/ruby/
H A DGarnet_standalone.py40 class L1Cache(RubyCache): pass class in inherits:RubyCache
75 cache = L1Cache(size = options.l1d_size,
H A DAMD_Base_Constructor.py49 class L1Cache(RubyCache): class in inherits:RubyCache
73 self.L1Icache = L1Cache()
75 self.L1D0cache = L1Cache()
77 self.L1D1cache = L1Cache()
H A DMESI_Two_Level.py40 class L1Cache(RubyCache): pass class in inherits:RubyCache
74 l1i_cache = L1Cache(size = options.l1i_size,
78 l1d_cache = L1Cache(size = options.l1d_size,
H A DMOESI_CMP_directory.py52 class L1Cache(RubyCache): class in inherits:RubyCache
90 l1i_cache = L1Cache(size = options.l1i_size,
94 l1d_cache = L1Cache(size = options.l1d_size,
H A DMOESI_hammer.py41 class L1Cache(RubyCache): pass class in inherits:RubyCache
82 l1i_cache = L1Cache(size = options.l1i_size,
86 l1d_cache = L1Cache(size = options.l1d_size,
H A DMOESI_CMP_token.py40 class L1Cache(RubyCache): pass class in inherits:RubyCache
87 l1i_cache = L1Cache(size = options.l1i_size,
90 l1d_cache = L1Cache(size = options.l1d_size,
H A DMI_example.py40 class L1Cache(RubyCache): pass class in inherits:RubyCache
73 cache = L1Cache(size = options.l1d_size,
H A DMESI_Three_Level.py44 class L1Cache(RubyCache): pass class in inherits:RubyCache
125 l1_cache = L1Cache(size = options.l1d_size,
H A DGPU_VIPER_Region.py69 class L1Cache(RubyCache): class in inherits:RubyCache
95 self.L1Icache = L1Cache()
97 self.L1D0cache = L1Cache()
99 self.L1D1cache = L1Cache()
H A DGPU_VIPER_Baseline.py68 class L1Cache(RubyCache): class in inherits:RubyCache
94 self.L1Icache = L1Cache()
96 self.L1D0cache = L1Cache()
98 self.L1D1cache = L1Cache()
H A DGPU_VIPER.py68 class L1Cache(RubyCache): class in inherits:RubyCache
94 self.L1Icache = L1Cache()
96 self.L1D0cache = L1Cache()
98 self.L1D1cache = L1Cache()
/gem5/configs/common/cores/arm/
H A Dex5_LITTLE.py101 class L1Cache(Cache): class in inherits:Cache
109 class L1I(L1Cache):
116 class L1D(L1Cache):
H A Dex5_big.py152 class L1Cache(Cache): class in inherits:Cache
161 class L1I(L1Cache):
168 class L1D(L1Cache):
/gem5/configs/learning_gem5/part3/
H A Dtest_caches.py47 from msi_caches import L1Cache, DirController, MyNetwork
75 [L1Cache(system, self, self) for i in range(num_testers)] + \
H A Dmsi_caches.py78 [L1Cache(system, self, cpu) for cpu in cpus] + \
122 class L1Cache(L1Cache_Controller): class in inherits:L1Cache_Controller
134 super(L1Cache, self).__init__()
H A Druby_caches_MI_example.py78 [L1Cache(system, self, cpu) for cpu in cpus] + \
119 class L1Cache(L1Cache_Controller): class in inherits:L1Cache_Controller
131 super(L1Cache, self).__init__()
/gem5/tests/gem5/cpu_tests/
H A Drun.py36 class L1Cache(Cache): class in inherits:Cache
55 class L1ICache(L1Cache):
65 class L1DCache(L1Cache):
/gem5/tests/configs/
H A Dmemtest.py63 cpu.l1c = L1Cache(size = '32kB', assoc = 4)
H A Dmemtest-filter.py64 cpu.l1c = L1Cache(size = '32kB', assoc = 4)
/gem5/tests/gem5/memory/
H A Dmemtest-run.py64 cpu.l1c = L1Cache(size = '32kB', assoc = 4)

Completed in 35 milliseconds