From 88470283c995860c593bae03373a0b26408b0e94 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Mon, 16 Jun 2014 15:21:08 +0200 Subject: Little steps in realmath test bench --- tests/realmath/.gitignore | 1 + tests/realmath/generate.py | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 tests/realmath/.gitignore (limited to 'tests/realmath') diff --git a/tests/realmath/.gitignore b/tests/realmath/.gitignore new file mode 100644 index 00000000..9c595a6f --- /dev/null +++ b/tests/realmath/.gitignore @@ -0,0 +1 @@ +temp diff --git a/tests/realmath/generate.py b/tests/realmath/generate.py index 58cedf02..9e48755c 100644 --- a/tests/realmath/generate.py +++ b/tests/realmath/generate.py @@ -44,8 +44,10 @@ for idx in range(100): print('module uut_%05d(output [63:0] %s);\n' % (idx, ', '.join(['y%02d' % i for i in range(100)]))) for i in range(30): print('localparam p%02d = %s;' % (i, random_expression())) + # print('localparam%s p%02d = %s;' % (random.choice(['', ' real', ' integer']), i, random_expression())) for i in range(30, 60): print('localparam p%02d = %s;' % (i, random_expression(maxparam = 30))) + # print('localparam%s p%02d = %s;' % (random.choice(['', ' real', ' integer']), i, random_expression(maxparam = 30))) for i in range(100): print('assign y%02d = 65536 * (%s);' % (i, random_expression(maxparam = 60))) print('endmodule') -- cgit v1.2.3