Jax's cuda installation should align with TF's cuda installation #1342
Closed
davidshen84
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
@davidshen84 Did you mean to post this discussion on Jax project? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
TF has this page that details its cuda and cudnn installation. Jax only briefly mentioned it here. If I want to use both Jax and TF on my system, I have to do trial and error a few times to find out which TF and Jax versions can work with my current cuda and cudnn installations on my system.
I have this simple docker file for TF 2.16 that was working a few months back.
dockerfile TF 2.16
requirements.txt
I use
jax[cuda12_local]
because I want Jax to use the same cuda and cudnn installation as TF did, and it worked.But when I upgraded to TF 2.18, I had to use
jax[cuda12]
. The result is that my docker image size increased from about 14GB to over 22GB.Beta Was this translation helpful? Give feedback.
All reactions