configs: Change cache_partitioning.py to use PartitionManager
Change-Id: I891cc4967dc5483313bcb1179d19b37123a37ba0 Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
This commit is contained in:
@@ -162,11 +162,13 @@ system = configSystem()
|
|||||||
|
|
||||||
# create a cache to sit between the memory and traffic gen to enforce
|
# create a cache to sit between the memory and traffic gen to enforce
|
||||||
# partitioning policies
|
# partitioning policies
|
||||||
partition_policy = generatePartPolicy(args)
|
part_manager = PartitionManager(
|
||||||
|
partitioning_policies=[generatePartPolicy(args)]
|
||||||
|
)
|
||||||
system.cache = NoncoherentCache(
|
system.cache = NoncoherentCache(
|
||||||
size="64KiB",
|
size="64KiB",
|
||||||
assoc=8,
|
assoc=8,
|
||||||
partitioning_policies=[partition_policy],
|
partitioning_manager=part_manager,
|
||||||
tag_latency=0,
|
tag_latency=0,
|
||||||
data_latency=0,
|
data_latency=0,
|
||||||
response_latency=0,
|
response_latency=0,
|
||||||
|
|||||||
Reference in New Issue
Block a user