Skip to content

Commit fabfad1

Browse files
committed
.DO NOT MERGE: Find issue with CAReduce
1 parent 1f2c589 commit fabfad1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/link/mlx/test_elemwise.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,14 @@
4242
def test_input(op) -> None:
4343
x = vector("x")
4444
out = op(x > 0)
45+
out.dprint(print_type=True)
46+
assert 0
4547
x_test = mx.array([1.0, 2.0, 3.0])
4648

4749
compare_mlx_and_py([x], out, [x_test])
4850

4951

52+
@pytest.mark.skip(reason="It's crashing the kernel")
5053
def test_mlx_CAReduce():
5154
a_pt = vector("a")
5255
a_pt.tag.test_value = np.r_[1, 2, 3].astype(config.floatX)

0 commit comments

Comments
 (0)