-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_arithmetic.py
315 lines (232 loc) · 9.57 KB
/
test_arithmetic.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
import arithmetic
import gates
import utils
NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST = 1_024
def test_halfadder():
assert arithmetic.HALFADDER(False, False) == (False, False)
assert arithmetic.HALFADDER(False, True) == (True, False)
assert arithmetic.HALFADDER(True, False) == (True, False)
assert arithmetic.HALFADDER(True, True) == (False, True)
def test_fulladder():
assert arithmetic.FULLADDER(False, False, False) == (False, False)
assert arithmetic.FULLADDER(False, False, True) == (True, False)
assert arithmetic.FULLADDER(False, True, False) == (True, False)
assert arithmetic.FULLADDER(False, True, True) == (False, True)
assert arithmetic.FULLADDER(True, False, False) == (True, False)
assert arithmetic.FULLADDER(True, False, True) == (False, True)
assert arithmetic.FULLADDER(True, True, False) == (False, True)
assert arithmetic.FULLADDER(True, True, True) == (True, True)
def test_add16():
assert arithmetic.ADD16((False,) * 16, (False,) * 16) == (False,) * 16
assert arithmetic.ADD16((False,) * 16, (True,) * 16) == (True,) * 16
assert arithmetic.ADD16((True,) * 16, (False,) * 16) == (True,) * 16
assert arithmetic.ADD16((True,) * 16, (False,) * 15 + (True,)) == (False,) * 16
def test_inc16():
assert arithmetic.INC16((False,) * 16) == (False,) * 15 + (True,)
assert arithmetic.INC16((True,) * 16) == (False,) * 16
assert arithmetic.INC16((True,) + (False,) * 15) == (True,) + (False,) * 14 + (
True,
)
def test_neg16():
assert arithmetic.NEG16((False,) * 16) == (False,) * 16
assert arithmetic.NEG16((True,) * 16) == (False,) * 15 + (True,)
def test_alu_f_of_x_and_y_equals_zero():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = 0
out, zr, ng = arithmetic.ALU(
xs, ys, zx=True, nx=False, zy=True, ny=False, f=True, no=False
)
assert out == (False,) * 16
assert zr == True
assert ng == False
def test_alu_f_of_x_and_y_equals_one():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = 1
out, zr, ng = arithmetic.ALU(
xs, ys, zx=True, nx=True, zy=True, ny=True, f=True, no=True
)
assert out == (False,) * 15 + (True,)
assert zr == False
assert ng == False
def test_alu_f_of_x_and_y_equals_negative_one():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = -1
out, zr, ng = arithmetic.ALU(
xs, ys, zx=True, nx=True, zy=True, ny=False, f=True, no=False
)
assert out == (True,) * 16
assert zr == False
assert ng == True
def test_alu_f_of_x_and_y_equals_x():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = x
out, zr, ng = arithmetic.ALU(
xs, ys, zx=False, nx=False, zy=True, ny=True, f=False, no=False
)
assert out == xs
assert zr == all(o == False for o in out)
assert ng == (xs[0] == True)
def test_alu_f_of_x_and_y_equals_y():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = y
out, zr, ng = arithmetic.ALU(
xs, ys, zx=True, nx=True, zy=False, ny=False, f=False, no=False
)
assert out == ys
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_not_x():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = !x
out, zr, ng = arithmetic.ALU(
xs, ys, zx=False, nx=False, zy=True, ny=True, f=False, no=True
)
assert out == gates.NOT16(xs)
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_not_y():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = !y
out, zr, ng = arithmetic.ALU(
xs, ys, zx=True, nx=True, zy=False, ny=False, f=False, no=True
)
assert out == gates.NOT16(ys)
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_negative_x():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = -x
out, zr, ng = arithmetic.ALU(
xs, ys, zx=False, nx=False, zy=True, ny=True, f=True, no=True
)
assert out == arithmetic.INC16(gates.NOT16(xs))
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_negative_y():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = -y
out, zr, ng = arithmetic.ALU(
xs, ys, zx=True, nx=True, zy=False, ny=False, f=True, no=True
)
assert out == arithmetic.INC16(gates.NOT16(ys))
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_x_plus_one():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = x + 1
out, zr, ng = arithmetic.ALU(
xs, ys, zx=False, nx=True, zy=True, ny=True, f=True, no=True
)
assert out == arithmetic.INC16(xs)
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_y_plus_one():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = y + 1
out, zr, ng = arithmetic.ALU(
xs, ys, zx=True, nx=True, zy=False, ny=True, f=True, no=True
)
assert out == arithmetic.INC16(ys)
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_x_minus_one():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = x - 1
minus_one = (True,) * 16
out, zr, ng = arithmetic.ALU(
xs, ys, zx=False, nx=False, zy=True, ny=True, f=True, no=False
)
assert out == arithmetic.ADD16(xs, minus_one)
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_y_minus_one():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = y - 1
minus_one = (True,) * 16
out, zr, ng = arithmetic.ALU(
xs, ys, zx=True, nx=True, zy=False, ny=False, f=True, no=False
)
assert out == arithmetic.ADD16(ys, minus_one)
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_x_plus_y():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = x + y
out, zr, ng = arithmetic.ALU(
xs, ys, zx=False, nx=False, zy=False, ny=False, f=True, no=False
)
assert out == arithmetic.ADD16(xs, ys)
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_x_minus_y():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = x - y
out, zr, ng = arithmetic.ALU(
xs, ys, zx=False, nx=True, zy=False, ny=False, f=True, no=True
)
assert out == arithmetic.ADD16(xs, arithmetic.NEG16(ys))
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_y_minus_x():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = y - x
out, zr, ng = arithmetic.ALU(
xs, ys, zx=False, nx=False, zy=False, ny=True, f=True, no=True
)
assert out == arithmetic.ADD16(arithmetic.NEG16(xs), ys)
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_x_and_y():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = x & y
out, zr, ng = arithmetic.ALU(
xs, ys, zx=False, nx=False, zy=False, ny=False, f=False, no=False
)
assert out == gates.AND16(xs, ys)
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)
def test_alu_f_of_x_and_y_equals_x_or_y():
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST):
xs = utils.sample_bits(16)
ys = utils.sample_bits(16)
# f(x, y) = x | y
out, zr, ng = arithmetic.ALU(
xs, ys, zx=False, nx=True, zy=False, ny=True, f=False, no=True
)
assert out == gates.OR16(xs, ys)
assert zr == all(o == False for o in out)
assert ng == (out[0] == True)