summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorØyvind Harboe2021-12-11 04:39:27 +0100
committerGitHub2021-12-11 03:39:27 +0000
commit55cb58877aca898f1ccae5edf29aeede9d1b71ba (patch)
tree1a866565c79bcbbc8d79564f46929c24f67f8137 /src
parent630d05bdca90ec1c80eaaa7834e755f51095463d (diff)
reduceTree() now operates on Seq (#2292)
preserves input/output information of the type being reduced. Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r--src/test/scala/chiselTests/Vec.scala34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/test/scala/chiselTests/Vec.scala b/src/test/scala/chiselTests/Vec.scala
index 97aea909..24ba0bf8 100644
--- a/src/test/scala/chiselTests/Vec.scala
+++ b/src/test/scala/chiselTests/Vec.scala
@@ -313,6 +313,36 @@ class ModuleIODynamicIndexTester(n: Int) extends BasicTester {
when (done) { stop() }
}
+class ReduceTreeTester() extends BasicTester {
+ class FooIO[T <: Data](n: Int, private val gen: T) extends Bundle {
+ val in = Flipped(Vec(n, new DecoupledIO(gen)))
+ val out = new DecoupledIO(gen)
+ }
+
+ class Foo[T <: Data](n: Int, private val gen: T) extends Module {
+ val io = IO(new FooIO(n, gen))
+
+ def foo(a: DecoupledIO[T], b: DecoupledIO[T]) = {
+ a.ready := true.B
+ b.ready := true.B
+ val out = Wire(new DecoupledIO(gen))
+
+ out.valid := true.B
+
+ val regSel = RegInit(false.B)
+ out.bits := Mux(regSel, a.bits, b.bits)
+ out.ready := a.ready
+ out
+ }
+
+ io.out <> io.in.reduceTree(foo)
+ }
+
+ val dut = Module(new Foo(5, UInt(5.W)))
+ dut.io := DontCare
+ stop()
+}
+
class VecSpec extends ChiselPropSpec with Utils {
// Disable shrinking on error.
implicit val noShrinkListVal = Shrink[List[Int]](_ => Stream.empty)
@@ -456,4 +486,8 @@ class VecSpec extends ChiselPropSpec with Utils {
}}
}
}
+
+ property("reduceTree should preserve input/output type") {
+ assertTesterPasses { new ReduceTreeTester() }
+ }
}