mirror of https://github.com/commaai/tinygrad.git
18 lines
558 B
Python
18 lines
558 B
Python
import unittest
|
|
from tinygrad import Tensor
|
|
from tinygrad.engine.realize import lower_schedule
|
|
|
|
class TestCompileFailures(unittest.TestCase):
|
|
def compile(self, out:Tensor):
|
|
for _ in lower_schedule(out.schedule()): pass
|
|
|
|
def test_interpolate_atari(self):
|
|
self.compile(Tensor.empty(210, 160, dtype='uint8').interpolate((64, 64)))
|
|
|
|
@unittest.skip("FIXME: broken on METAL")
|
|
def test_add_max_uchar(self):
|
|
self.compile((Tensor.empty(1024, dtype='uint8') + Tensor.empty(1024, dtype='uint8')).max())
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|