From: Luke Kenneth Casson Leighton Date: Mon, 18 Feb 2019 12:20:29 +0000 (+0000) Subject: add comment for random number tests X-Git-Tag: ls180-24jan2020~1910 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4d0c20ae40360f5b4d0215d459a24e64d580cdf2;p=ieee754fpu.git add comment for random number tests --- diff --git a/src/add/test_add.py b/src/add/test_add.py index 8e568526..f752372d 100644 --- a/src/add/test_add.py +++ b/src/add/test_add.py @@ -252,7 +252,7 @@ def testbench(dut): stimulus_b = [randint(0, 1<<32) for i in range(1000)] yield from run_test(dut, stimulus_a, stimulus_b) count += 1000 - print (count, "vectors passed") + print (count, "random vectors passed") if __name__ == '__main__': dut = FPADD(width=32, single_cycle=True)