(self)
| 29 | self.assertListEqual(out.tolist(), [5, 7, 9]) |
| 30 | |
| 31 | def test_plus_big(self): |
| 32 | out = Tensor.ones(16).contiguous() + Tensor.ones(16).contiguous() |
| 33 | self.assertListEqual(out.tolist(), [2]*16) |
| 34 | |
| 35 | def test_cat(self): |
| 36 | out = Tensor.cat(Tensor.ones(8).contiguous(), Tensor.zeros(8).contiguous()) |
nothing calls this directly
no test coverage detected