mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-01-09 15:08:02 -05:00
multitensor start (#2676)
* multitensor work * early gen fixes the tests * atol for flaky test
This commit is contained in:
2
test/external/external_test_opt.py
vendored
2
test/external/external_test_opt.py
vendored
@@ -166,7 +166,7 @@ class TestOpt(unittest.TestCase):
|
||||
with CLCache(allowed=1):
|
||||
d = a * b + c
|
||||
d.realize()
|
||||
np.testing.assert_allclose(d.numpy(), na*nb+nc, rtol=1e-5)
|
||||
np.testing.assert_allclose(d.numpy(), na*nb+nc, rtol=1e-5, atol=1e-7)
|
||||
|
||||
def test_fold_reduce_elementwise(self):
|
||||
img = Tensor.ones(32)
|
||||
|
||||
Reference in New Issue
Block a user