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 ac93949 commit a19cbc8Copy full SHA for a19cbc8
pytensor/link/mlx/dispatch/elemwise.py
@@ -39,7 +39,7 @@ def prod(x):
39
elif isinstance(op.scalar_op, AND):
40
41
def all(x):
42
- return mx.all(x, axis=op.axis)
+ return mx.all(a=x, axis=op.axis)
43
44
return all
45
elif isinstance(op.scalar_op, OR):
pytensor/link/mlx/dispatch/math.py
@@ -199,7 +199,7 @@ def neg(x):
199
200
201
202
- return mx.all(x)
203
204
205
0 commit comments