-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollatz.py
414 lines (361 loc) · 13.3 KB
/
collatz.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
#!/usr/local/bin/python3
from nmigen import *
from nmigen.cli import main
from nmigen.back import pysim, verilog
from nmigen_boards.icebreaker import ICEBreakerPlatform
# N X [cond] start rdy avail | next_N next_X || notes
# ----------------------------------+-----------------++---------------------------------
# ... | ||
# dc dc 1 A | || A: avail=0 after rst, and 1 after last computation
# dc dc 1 0 0 | || load ld_X into X and start computations (strobe)
# 1 ld_X (>0) dc 0 0 | ||
# ... | ||
# n >1 & even dc 0 0 | n+1 n / 2 || (shr via wires)
# n >1 & odd dc 0 0 | n+1 3n+1 || (== 2n+1+n == shl and set lsb, then add n)
# ... | ||
# n ==1 dc 1 1 | n n/a || N unchanged from here on, until next load strobe
# ...
# next load cycle
# TODO:
# - out of range error
# - for odd number, always need 2 more bits left (i.e. factor of 4), otherwise flag overflow
# - cycles exhausted error
# - mostly needed since the RAM to record the sequence is limited
# - improve effort
# - do not start even numbers (they will reduce to 1)
# - pre-compute the first couple of steps:
# a) odd number = 2n+1
# b) first precomputed step (odd): 3m+1 -> 3(2n+1)+1 = 6n+3+1 = 6n+4 = 2(3n+2) -> i.e. even
# c) 2nd precomputed step (even): 2(3n+2) -> 3n+2, which may be odd or even
# init step1 step2
# - e.g. 3 -> 9+10 = 10 -> 5 (odd)
# - 5 -> 15+1 = 16 -> 8 (even)
# - 11 -> 33+1 = 34 -> 17 (odd)
class Collatz(Elaboratable):
def __init__(self, xwidth, nwidth):
# interface, input
self.rdy = Signal()
self.done = Signal()
self.out = Signal(2*xwidth)
self.err_x = Signal() # overflow
self.err_n = Signal() # counter exhausted
# interface, input
self.ld_x = Signal(xwidth)
self.start = Signal()
# current state
self.x = Signal(2*xwidth)
self.n = Signal(nwidth)
# next state
self.next_x = Signal(2*xwidth)
self.next_n = Signal(nwidth)
# internal, helpers
self.mem = Memory(width=xwidth, depth=(1 << nwidth))
self.nmax = (1 << nwidth) - 1 # e.g. 4 bit -> nmax = 15
def elaborate(self, platform):
m = Module()
m.submodules.wrport = wrport = self.mem.write_port()
# load
with m.If(self.start):
m.d.sync += [
self.x.eq(self.ld_x),
self.n.eq(0),
self.err_x.eq(0),
self.err_n.eq(0)
]
# drive computation
with m.Else():
with m.If(self.x > 1):
m.d.sync += [
self.x.eq(self.next_x),
self.n.eq(self.next_n)
]
with m.Else():
m.d.comb += [
# output
self.out.eq(self.n),
]
m.d.comb += [
# record x in RAM (last entry to record 1 itself, optional?)
wrport.addr.eq(self.n),
wrport.data.eq(self.x),
wrport.en.eq(1)
]
# rdy, is 1 upon reset and after computations
with m.If( (self.x == 0) | (self.x == 1) ):
m.d.comb += [
self.rdy.eq(1) # true after reset and end of compute
]
with m.Else():
m.d.comb += [
self.rdy.eq(0)
]
# done, is not high after reset, but only after computation
# makes it easier to use 'done' as the .we signal to write into
# result memory (whereas using rdy would have lead to a stray
# initial write, _before_ the first computation)
with m.If(self.x == 1):
m.d.comb += [
self.done.eq(1) # not true after reset, only after compute
]
with m.Else():
m.d.comb += [
self.done.eq(0)
]
with m.If(self.n < self.nmax-1):
with m.If(self.x[0]):
# odd
# check for risk of overflow, self.x needs to be at least a
# factor of 4 below max(self.x.nbits, i.e. xwidth),
# i.e. most significant two bits of self.x not set!
with m.If( (self.x[self.x.width-1] == 0) & (self.x[self.x.width-2] == 0) ):
m.d.comb += [
# TODO: write this as <<1 (shr), set lsb, +self.x
self.next_x.eq( (3*self.x + 1) >> 1),
self.next_n.eq(self.n + 2)
]
with m.Else():
# overflow
m.d.comb += [
self.next_x.eq(1), # stop sequence, will lead to done!
]
m.d.sync += [
self.err_x.eq(1)
]
with m.Else():
# even
m.d.comb += [
self.next_x.eq(self.x >> 1), # shr as a way to "div2"
self.next_n.eq(self.n + 1)
]
with m.Else():
# sequence length exhausted
m.d.comb += [
self.next_x.eq(1), # stop sequence, will lead to done!
]
m.d.sync += [
self.err_n.eq(1)
]
return m
if __name__ == "__main__":
collatz = Collatz(32, 10)
print(verilog.convert(collatz, ports=[collatz.ld_x, collatz.start, collatz.rdy]))
#print(verilog.convert(collatz, ports=[]))
with pysim.Simulator(collatz,
vcd_file=open("collatz.vcd", "w"),
gtkw_file=open("collatz.gtkw", "w"),
traces=[collatz.ld_x, collatz.start, collatz.rdy]) as sim:
sim.add_clock(100e-9)
def collatz_proc():
# ---------
yield collatz.ld_x.eq(1)
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
print('%s %s %s' % (r,x,n))
assert (n) == (0)
# ---------
yield collatz.ld_x.eq(2)
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
print('%s %s %s' % (r,x,n))
assert (n) == (1)
# ---------
yield collatz.ld_x.eq(3)
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
print('%s %s %s' % (r,x,n))
assert (n) == (7)
yield collatz.ld_x.eq(5)
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
print('%s %s %s' % (r,x,n))
assert (n) == (5)
yield collatz.ld_x.eq(11)
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
print('%s %s %s' % (r,x,n))
assert (n) == (14)
yield collatz.ld_x.eq(27)
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
print('%s %s %s' % (r,x,n))
assert (n) == (111)
yield collatz.ld_x.eq(97)
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
print('%s %s %s' % (r,x,n))
assert (n) == (118)
yield collatz.ld_x.eq(871)
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
print('%s %s %s' % (r,x,n))
assert (n) == (178)
yield collatz.ld_x.eq(6171)
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
print('%s %s %s' % (r,x,n))
assert (n) == (261)
sim.add_sync_process(collatz_proc())
sim.run_until(100e-6, run_passive=True)
print('* Passed positive test cases.')
collatz = Collatz(32,6) # nwidth too small (6), expect err_n to be raised
with pysim.Simulator(collatz,
traces=[collatz.ld_x, collatz.start, collatz.rdy]) as sim:
sim.add_clock(100e-9)
def collatz_proc():
# ---------
yield collatz.ld_x.eq(6176) # sequence length is 261, need 9 bits, giving it only 6
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
err_n=yield collatz.err_n
print('%s %s %s %s' % (r,x,n,err_n))
assert (err_n) == (1)
sim.add_sync_process(collatz_proc())
sim.run_until(100e-6, run_passive=True)
print('* Passed err_n test.')
collatz = Collatz(13,10) # 13 bit xwidth too small (needs 14), expect err_x to be raised
with pysim.Simulator(collatz,
traces=[collatz.ld_x, collatz.start, collatz.rdy]) as sim:
sim.add_clock(100e-9)
def collatz_proc():
# ---------
yield collatz.ld_x.eq(27) # higest x in sequence would be 9232, needs 14 bits
yield collatz.start.eq(True)
yield
yield collatz.start.eq(False)
yield
r = yield collatz.rdy
cnt = 0
while not r == 1:
yield
r = yield collatz.rdy
cnt = cnt + 1
print('cycle counter = %d' % cnt)
r=yield collatz.rdy
x=yield collatz.x
n=yield collatz.n
err_x=yield collatz.err_x
print('%s %s %s %s' % (r,x,n,err_x))
assert (err_x) == (1)
sim.add_sync_process(collatz_proc())
sim.run_until(100e-6, run_passive=True)
print('* Passed err_x test.')