also skip test_nonoverlapping_shrink_assignment (#14382)

This commit is contained in:
Christopher Milan
2026-01-27 13:26:26 -08:00
committed by GitHub
parent f34efc1ad1
commit 289a3e415e

View File

@@ -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()