mirror of https://github.com/VLSIDA/OpenRAM.git
Fix unit test to have fanout.
This commit is contained in:
parent
28fe49d069
commit
c1c1ba38a3
|
|
@ -22,15 +22,16 @@ class replica_bitline_test(openram_test):
|
||||||
import replica_bitline
|
import replica_bitline
|
||||||
|
|
||||||
stages=4
|
stages=4
|
||||||
|
fanout=4
|
||||||
rows=13
|
rows=13
|
||||||
debug.info(2, "Testing RBL with {0} FO4 stages, {1} rows".format(stages,rows))
|
debug.info(2, "Testing RBL with {0} FO4 stages, {1} rows".format(stages,rows))
|
||||||
a = replica_bitline.replica_bitline(stages,rows)
|
a = replica_bitline.replica_bitline(stages,fanout,rows)
|
||||||
self.local_check(a)
|
self.local_check(a)
|
||||||
|
|
||||||
stages=8
|
stages=8
|
||||||
rows=100
|
rows=100
|
||||||
debug.info(2, "Testing RBL with {0} FO4 stages, {1} rows".format(stages,rows))
|
debug.info(2, "Testing RBL with {0} FO4 stages, {1} rows".format(stages,rows))
|
||||||
a = replica_bitline.replica_bitline(stages,rows)
|
a = replica_bitline.replica_bitline(stages,fanout,rows)
|
||||||
self.local_check(a)
|
self.local_check(a)
|
||||||
|
|
||||||
OPTS.check_lvsdrc = True
|
OPTS.check_lvsdrc = True
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue