Jax's cuda installation should align with TF's cuda installation #1342
davidshen84
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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