...
| Code Block |
|---|
[root@cld-dfa-gpu-04 ~]# nvidia-smi Fri Sep 2 17:37:04 2022 +-----------------------------------------------------------------------------+ | NVIDIA-SMI 515.65.01 Driver Version: 515.65.01 CUDA Version: 11.7 | |-------------------------------+----------------------+----------------------+ | GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC | | Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. | | | | MIG M. | |===============================+======================+======================| | 0 NVIDIA A2 Off | 00000000:17:00.0 Off | 0 | | 0% 33C P0 19W / 60W | 0MiB / 15356MiB | 0% Default | | | | N/A | +-------------------------------+----------------------+----------------------+ | 1 NVIDIA A2 Off | 00000000:CA:00.0 Off | 0 | | 0% 35C P0 18W / 60W | 0MiB / 15356MiB | 1% Default | | | | N/A | +-------------------------------+----------------------+----------------------+ +-----------------------------------------------------------------------------+ | Processes: | | GPU GI CI PID Type Process name GPU Memory | | ID ID Usage | |=============================================================================| | No running processes found | +-----------------------------------------------------------------------------+ |
- Install a CUDA Toolkit version compatible with the selected NVIDIA driver (see https://developer.nvidia.com/cuda-downloads):
| Code Block |
|---|
# if needed, yum install make freeglut-devel libX11-devel libXi-devel libXmu-devel mesa-libGLU-devel freeimage-devel
CUDA_VERSION=11.7.1
DRIVER_VERSION=515.65.01
wget https://developer.download.nvidia.com/compute/cuda/$CUDA_VERSION/local_installers/cuda_${CUDA_VERSION}_${DRIVER_VERSION}_linux.run
sh cuda_${CUDA_VERSION}_${DRIVER_VERSION}_linux.run |