Minimum CUDA driver version which works with R2024a
이전 댓글 표시
MATLAB displays the error saying that "Graphics driver is out of date. Download and install the latest graphcis driver for your GPU from NVIDIA." despite we have relatively new driver version (530.30.02, Feb2023).
As the page https://www.mathworks.com/help/releases/R2024a/parallel-computing/gpu-computing-requirements.html did not list the driver version required, I would like to know how to check the minimum driver version required?
답변 (2개)
Matt J
2024년 9월 23일
2 개 추천
The driver version you need is a function of your GPU card. Why not just install the latest one as the error message suggests?
Ayush
2024년 9월 23일
I understand that you need to run MATLAB on your GPU, but you are facing issues with the version of the installed GPU driver.
To resolve your issue, you can refer to the “Note” section of the documentation : https://www.mathworks.com/help/releases/R2024a/parallel-computing/gpu-computing-requirements.html.
It says MATLAB supports NVIDIA GPU architectures with compute capability 5.0 to 9.x.
To determine the "compute capability" of your GPU, please visit: https://developer.nvidia.com/cuda-gpus. Additionally, you can check the maximum CUDA support of your installed driver by executing the following command:
$ Nvidia-smi
This information will help you identify the appropriate driver to install, ensuring compatibility with your MATLAB version.
Hope this helps!
댓글 수: 5
Yau Hing Tuen
2024년 9월 23일
Your issue might be because MATLAB R2024a supports CUDA toolkit version 12.2 but as per your ouput, your driver version supports CUDA version 12.1 which might be the cause of issue in MATLAB R2024a.
You can read more about it in the "Install CUDA Toolkit" section here https://www.mathworks.com/help/parallel-computing/run-mex-functions-containing-cuda-code.html
You can also use "canUseGPU" command to verify compatibility. You can read more about it here: https://www.mathworks.com/help/matlab/ref/canusegpu.html
Yau Hing Tuen
2024년 9월 23일
편집: Yau Hing Tuen
2024년 9월 23일
Ayush
2024년 9월 23일
Glad you understood. if you find it useful, you can "accept" the answer so that it helps the other people having similar issue.
카테고리
도움말 센터 및 File Exchange에서 GPU Computing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!