(self)
| 38 | def setUp(self): pass |
| 39 | |
| 40 | def test_to(self): |
| 41 | X = Tensor.ones(256).contiguous().realize() |
| 42 | X.to_(devices_2) |
| 43 | assert X.shape == (256,) |
| 44 | (X + X).realize() |
| 45 | |
| 46 | def test_gradient(self): |
| 47 | X = Tensor.ones(256).contiguous().realize() |
nothing calls this directly
no test coverage detected