changed file() to open() in python scripts
authorClifford Wolf <clifford@clifford.at>
Mon, 11 May 2015 19:46:35 +0000 (21:46 +0200)
committerClifford Wolf <clifford@clifford.at>
Mon, 11 May 2015 19:58:21 +0000 (21:58 +0200)
tests/bram/generate.py
tests/fsm/generate.py
tests/realmath/generate.py
tests/share/generate.py

index 2adfdcfb08850d2c6db2186754f749dc4fb711ba..766157eb3a913490eb2f5ba0426084a6b78a1eb5 100644 (file)
@@ -250,10 +250,10 @@ print("Rng seed: %d" % seed)
 random.seed(seed)
 
 for k1 in range(5):
-    dsc_f = file("temp/brams_%02d.txt" % k1, "w")
-    sim_f = file("temp/brams_%02d.v" % k1, "w")
-    ref_f = file("temp/brams_%02d_ref.v" % k1, "w")
-    tb_f = file("temp/brams_%02d_tb.v" % k1, "w")
+    dsc_f = open("temp/brams_%02d.txt" % k1, "w")
+    sim_f = open("temp/brams_%02d.v" % k1, "w")
+    ref_f = open("temp/brams_%02d_ref.v" % k1, "w")
+    tb_f = open("temp/brams_%02d_tb.v" % k1, "w")
 
     for f in [sim_f, ref_f, tb_f]:
         print("`timescale 1 ns / 1 ns", file=f)
index fc67543f2751032bf9414932cb3213762f96b2f1..352eedb0965a5ac85bacdb8e0e6abe213441122e 100644 (file)
@@ -34,7 +34,7 @@ def random_expr(variables):
     raise AssertionError
 
 for idx in range(50):
-    with file('temp/uut_%05d.v' % idx, 'w') as f:
+    with open('temp/uut_%05d.v' % idx, 'w') as f:
         with redirect_stdout(f):
             rst2 = random.choice([False, True])
             if rst2:
@@ -90,7 +90,7 @@ for idx in range(50):
             print('    end')
             print('  end')
             print('endmodule')
-    with file('temp/uut_%05d.ys' % idx, 'w') as f:
+    with open('temp/uut_%05d.ys' % idx, 'w') as f:
         with redirect_stdout(f):
             if test_verific:
                 print('read_verilog temp/uut_%05d.v' % idx)
index 24d13561a509c17450a34eaa48e25c2a91a7814f..16f68f0528ddb9253f87cdc40034367c2700e7cf 100644 (file)
@@ -40,7 +40,7 @@ def random_expression(depth = 3, maxparam = 0):
     raise
 
 for idx in range(100): 
-    with file('temp/uut_%05d.v' % idx, 'w') as f:
+    with open('temp/uut_%05d.v' % idx, 'w') as f:
         with 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):
@@ -56,12 +56,12 @@ for idx in range(100):
             for i in range(100):
                 print('assign y%02d = 65536 * (%s);' % (i, random_expression(maxparam = 60)))
             print('endmodule')
-    with file('temp/uut_%05d.ys' % idx, 'w') as f:
+    with open('temp/uut_%05d.ys' % idx, 'w') as f:
         with redirect_stdout(f):
             print('read_verilog uut_%05d.v' % idx)
             print('rename uut_%05d uut_%05d_syn' % (idx, idx))
             print('write_verilog uut_%05d_syn.v' % idx)
-    with file('temp/uut_%05d_tb.v' % idx, 'w') as f:
+    with open('temp/uut_%05d_tb.v' % idx, 'w') as f:
         with redirect_stdout(f):
             print('module uut_%05d_tb;\n' % idx)
             print('wire [63:0] %s;' % (', '.join(['r%02d' % i for i in range(100)])))
index bb96fec6128c2651e8709d79a286d8f18e1df502..7f8a59513b0836b1d59d9617211ed61314fc449a 100644 (file)
@@ -25,7 +25,7 @@ def maybe_plus_x(expr):
         return expr
 
 for idx in range(100):
-    with file('temp/uut_%05d.v' % idx, 'w') as f:
+    with open('temp/uut_%05d.v' % idx, 'w') as f:
         with redirect_stdout(f):
             if random.choice(['bin', 'uni']) == 'bin':
                 print('module uut_%05d(a, b, c, d, x, s, y);' % (idx))
@@ -60,7 +60,7 @@ for idx in range(100):
                          random.choice(['', '$signed', '$unsigned']), op, maybe_plus_x('b'),
                          random_plus_x() if random.randint(0, 4) == 0 else ''))
                 print('endmodule')
-    with file('temp/uut_%05d.ys' % idx, 'w') as f:
+    with open('temp/uut_%05d.ys' % idx, 'w') as f:
         with redirect_stdout(f):
             print('read_verilog temp/uut_%05d.v' % idx)
             print('proc;;')