(self)
| 339 | assert len(ret) == 10000 |
| 340 | |
| 341 | def test_nested(self): |
| 342 | a = UOp.new_buffer(Device.DEFAULT, 1, dtypes.char) |
| 343 | for _ in range(10_000): a = a+a |
| 344 | self.assertEqual(a.device, Device.DEFAULT) |
| 345 | |
| 346 | class TestUOpRender(unittest.TestCase): |
| 347 | def test_render_vectorize_empty(self): |
nothing calls this directly
no test coverage detected