mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-04-29 03:00:14 -04:00
also skip test_nonoverlapping_shrink_assignment (#14382)
This commit is contained in:
committed by
GitHub
parent
f34efc1ad1
commit
289a3e415e
@@ -437,6 +437,7 @@ class TestAssign(unittest.TestCase):
|
||||
with Context(NOOPT=1): a[shift:N].assign(a[0:N-shift]).realize()
|
||||
np.testing.assert_allclose(a.numpy(), expected)
|
||||
|
||||
@unittest.skip("this test is crashing!")
|
||||
def test_nonoverlapping_shrink_assignment(self):
|
||||
# TODO: non-overlapping shrinks don't actually need contiguous, could be 1 kernel with smarter range analysis
|
||||
a = Tensor.arange(100).float().contiguous().realize()
|
||||
|
||||
Reference in New Issue
Block a user