* deleting lines

* remove insert dims

* if statement is never hit

* bug fixes
This commit is contained in:
George Hotz
2023-08-20 08:12:16 -07:00
committed by GitHub
parent 4fbce972d7
commit 739f327d2d
7 changed files with 26 additions and 33 deletions

View File

@@ -149,4 +149,7 @@ class TestSymbolicJit(unittest.TestCase):
a = Tensor.rand(3, 7).reshape(3, vi)
bad = Tensor.rand(4, 7).reshape(4, vi)
with self.assertRaises(AssertionError):
add(a, bad)
add(a, bad)
if __name__ == '__main__':
unittest.main()