We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f2c589 commit fabfad1Copy full SHA for fabfad1
tests/link/mlx/test_elemwise.py
@@ -42,11 +42,14 @@
42
def test_input(op) -> None:
43
x = vector("x")
44
out = op(x > 0)
45
+ out.dprint(print_type=True)
46
+ assert 0
47
x_test = mx.array([1.0, 2.0, 3.0])
48
49
compare_mlx_and_py([x], out, [x_test])
50
51
52
+@pytest.mark.skip(reason="It's crashing the kernel")
53
def test_mlx_CAReduce():
54
a_pt = vector("a")
55
a_pt.tag.test_value = np.r_[1, 2, 3].astype(config.floatX)
0 commit comments