You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need the OA to use CUDA version 11.3. It appears that it is built around 11.8 or greater. Although I changed the docker image from nvidia/cuda:12.0.0-devel-ubuntu22.04 to nvidia/cuda:11.3.0-cudnn8-devel-ubuntu20.04 in the ./docker/inference/Dockerfile.worker-hf
and set the env variables to what's below, I am still getting an error about the wrong driver version.
How can I go about getting a lit of all the places where CUDA/nvidia is referenced, so that I could build with 11.3?
This discussion was converted from issue #2943 on June 09, 2023 11:50.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I need the OA to use CUDA version 11.3. It appears that it is built around 11.8 or greater. Although I changed the docker image from nvidia/cuda:12.0.0-devel-ubuntu22.04 to nvidia/cuda:11.3.0-cudnn8-devel-ubuntu20.04 in the ./docker/inference/Dockerfile.worker-hf
and set the env variables to what's below, I am still getting an error about the wrong driver version.
How can I go about getting a lit of all the places where CUDA/nvidia is referenced, so that I could build with 11.3?
ENV CUDA_VERSION=11.3
ENV NVIDIA_VISIBLE_DEVICES all
ENV NVIDIA_DRIVER_CAPABILITIES compute,utility
ENV NVIDIA_REQUIRE_CUDA "cuda>=11.3"
Beta Was this translation helpful? Give feedback.
All reactions