-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
575 lines (387 loc) · 16.6 KB
/
test.py
File metadata and controls
575 lines (387 loc) · 16.6 KB
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
import unittest
import numpy as np
import torch
import torch.nn.functional as F
from engine import Tensor
SHAPE = (4, 8)
class TestOp(unittest.TestCase):
def test_add(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*SHAPE))
out = a + b
a = torch.from_numpy(a.data)
b = torch.from_numpy(b.data)
out_torch = a + b
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_sub(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*SHAPE))
out = a - b
a = torch.from_numpy(a.data)
b = torch.from_numpy(b.data)
out_torch = a - b
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_mul(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*SHAPE))
out = a * b
a = torch.from_numpy(a.data)
b = torch.from_numpy(b.data)
out_torch = a * b
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_div(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*SHAPE))
out = a / b
a = torch.from_numpy(a.data)
b = torch.from_numpy(b.data)
out_torch = a / b
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_pow(self):
a = Tensor(np.random.rand(*SHAPE))
b = np.random.rand()
out = a**b
a = torch.from_numpy(a.data)
b = b
out_torch = a**b
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_getitem(self):
a = Tensor(np.random.rand(*SHAPE))
out = a[:, 3]
a = torch.from_numpy(a.data)
out_torch = a[:, 3]
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_matmul(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = a @ b
a = torch.from_numpy(a.data)
b = torch.from_numpy(b.data)
out_torch = a @ b
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_transpose(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*SHAPE))
out = a @ b.T
a = torch.from_numpy(a.data)
b = torch.from_numpy(b.data)
out_torch = a @ b.T
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_stack(self):
a = [Tensor(np.random.rand(*SHAPE)) for _ in range(10)]
out = Tensor.stack(a, 1)
a = [torch.from_numpy(aa.data) for aa in a]
out_torch = torch.stack(a, 1)
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_conv2d(self):
x = Tensor(np.random.rand(32, 6, 128, 128))
f = Tensor(np.random.rand(8, 6, 3, 3))
out = x.convolve2d(f, pad=((1, 1), (1, 1)))
x = torch.from_numpy(x.data)
f = torch.from_numpy(f.data)
out_torch = F.conv2d(x, f, padding=1)
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_avg_poll(self):
x = Tensor(np.random.rand(32, 6, 128, 128))
f = Tensor(np.random.rand(8, 6, 3, 3))
out = x.convolve2d(f).avg_pooling((2, 2))
x = torch.from_numpy(x.data)
f = torch.from_numpy(f.data)
out_torch = F.avg_pool2d(F.conv2d(x, f), (2, 2))
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_reduce_sum(self):
a = Tensor(np.random.rand(*SHAPE))
out = a.sum()
a = torch.from_numpy(a.data)
out_torch = a.sum()
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_sum_axis(self):
a = Tensor(np.random.rand(*SHAPE))
out = a.sum(-1)
a = torch.from_numpy(a.data)
out_torch = a.sum(-1)
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_reshape(self):
a = Tensor(np.random.rand(*SHAPE))
out = a.reshape(tuple(reversed(SHAPE)))
a = torch.from_numpy(a.data)
out_torch = a.reshape(tuple(reversed(SHAPE)))
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_tanh(self):
a = Tensor(np.random.rand(*SHAPE))
out = a.tanh()
a = torch.from_numpy(a.data)
out_torch = a.tanh()
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_relu(self):
a = Tensor(np.random.rand(*SHAPE))
out = a.relu()
a = torch.from_numpy(a.data)
out_torch = a.relu()
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_exp(self):
a = Tensor(np.random.rand(*SHAPE))
out = a.exp()
a = torch.from_numpy(a.data)
out_torch = a.exp()
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_log(self):
a = Tensor(np.random.rand(*SHAPE))
out = a.log()
a = torch.from_numpy(a.data)
out_torch = a.log()
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_sigmoid(self):
a = Tensor(np.random.rand(*SHAPE))
out = a.sigmoid()
a = torch.from_numpy(a.data)
out_torch = a.sigmoid()
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
def test_softmax(self):
a = Tensor(np.random.rand(*SHAPE))
out = a.softmax(-1)
a = torch.from_numpy(a.data)
out_torch = a.softmax(-1)
self.assertTrue(np.allclose(out.data, out_torch.numpy()))
class TestGrad(unittest.TestCase):
def test_add(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*SHAPE))
out = a + b
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = a_torch + b_torch
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_sub(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*SHAPE))
out = a - b
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = a_torch - b_torch
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_mul(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*SHAPE))
out = a * b
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = a_torch * b_torch
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_div(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*SHAPE))
out = a / b
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = a_torch / b_torch
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_pow(self):
a = Tensor(np.random.rand(*SHAPE))
b = np.random.rand()
out = a**b
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = b
out_torch = a_torch**b_torch
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()))
def test_getitem(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = (a @ b)[:, 3]
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = (a_torch @ b_torch)[:, 3]
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_matmul(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = a @ b
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = a_torch @ b_torch
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_transpose(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*SHAPE))
out = a @ b.T
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = a_torch @ b_torch.T
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_stack(self):
a = [Tensor(np.random.rand(*SHAPE)) for _ in range(10)]
b = [Tensor(np.random.rand(*reversed(SHAPE))) for _ in range(10)]
out = Tensor.stack([aa @ bb for aa, bb in zip(a, b)] , 1)
out.backward()
a_torch = [torch.tensor(aa.data, requires_grad=True) for aa in a]
b_torch = [torch.tensor(bb.data, requires_grad=True) for bb in b]
out_torch = torch.stack([aa @ bb for aa, bb in zip(a_torch, b_torch)], 1)
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(all(np.allclose(a[i].grad, a_torch[i].grad.numpy())) for i in range(10))
def test_conv2d(self):
x = Tensor(np.random.rand(32, 6, 128, 128))
f = Tensor(np.random.rand(8, 6, 3, 3))
out = x.convolve2d(f)
out.backward()
x_torch = torch.from_numpy(x.data)
x_torch.requires_grad = True
f_torch = torch.from_numpy(f.data)
f_torch.requires_grad = True
out_torch = F.conv2d(x_torch, f_torch, padding=0)
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(x.grad, x_torch.grad.numpy()) and np.allclose(f.grad, f_torch.grad.numpy()))
def test_avg_pool(self):
x = Tensor(np.random.rand(32, 6, 28, 28))
f = Tensor(np.random.rand(6, 6, 3, 3))
out = x.convolve2d(f).avg_pooling((2, 2)).convolve2d(f).avg_pooling((2, 2))
# out = x.convolve2d(f).avg_pooling((2, 2))
out.backward()
x_torch = torch.from_numpy(x.data)
x_torch.requires_grad = True
f_torch = torch.from_numpy(f.data)
f_torch.requires_grad = True
out_torch = F.avg_pool2d(F.conv2d(x_torch, f_torch), (2, 2))
out_torch = F.avg_pool2d(F.conv2d(out_torch, f_torch), (2, 2))
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(x.grad, x_torch.grad.numpy()) and np.allclose(f.grad, f_torch.grad.numpy()))
def test_reduce_sum(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = (a @ b).sum()
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = (a_torch @ b_torch).sum()
out_torch.backward()
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_sum_axis(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = (a @ b).sum(-1)
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = (a_torch @ b_torch).sum(-1)
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_reshape(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = (a @ b).reshape((SHAPE[0]//2, 2*SHAPE[0]))
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = (a_torch @ b_torch).reshape((SHAPE[0]//2, 2*SHAPE[0]))
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_tanh(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = (a @ b).tanh()
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = (a_torch @ b_torch).tanh()
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_relu(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = (a @ b).relu()
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = (a_torch @ b_torch).relu()
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_exp(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = (a @ b).exp()
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = (a_torch @ b_torch).exp()
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_log(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = (a @ b).log()
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = (a_torch @ b_torch).log()
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_sigmoid(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = (a @ b).sigmoid()
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = (a_torch @ b_torch).sigmoid()
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
def test_softmax(self):
a = Tensor(np.random.rand(*SHAPE))
b = Tensor(np.random.rand(*reversed(SHAPE)))
out = (a @ b).softmax(-1)
out.backward()
a_torch = torch.from_numpy(a.data)
a_torch.requires_grad = True
b_torch = torch.from_numpy(b.data)
b_torch.requires_grad = True
out_torch = (a_torch @ b_torch).softmax(-1)
out_torch.backward(gradient=torch.ones_like(out_torch))
self.assertTrue(np.allclose(a.grad, a_torch.grad.numpy()) and np.allclose(b.grad, b_torch.grad.numpy()))
if __name__ == '__main__':
unittest.main()