summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/LFSR16.scala
diff options
context:
space:
mode:
authorSchuyler Eldridge2019-05-07 02:21:50 -0400
committerSchuyler Eldridge2019-05-09 12:47:32 -0400
commitaaee64deb9c4990d0e38043a2b6a4ce747bb6935 (patch)
tree5ce84e585188bf1a934f6b404dc26e1d4175b83d /src/test/scala/chiselTests/LFSR16.scala
parentf35f2a2784d8df7c079ee46eb33eeffd805edb44 (diff)
Deprecate LFSR16, use FibonacciLFSR internally
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'src/test/scala/chiselTests/LFSR16.scala')
-rw-r--r--src/test/scala/chiselTests/LFSR16.scala31
1 files changed, 30 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/LFSR16.scala b/src/test/scala/chiselTests/LFSR16.scala
index c3c9dfad..992bb4bf 100644
--- a/src/test/scala/chiselTests/LFSR16.scala
+++ b/src/test/scala/chiselTests/LFSR16.scala
@@ -5,6 +5,7 @@ package chiselTests
import chisel3._
import chisel3.testers.BasicTester
import chisel3.util._
+import chisel3.util.random.{PRNG, LFSR}
/**
* This test creates two 4 sided dice.
@@ -56,12 +57,40 @@ class LFSRMaxPeriod(gen: => UInt) extends BasicTester {
}
}
+/** Check that the output of the new LFSR is the same asthe old LFSR */
+class MeetTheNewLFSR16SameAsTheOldLFSR16 extends BasicTester {
+
+ /** This is the exact implementation of the old LFSR16 algorithm */
+ val oldLfsr = {
+ val width = 16
+ val lfsr = RegInit(1.U(width.W))
+ lfsr := Cat(lfsr(0)^lfsr(2)^lfsr(3)^lfsr(5), lfsr(width-1,1))
+ lfsr
+ }
+
+ /** The new LFSR16 uses equivalent taps and a reverse so that it can use LFSR(16) under the hood. */
+ val newLfsr = LFSR16()
+
+ val (_, done) = Counter(true.B, 16)
+
+ assert(oldLfsr === newLfsr)
+
+ when (done) {
+ stop()
+ }
+
+}
+
class LFSRSpec extends ChiselPropSpec {
property("LFSR16 can be used to produce pseudo-random numbers, this tests the distribution") {
assertTesterPasses{ new LFSRDistribution(LFSR16()) }
}
property("LFSR16 period tester, Period should 2^16 - 1") {
- assertTesterPasses { new LFSRMaxPeriod(LFSR16()) }
+ assertTesterPasses{ new LFSRMaxPeriod(LFSR16()) }
+ }
+
+ property("New LFSR16 is the same as the old LFSR16") {
+ assertTesterPasses{ new MeetTheNewLFSR16SameAsTheOldLFSR16 }
}
}