Skip to content
New issue

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

vecs: implement matmul #285

Open
nstarman opened this issue Dec 9, 2024 · 0 comments
Open

vecs: implement matmul #285

nstarman opened this issue Dec 9, 2024 · 0 comments
Milestone

Comments

@nstarman
Copy link
Contributor

nstarman commented Dec 9, 2024

jax.numpy.matmul fails because the shape of vectors doesn't include their components.

import coordinax as cx
q2 = cx.CartesianPos3D.from_([[0.0, 0, 0], [1, 1, 1]], "kpc")
q2.shape
# (2,)

So

import quaxed.numpy as jnp

rot = jnp.asarray([[0., -1, 0], [1, 0, 0], [0, 0, 1])
jnp.matmul(rot, q2)
# TypeError: dot_general requires contracting dimensions to have the same shape, got (3,) and (2,).
@nstarman nstarman added this to the future milestone Dec 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant