-
Notifications
You must be signed in to change notification settings - Fork 33
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
POC - Jax implementation of AndersonCD solver #155
base: main
Are you sure you want to change the base?
Conversation
Jax triggers another jit-compilation of functions whenever the function arguments change shape. This is a limiting factor with the current design as the heavy-costly functions, To bypass that, I'm thinking of tweaking the design to freeze the arrays' shapes across iterations and hence avoid the recompilation. I'm open to other suggestions. |
Follow up of #149
This implements AndersonCD solver using Jax-GPU. it proceeds as follows: