(self)
| 106 | check_schedule(b, 0) |
| 107 | |
| 108 | def test_contiguous_buffer_view(self): |
| 109 | a = Tensor.empty(4) |
| 110 | b = a.reshape((2, 2)).contiguous() |
| 111 | check_schedule(b, 0) |
| 112 | |
| 113 | def test_non_contiguous_buffer_view(self): |
| 114 | a = Tensor.empty(4, 1) |
nothing calls this directly
no test coverage detected