Little steps in realmath test bench
authorClifford Wolf <clifford@clifford.at>
Sat, 21 Jun 2014 19:43:04 +0000 (21:43 +0200)
committerClifford Wolf <clifford@clifford.at>
Sat, 21 Jun 2014 19:43:04 +0000 (21:43 +0200)
tests/realmath/generate.py
tests/simple/realexpr.v

index 53015381e721377b60f07ec2f4f4f9de61ab2d49..972021dc8a430b763b85cc39fd9993ab081727c2 100644 (file)
@@ -43,12 +43,12 @@ for idx in range(100):
     with file('temp/uut_%05d.v' % idx, 'w') as f, redirect_stdout(f):
         print('module uut_%05d(output [63:0] %s);\n' % (idx, ', '.join(['y%02d' % i for i in range(100)])))
         for i in range(30):
-            if idx < 10 or True:
+            if idx < 10:
                 print('localparam p%02d = %s;' % (i, random_expression()))
             else:
                 print('localparam%s p%02d = %s;' % (random.choice(['', ' real', ' integer']), i, random_expression()))
         for i in range(30, 60):
-            if idx < 10 or True:
+            if idx < 10:
                 print('localparam p%02d = %s;' % (i, random_expression(maxparam = 30)))
             else:
                 print('localparam%s p%02d = %s;' % (random.choice(['', ' real', ' integer']), i, random_expression(maxparam = 30)))
index 35166110342e3609affdbc52ff48a1493dd7245a..2adffe2dd2f09771c161769d6730d26ba5d7450b 100644 (file)
@@ -13,3 +13,9 @@ module demo_001(y1, y2, y3, y4);
        assign y4 = p4 + 0.2;
 endmodule
 
+module demo_002(y1);
+       output [3:0] y1;
+
+       assign y1 = 1'bx >= (-1 * -1.17);
+endmodule
+