Skip to content

Commit 3b8d923

Browse files
authored
remove skip LLVM in test_div_int (tinygrad#9686)
1 parent bc3bfcb commit 3b8d923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ def test_div_int(self):
571571
np.testing.assert_equal(x.numpy(), 2**64 - 1)
572572
# 1 // 0 is device dependent, but it should not raise
573573
Tensor([1]).idiv(1).realize()
574-
if not (CI and (Device.DEFAULT=="LLVM" or getenv("PTX"))): # TODO: crashed in CI
574+
if not (CI and getenv("PTX")): # TODO: crashed in PTX CI
575575
# ... because if might be in a where branch that the output is well defined
576576
t = Tensor([-1, 0, 1, 2])
577577
np.testing.assert_equal((t > 0).where(1//t, t).numpy(), [-1, 0, 1, 0])

0 commit comments

Comments
 (0)