1
0
Fork 0
tinygrab/test/test_gc.py

37 lines
976 B
Python
Raw Normal View History

2020-12-06 11:34:40 -07:00
#!/usr/bin/env python
import gc
2020-12-06 11:34:40 -07:00
import unittest
from tinygrad.tensor import Tensor
2020-12-06 11:34:40 -07:00
def tensors_allocated():
2020-12-09 03:52:28 -07:00
return sum([isinstance(x, Tensor) for x in gc.get_objects()])
2020-12-06 11:34:40 -07:00
class TestGC(unittest.TestCase):
2020-12-06 11:34:40 -07:00
def test_gc(self):
a = Tensor.zeros(4, 4, requires_grad=True)
b = Tensor.zeros(4, 4, requires_grad=True)
2020-12-06 11:34:40 -07:00
(a*b).mean().backward()
assert(tensors_allocated() > 0)
2020-12-06 11:34:40 -07:00
del a,b
assert(tensors_allocated() == 0)
2020-12-06 11:34:40 -07:00
def test_gc_complex(self):
a = Tensor.zeros(4, 4, requires_grad=True)
b = Tensor.zeros(4, 4, requires_grad=True)
assert(tensors_allocated() == 2)
2020-12-06 11:34:40 -07:00
(a*b).mean().backward()
assert(tensors_allocated() == 4)
2020-12-06 11:34:40 -07:00
del b
assert(tensors_allocated() == 2)
b = Tensor.zeros(4, 4, requires_grad=True)
print(tensors_allocated())
2020-12-06 11:34:40 -07:00
(a*b).mean().backward()
print(tensors_allocated())
assert(tensors_allocated() == 4)
2020-12-06 11:34:40 -07:00
del b
assert(tensors_allocated() == 2)
2020-12-06 11:34:40 -07:00
if __name__ == '__main__':
unittest.main()