
* fix.. speed_limit error... * draw tpms settings. * fix.. traffic light stopping only.. * fix.. waze cam * fix.. waze... * add setting (Enable comma connect ) * auto detect LFA2 * fix.. cruisespeed1 * vff2 driving model. * fix.. * agnos 12.3 * fix.. * ff * ff * test * ff * fix.. drawTurnInfo.. * Update drive_helpers.py * fix.. support eng voice eng sounds fix settings... english fix.. mph.. fix.. roadlimit speed bug.. * new vff model.. 250608 * fix soundd.. * fix safe exit speed.. * fix.. sounds. * fix.. radar timeStep.. * KerryGold model * Update drive_helpers.py * fix.. model. * fix.. * fix.. * Revert "fix.." This reverts commit b09ec459afb855c533d47fd7e8a1a6b1a09466e7. * Revert "fix.." This reverts commit 290bec6b83a4554ca232d531a911edccf94a2156. * fix esim * add more acc table. 10kph * kg update.. * fix cruisebutton mode3 * test atc..cond. * fix.. canfd * fix.. angle control limit
114 lines
3.6 KiB
Python
114 lines
3.6 KiB
Python
#!/usr/bin/env python
|
|
import gc, inspect
|
|
import unittest
|
|
import numpy as np
|
|
from tinygrad.device import Buffer
|
|
from tinygrad.engine.realize import run_schedule
|
|
from tinygrad.uop.ops import UOp
|
|
from tinygrad.tensor import Tensor
|
|
|
|
def tensors_allocated():
|
|
gc.collect()
|
|
return sum([isinstance(x, Tensor) for x in gc.get_objects()])
|
|
|
|
def bufs_allocated():
|
|
gc.collect()
|
|
return sum([isinstance(x, Buffer) for x in gc.get_objects()])
|
|
|
|
class TestGC(unittest.TestCase):
|
|
|
|
def test_gc(self):
|
|
Tensor.manual_seed(0)
|
|
base = tensors_allocated()
|
|
a = Tensor.rand(4, 4, requires_grad=True)
|
|
b = Tensor.zeros(4, 4, requires_grad=True)
|
|
(a*b).mean().backward()
|
|
assert (tensors_allocated()-base > 0)
|
|
del a,b
|
|
assert (tensors_allocated()-base == 2) # one for Tensor._device_rng_counters, and one for Tensor._device_seeds
|
|
Tensor.manual_seed(0)
|
|
|
|
def test_gc_complex(self):
|
|
Tensor.manual_seed(0)
|
|
base = tensors_allocated()
|
|
a = Tensor(np.zeros((4, 4), dtype=np.float32), requires_grad=True)
|
|
b = Tensor.rand(4, 4, requires_grad=True)
|
|
assert (tensors_allocated()-base == 4)
|
|
(a*b).mean().backward()
|
|
assert (tensors_allocated()-base == 6)
|
|
del b
|
|
assert (tensors_allocated()-base == 4)
|
|
b = Tensor(np.zeros((4, 4), dtype=np.float32), requires_grad=True)
|
|
print(tensors_allocated())
|
|
(a*b).mean().backward()
|
|
print(tensors_allocated())
|
|
assert (tensors_allocated()-base == 6)
|
|
del b
|
|
assert (tensors_allocated()-base == 4)
|
|
Tensor.manual_seed(0)
|
|
|
|
def test_schedule_gc(self):
|
|
init = bufs_allocated()
|
|
x = Tensor.ones(256).contiguous().realize()
|
|
y = Tensor.ones(5, 5).contiguous()
|
|
y.schedule()
|
|
del x
|
|
del y
|
|
self.assertEqual(bufs_allocated()-init, 0)
|
|
|
|
def test_schedule_gc_with_inputs(self):
|
|
init = bufs_allocated()
|
|
x = Tensor.ones(256).contiguous().realize()
|
|
y = x+Tensor.ones(256).contiguous()
|
|
ys = y.schedule()
|
|
del x
|
|
run_schedule(ys)
|
|
np.testing.assert_equal(y.numpy(), np.full((256,), 2))
|
|
self.assertEqual(bufs_allocated()-init, 1)
|
|
del y
|
|
self.assertEqual(bufs_allocated()-init, 0)
|
|
|
|
def test_toposort_blocks_gc(self):
|
|
init = bufs_allocated()
|
|
x = Tensor.ones(4,4).contiguous().realize()+1
|
|
self.assertEqual(bufs_allocated()-init, 1)
|
|
# try commenting this part out, it's green!
|
|
x.lazydata.toposort()
|
|
del x
|
|
if bufs_allocated()-init != 0:
|
|
print(inspect.getclosurevars(UOp.toposort().fget))
|
|
raise AssertionError(f"never gced {[x for x in gc.get_objects() if isinstance(x, Buffer)]}")
|
|
|
|
def test_buffer_refcount(self):
|
|
init = bufs_allocated()
|
|
a = Tensor.empty(10)
|
|
self.assertEqual(bufs_allocated()-init, 0)
|
|
a.realize()
|
|
real_buf = a.lazydata.buffer
|
|
# after the Tensor UOp is deleted there shouldn't be any references on the Buffer
|
|
self.assertEqual(real_buf.lb_refcount, 1)
|
|
self.assertEqual(bufs_allocated()-init, 1)
|
|
del a.lazydata
|
|
self.assertEqual(real_buf.lb_refcount, 0)
|
|
self.assertEqual(bufs_allocated()-init, 1) # keep the buffer alive
|
|
del real_buf
|
|
self.assertEqual(bufs_allocated()-init, 0)
|
|
|
|
def test_assign_refcount(self):
|
|
init = bufs_allocated()
|
|
a = Tensor.full((4,), 1.).contiguous()
|
|
a.realize()
|
|
real_buf = a.lazydata.buffer
|
|
self.assertEqual(real_buf.lb_refcount, 1)
|
|
a.assign(Tensor.full((4,), 2.))
|
|
self.assertIs(a.lazydata.src[0].buffer, real_buf)
|
|
# NOTE: this is still 1, we don't count the ASSIGN
|
|
self.assertEqual(real_buf.lb_refcount, 1)
|
|
a.realize()
|
|
del a
|
|
self.assertEqual(real_buf.lb_refcount, 0) # no UOps for this Buffer
|
|
self.assertEqual(bufs_allocated()-init, 1) # Buffer is alive
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|