(self)
| 15 | self.assertEqual(out.item(), 5.0) |
| 16 | |
| 17 | def test_sum(self): |
| 18 | out = Tensor.ones(16).contiguous().sum() |
| 19 | out.callify() |
| 20 | self.assertEqual(out.item(), 16.0) |
| 21 | |
| 22 | def test_multi_output(self): |
| 23 | a = Tensor([1.,2,3]) |
nothing calls this directly
no test coverage detected