skip TestSetitem.test_setitem_inplace_operator (#7103)

This commit is contained in:
qazal 2024-10-16 18:59:08 +03:00 committed by GitHub
parent 83e7dbd89e
commit 9d5342976e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -42,6 +42,7 @@ class TestSetitem(unittest.TestCase):
assert not t.lazydata.st.contiguous
with self.assertRaises(RuntimeError): t[1] = 5
@unittest.skip("TODO: broken")
def test_setitem_inplace_operator(self):
t = Tensor.arange(4).reshape(2, 2).contiguous()
t[1] += 2
@ -133,4 +134,4 @@ class TestWithGrad(unittest.TestCase):
z[:3] = x
if __name__ == '__main__':
unittest.main()
unittest.main()