Skip to content

Commit 233e7b1

Browse files
committed
new example for different fixed point positions.
1 parent a198dc7 commit 233e7b1

File tree

3 files changed

+195
-0
lines changed

3 files changed

+195
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
TARGET=$(shell ls *.py | grep -v test | grep -v parsetab.py)
2+
ARGS=
3+
4+
PYTHON=python3
5+
#PYTHON=python
6+
#OPT=-m pdb
7+
#OPT=-m cProfile -s time
8+
#OPT=-m cProfile -o profile.rslt
9+
10+
.PHONY: all
11+
all: test
12+
13+
.PHONY: run
14+
run:
15+
$(PYTHON) $(OPT) $(TARGET) $(ARGS)
16+
17+
.PHONY: test
18+
test:
19+
$(PYTHON) -m pytest -vv
20+
21+
.PHONY: check
22+
check:
23+
$(PYTHON) $(OPT) $(TARGET) $(ARGS) > tmp.v
24+
iverilog -tnull -Wall tmp.v
25+
rm -f tmp.v
26+
27+
.PHONY: clean
28+
clean:
29+
rm -rf *.pyc __pycache__ parsetab.py .cache *.out *.png *.dot tmp.v uut.vcd
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
from __future__ import absolute_import
2+
from __future__ import print_function
3+
4+
import os
5+
import veriloggen
6+
import thread_stream_fixed_different_point
7+
8+
9+
def test(request):
10+
veriloggen.reset()
11+
12+
simtype = request.config.getoption('--sim')
13+
14+
rslt = thread_stream_fixed_different_point.run(filename=None, simtype=simtype,
15+
outputfile=os.path.splitext(os.path.basename(__file__))[0] + '.out')
16+
17+
verify_rslt = rslt.splitlines()[-1]
18+
assert(verify_rslt == '# verify: PASSED')
Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
from __future__ import absolute_import
2+
from __future__ import print_function
3+
import sys
4+
import os
5+
6+
# the next line can be removed after installation
7+
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(
8+
os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))))
9+
10+
from veriloggen import *
11+
import veriloggen.thread as vthread
12+
import veriloggen.types.axi as axi
13+
14+
15+
def mkLed():
16+
m = Module('blinkled')
17+
clk = m.Input('CLK')
18+
rst = m.Input('RST')
19+
20+
datawidth = 32
21+
addrwidth = 10
22+
point = 4
23+
myaxi = vthread.AXIM(m, 'myaxi', clk, rst, datawidth)
24+
ram_a = vthread.FixedRAM(m, 'ram_a', clk, rst, datawidth, addrwidth,
25+
point=point)
26+
ram_b = vthread.FixedRAM(m, 'ram_b', clk, rst, datawidth, addrwidth,
27+
point=-point)
28+
ram_c = vthread.FixedRAM(m, 'ram_c', clk, rst, datawidth, addrwidth,
29+
point=point)
30+
31+
strm = vthread.Stream(m, 'mystream', clk, rst, dump=True)
32+
a = strm.source('a', point=point)
33+
b = strm.source('b', point=-point)
34+
const = strm.constant('const', point=point)
35+
c = a * b + const
36+
strm.sink(c, 'c')
37+
38+
def comp_stream(size, offset):
39+
strm.set_source('a', ram_a, offset, size)
40+
strm.set_source('b', ram_b, offset, size)
41+
strm.set_sink('c', ram_c, offset, size)
42+
const = vthread.fixed.FixedConst(10, point=point)
43+
strm.set_constant('const', const)
44+
strm.run()
45+
strm.join()
46+
47+
def comp_sequential(size, offset):
48+
for i in range(size):
49+
a = ram_a.read(i + offset)
50+
b = ram_b.read(i + offset)
51+
const = vthread.fixed.FixedConst(10, point=point)
52+
c = a * b + const
53+
ram_c.write(i + offset, c)
54+
print('a = %10g, b = %10g, const = %10g, c = %10g' % (a, b, const, c))
55+
56+
def check(size, offset_stream, offset_seq):
57+
all_ok = True
58+
for i in range(size):
59+
st = ram_c.read(i + offset_stream)
60+
sq = ram_c.read(i + offset_seq)
61+
if vthread.verilog.NotEql(st, sq):
62+
all_ok = False
63+
if all_ok:
64+
print('# verify: PASSED')
65+
else:
66+
print('# verify: FAILED')
67+
68+
def comp(size):
69+
# stream
70+
offset = 0
71+
myaxi.dma_read(ram_a, offset, 0, size)
72+
myaxi.dma_read(ram_b, offset, 512, size)
73+
comp_stream(size, offset)
74+
myaxi.dma_write(ram_c, offset, 1024, size)
75+
76+
# sequential
77+
offset = size
78+
myaxi.dma_read(ram_a, offset, 0, size)
79+
myaxi.dma_read(ram_b, offset, 512, size)
80+
comp_sequential(size, offset)
81+
myaxi.dma_write(ram_c, offset, 1024 * 2, size)
82+
83+
# verification
84+
check(size, 0, offset)
85+
86+
vthread.finish()
87+
88+
th = vthread.Thread(m, 'th_comp', clk, rst, comp)
89+
fsm = th.start(32)
90+
91+
return m
92+
93+
94+
def mkTest(memimg_name=None):
95+
m = Module('test')
96+
97+
# target instance
98+
led = mkLed()
99+
100+
# copy paras and ports
101+
params = m.copy_params(led)
102+
ports = m.copy_sim_ports(led)
103+
104+
clk = ports['CLK']
105+
rst = ports['RST']
106+
107+
memory = axi.AxiMemoryModel(m, 'memory', clk, rst, memimg_name=memimg_name)
108+
memory.connect(ports, 'myaxi')
109+
110+
uut = m.Instance(led, 'uut',
111+
params=m.connect_params(led),
112+
ports=m.connect_ports(led))
113+
114+
#simulation.setup_waveform(m, uut)
115+
simulation.setup_clock(m, clk, hperiod=5)
116+
init = simulation.setup_reset(m, rst, m.make_reset(), period=100)
117+
118+
init.add(
119+
Delay(1000000),
120+
Systask('finish'),
121+
)
122+
123+
return m
124+
125+
126+
def run(filename='tmp.v', simtype='iverilog', outputfile=None):
127+
128+
if outputfile is None:
129+
outputfile = os.path.splitext(os.path.basename(__file__))[0] + '.out'
130+
131+
memimg_name = 'memimg_' + outputfile
132+
133+
test = mkTest(memimg_name=memimg_name)
134+
135+
if filename is not None:
136+
test.to_verilog(filename)
137+
138+
sim = simulation.Simulator(test, sim=simtype)
139+
rslt = sim.run(outputfile=outputfile)
140+
lines = rslt.splitlines()
141+
if simtype == 'verilator' and lines[-1].startswith('-'):
142+
rslt = '\n'.join(lines[:-1])
143+
return rslt
144+
145+
146+
if __name__ == '__main__':
147+
rslt = run(filename='tmp.v')
148+
print(rslt)

0 commit comments

Comments
 (0)