WARNING - No GPU/TPU found, falling back to CPU. (Set TF_CPP_MIN_LOG_LEVEL=0 and rerun for more info.) #10323
-
I am pretty sure that the box I am connecting to via ssh has 20 CPU cores and 2 GPU cores however the GPUs are not recognized by Jax. Any ideas on how to solve this? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Do you install
Or
|
Beta Was this translation helpful? Give feedback.
-
Hi I was stuck on this issue for several hours and got the answer that solved everything for me: |
Beta Was this translation helpful? Give feedback.
-
I had this problem too, but my cause was because of a version conflict between jax and jaxlib, which seemed to automatically become the cpu version when updating jax; pip uninstall jax jaxlib pip install -U "jax[cuda12_pip]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html change the second command to your cuda version if you are not 12.x |
Beta Was this translation helpful? Give feedback.
Do you install
jaxlib
with GPU support?try to run:
Or