mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-06-24 02:14:17 +00:00
skip test_setitem_fancy_on_unrealized_view (#16400)
crashes in linux llvm ci
This commit is contained in:
parent
945ed4f689
commit
3e80f375ee
1 changed files with 1 additions and 0 deletions
|
|
@ -36,6 +36,7 @@ class TestSetitem(unittest.TestCase):
|
|||
t[:3] *= 10
|
||||
self.assertListEqual(t.tolist(), [0, 10, 20, 3, 4, 5, 6, 7, 8, 9])
|
||||
|
||||
@unittest.skip("crashed in LLVM CI")
|
||||
def test_setitem_fancy_on_unrealized_view(self):
|
||||
# fancy indexing setitem on unrealized SHRINK view (triggered infinite loop in graph_rewrite)
|
||||
base = Tensor.arange(20, dtype=dtypes.float).reshape(4, 5).clone().realize()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue