We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I tried this thinking it might work and was surprised that it throws an error -- is this a bug or not something we can support at the moment?
import jax import astropy.units as u from unxt import Quantity from unxt import experimental length = u.get_physical_type("length") time = u.get_physical_type("time") velocity = u.get_physical_type("velocity") @jax.jit def test_ad1(x: Quantity[length], t: Quantity[time]) -> Quantity[velocity]: return x / t experimental.grad(test_ad1, units="si", argnums=1)( Quantity(15.0, u.m), Quantity(1.0, u.s) )
... UnitConversionError: 'm' (length) and 's' (time) are not convertible
The text was updated successfully, but these errors were encountered:
We should figure out how to support this!
The following does already work.
experimental.grad(test_ad1, units=(u.m, u.s), argnums=1)( Quantity(15.0, u.m), Quantity(1.0, u.s) )
But just "si" would be simpler.
Sorry, something went wrong.
No branches or pull requests
I tried this thinking it might work and was surprised that it throws an error -- is this a bug or not something we can support at the moment?
The text was updated successfully, but these errors were encountered: