JAX errors with GPU options #633
Unanswered
dal281726-collab
asked this question in
Q&A
Replies: 2 comments 6 replies
-
Interesting... can you run I'm wondering if there's some conda issue with jax+jaxlib on certain GPUs. |
Beta Was this translation helpful? Give feedback.
5 replies
-
you could try installing dolphin as you did, and then do a |
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.
Uh oh!
There was an error while loading. Please reload this page.
-
[Edit] I was trying to run on an H100 GPU node.
I am a rookie to Dolphin. I installed Dolphin and tried to follow the tutorial. It's pretty straightforward to install and run it on CPU nodes, so I wonder if it's possible to use GPUs to accelerate it. I followed the instructions from Dolphin tutorials, then I first tried submitting a job, and it looked like the job wasn't running on the GPU so tried to see if the GPU was visible to dolphin/JAX.
For dolphin, I ran (on a GPU node)
and it printed out
gpu_is_available: True
, so it looked good. Then I triedIt printed out
WARNING:2025-08-13 11:49:16,983:jax._src.xla_bridge:872: An NVIDIA GPU may be present on this machine, but a CUDA-enabled jaxlib is not installed. Falling back to cpu. [CpuDevice(id=0)]
So the GPU was not seen by JAX.
After that, I created a new environment and installed JAX from the original repo. I tried running
print(jax.devices())
again and JAX actually saw the GPU with no problem:I thought it should be okay now. Then I tried installing dolphin again, and ran
python3 -c "import jax; print(jax.devices())"
again, but it still threw the same errorWARNING:2025-08-13 12:45:19,983:jax._src.xla_bridge:872: An NVIDIA GPU may be present on this machine, but a CUDA-enabled jaxlib is not installed. Falling back to cpu. [CpuDevice(id=0)]
No matter how I tried uninstall/reinstall/upgrade/downgrade JAX several times, it didn't work. It only works with JAX alone. If you have any suggestions please let me know!
Beta Was this translation helpful? Give feedback.
All reactions