configs, dev, learning-gem5, python, tests: more clarification
This commit contains the rest of the base 2 vs base 10 cache/memory size clarifications. It also changes the warning message to use warn(). With these changes, the warning message should now no longer show up during a fresh compilation of gem5. Change-Id: Ia63f841bdf045b76473437f41548fab27dc19631
This commit is contained in:
committed by
Erin (Jianghua) Le
parent
28453a0e3e
commit
e1db67c4bd
@@ -218,7 +218,7 @@ else:
|
||||
|
||||
# Define a prototype L1 cache that we scale for all successive levels
|
||||
proto_l1 = Cache(
|
||||
size="32kB",
|
||||
size="32KiB",
|
||||
assoc=4,
|
||||
tag_latency=1,
|
||||
data_latency=1,
|
||||
@@ -356,7 +356,7 @@ last_subsys = getattr(system, f"l{len(cachespec)}subsys0")
|
||||
last_subsys.xbar.point_of_coherency = True
|
||||
if args.noncoherent_cache:
|
||||
system.llc = NoncoherentCache(
|
||||
size="16MB",
|
||||
size="16MiB",
|
||||
assoc=16,
|
||||
tag_latency=10,
|
||||
data_latency=10,
|
||||
|
||||
Reference in New Issue
Block a user