(self)
| 225 | np.testing.assert_almost_equal(a.numpy(), b.numpy(), decimal=5) |
| 226 | |
| 227 | def test_allreduce_ring(self): |
| 228 | with Context(RING=2): |
| 229 | a,b = _test_allreduce(Tensor.rand(256, 256)) |
| 230 | np.testing.assert_almost_equal(a.numpy(), b.numpy(), decimal=5) |
| 231 | |
| 232 | def test_multiple_to_single_device(self): |
| 233 | kernel_counts = {} |
nothing calls this directly
no test coverage detected