From da302504a5fa469edd3b940bb50eacdb8b77236a Mon Sep 17 00:00:00 2001 From: Howard Mao Date: Fri, 19 Feb 2016 23:14:34 -0800 Subject: [PATCH] get rid of sequential same id get regression in broadcast regression suite --- groundtest/src/main/scala/regression.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/groundtest/src/main/scala/regression.scala b/groundtest/src/main/scala/regression.scala index 8bfa1315..f44da1c4 100644 --- a/groundtest/src/main/scala/regression.scala +++ b/groundtest/src/main/scala/regression.scala @@ -283,7 +283,8 @@ class PrefetchHitRegression(implicit p: Parameters) extends Regression()(p) { } /* This tests the sort of access the pattern that Hwacha uses. - * Instead of using PutBlock/GetBlock, it uses word-sized puts and gets. + * Instead of using PutBlock/GetBlock, it uses word-sized puts and gets + * to the same block. * Each request has the same client_xact_id, but there are multiple in flight. * The responses therefore must come back in the order they are sent. */ class SequentialSameIdGetRegression(implicit p: Parameters) extends Regression()(p) { @@ -379,8 +380,7 @@ object RegressionTests { Module(new WritebackRegression)) def broadcastRegressions(implicit p: Parameters) = Seq( Module(new IOGetAfterPutBlockRegression), - Module(new WriteMaskedPutBlockRegression), - Module(new SequentialSameIdGetRegression)) + Module(new WriteMaskedPutBlockRegression)) } case object GroundTestRegressions extends Field[Parameters => Seq[Regression]]