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
import enum import jax class Foo(enum.IntEnum): bar = 1 baz = 2 @jax.pmap def f(_): return Foo.bar f(jax.numpy.arange(1))
The same works with jax.jit instead of jax.pmap.
jax.jit
jax.pmap
The text was updated successfully, but these errors were encountered:
ee4ec86
make constant handlers follow type mro
95c072c
fixes jax-ml#6129
mattjj
Successfully merging a pull request may close this issue.
The same works with
jax.jit
instead ofjax.pmap
.The text was updated successfully, but these errors were encountered: