(self)
| 101 | |
| 102 | class TestContiguous(unittest.TestCase): |
| 103 | def test_contiguous_buffer(self): |
| 104 | a = Tensor.empty(4) |
| 105 | b = a.contiguous() |
| 106 | check_schedule(b, 0) |
| 107 | |
| 108 | def test_contiguous_buffer_view(self): |
| 109 | a = Tensor.empty(4) |
nothing calls this directly
no test coverage detected