From 8a0ecdaaad09686681ca029b6594f8c3a7c2bd65 Mon Sep 17 00:00:00 2001 From: "Wesley W. Terpstra" Date: Thu, 17 Nov 2016 11:07:49 -0800 Subject: [PATCH] groundtest: ComparatorConfig lives again --- src/main/scala/groundtest/Configs.scala | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/scala/groundtest/Configs.scala b/src/main/scala/groundtest/Configs.scala index 29c15fb5..d77ed853 100644 --- a/src/main/scala/groundtest/Configs.scala +++ b/src/main/scala/groundtest/Configs.scala @@ -85,7 +85,7 @@ class WithGroundTest extends Config( maxClientXacts = ((site(DCacheKey).nMSHRs + 1) +: site(GroundTestKey).map(_.maxXacts)) .reduce(max(_, _)), - maxClientsPerPort = 1, + maxClientsPerPort = site(GroundTestKey).map(_.uncached).sum, maxManagerXacts = site(NAcquireTransactors) + 2, dataBeats = dataBeats, dataBits = site(CacheBlockBytes)*8) @@ -106,8 +106,7 @@ class WithComparator extends Config( case BuildGroundTest => (p: Parameters) => Module(new ComparatorCore()(p)) case ComparatorKey => ComparatorParameters( - targets = Seq("mem", "TL2:testram").map(name => - site(GlobalAddrMap)(name).start.longValue), + targets = Seq(site(ExtMemBase), testRamAddr), width = 8, operations = 1000, atomics = site(UseAtomics),