Replies: 1 comment 6 replies
-
Hi - thanks for the question and sorry for the problems you're facing! Jumping from 0.1.57 to 0.1.68 reflects over 7 months of active development in JAX and XLA, so it's not easy to guess what changes might have affected your use-case. Is it possible to give a small example of a script that demonstrates the issue? |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I just upgraded jaxlib from 0.1.57 to 0.1.68 and that basically broke all of my code.
I have a large
vmap
(over 1m) and within thevmap
I am accessing a fairly large matrix (1GB+). I realized that in the newer version of jaxlib, it attempts to replicate this matrix 1m times which obviously doesn't fit.Downgrading to the older jaxlib version got rid of the problem. I would like to release my code working with latest version of JAX.
Is this intended behavior? If so, can I somehow tell vmap not to replicate the matrix?
Beta Was this translation helpful? Give feedback.
All reactions