We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
mlx
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support the for mlx backend to unleash Apple Silicon's full potential.
Similar to #821
If you need an Op that's not in this list, comment below and we'll add it!
The text was updated successfully, but these errors were encountered:
I suggest starting with a POC with a new linker to compile a simple graph like:
import pytensor import pytensor.tensor as pt import numpy as np x = pt.matrix("x") y = pt.matrix("y") out = pt.dot(x, y) fn = pytensor.function([x, y], out, mode="MLX") test_x = np.random.normal(size=(3, 2)) test_y = np.random.normal(size=(2, 4)) out = fn(test_x, test_y) np.testing.assert_allclose(out, np.dot(test_x, test_y))
Sorry, something went wrong.
No branches or pull requests
Description
Support the for
mlx
backend to unleash Apple Silicon's full potential.Similar to #821
Tensor creation Ops
Shape Ops
Math Ops
Indexing Ops
Branching Ops
Linalg Ops
SparseOps
RandomVariable Ops
If you need an Op that's not in this list, comment below and we'll add it!
The text was updated successfully, but these errors were encountered: