Linux Mint에서 NvidiaGraphicCard를 사용하는 데 문제가 있습니다. 그래서 먼저 Linux용 cuda 라이브러리를 다운로드했습니다. 드라이버는 cuda 출신입니다.NVIDIA-Linux-x86_64-352.39.run모두 설치되었지만 다음이 있습니다. 물론
$glxgears
Xlib: extension "GLX" missing on display ":0.0".
Error: couldn't get an RGB, Double-buffered visual
CUDA의 DeviceQuery:
deviceQuery
./deviceQuery Starting...
CUDA Device Query (Runtime API) version (CUDART static linking)
Detected 1 CUDA Capable device(s)
Device 0: "GeForce GTX 960M"
CUDA Driver Version / Runtime Version 7.5 / 7.5
CUDA Capability Major/Minor version number: 5.0
Total amount of global memory: 2048 MBytes (2147352576 bytes)
( 5) Multiprocessors, (128) CUDA Cores/MP: 640 CUDA Cores
GPU Max Clock rate: 1176 MHz (1.18 GHz)
Memory Clock rate: 2505 Mhz
Memory Bus Width: 128-bit
L2 Cache Size: 2097152 bytes
Maximum Texture Dimension Size (x,y,z) 1D=(65536), 2D=(65536, 65536), 3D=(4096, 4096, 4096)
Maximum Layered 1D Texture Size, (num) layers 1D=(16384), 2048 layers
Maximum Layered 2D Texture Size, (num) layers 2D=(16384, 16384), 2048 layers
Total amount of constant memory: 65536 bytes
Total amount of shared memory per block: 49152 bytes
Total number of registers available per block: 65536
Warp size: 32
Maximum number of threads per multiprocessor: 2048
Maximum number of threads per block: 1024
Max dimension size of a thread block (x,y,z): (1024, 1024, 64)
Max dimension size of a grid size (x,y,z): (2147483647, 65535, 65535)
Maximum memory pitch: 2147483647 bytes
Texture alignment: 512 bytes
Concurrent copy and kernel execution: Yes with 1 copy engine(s)
Run time limit on kernels: No
Integrated GPU sharing Host Memory: No
Support host page-locked memory mapping: Yes
Alignment requirement for Surfaces: Yes
Device has ECC support: Disabled
Device supports Unified Addressing (UVA): Yes
Device PCI Domain ID / Bus ID / location ID: 0 / 1 / 0
Compute Mode:
< Default (multiple host threads can use ::cudaSetDevice() with device simultaneously) >
deviceQuery, CUDA Driver = CUDART, CUDA Driver Version = 7.5, CUDA Runtime Version = 7.5, NumDevs = 1, Device0 = GeForce GTX 960M
Result = PASS
NVIDIA-SMI:
Mon Oct 12 15:07:58 2015
+------------------------------------------------------+
| NVIDIA-SMI 352.39 Driver Version: 352.39 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce GTX 960M Off | 0000:01:00.0 Off | N/A |
| N/A 42C P0 N/A / N/A | 7MiB / 2047MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: GPU Memory |
| GPU PID Type Process name Usage |
|=============================================================================|
| No running processes found |
+-----------------------------------------------------------------------------+
lspci
filip@filip-laptop /usr/local/cuda-7.5/samples/1_Utilities/deviceQuery $ lspci -vnn | grep VGA -A 12
00:02.0 VGA compatible controller [0300]: Intel Corporation Broadwell-U Integrated Graphics [8086:1612] (rev 0a) (prog-if 00 [VGA controller])
Subsystem: Micro-Star International Co., Ltd. [MSI] Device [1462:1138]
Flags: bus master, fast devsel, latency 0, IRQ 46
Memory at a1000000 (64-bit, non-prefetchable) [size=16M]
Memory at b0000000 (64-bit, prefetchable) [size=256M]
I/O ports at 5000 [size=64]
Expansion ROM at <unassigned> [disabled]
Capabilities: <access denied>
Kernel driver in use: i915
00:03.0 Audio device [0403]: Intel Corporation Broadwell-U Audio Controller [8086:160c] (rev 0a)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device [1462:1138]
Flags: bus master, fast devsel, latency 0, IRQ 50
엔비디아 설정:
You do not appear to be usin NVIDIA X driver....
실행이 sudo nvidia-xconfig
작동하지 않습니다.
그래서 제안이 있나요?
답변1
매우 새로운 GPU 하드웨어를 사용하고 있으므로 안정적인 최신 드라이버를 사용하는 것이 좋습니다.
독점 GPU 드라이버 PPA에서 GTX960용 안정적인 최신 NVIDIA 드라이버를 설치하세요.
새 드라이버를 설치하기 전에 이전에 설치한 NVIDIA 관련 소프트웨어를 모두 제거하십시오.
터미널을 열고 다음을 실행합니다.
sudo apt-get purge nvidia*
sudo reboot
이제 다음 명령을 실행하여 NVIDIA 단기 분기에서 최신의 안정적인 NVIDIA 드라이버를 설치합니다(노트북에 하이브리드 그래픽 솔루션이 있으므로 NVIDIA Optimus 지원 설치).
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-355 nvidia-prime
sudo reboot
Intel과 NVIDIA 그래픽 카드 간을 전환하려면 - 켜십시오.NVIDIA X 서버 설정->주요 소개.
답변2
CUDA를 설치한 후에도 같은 문제가 발생했습니다. 먼저 CUDA NVIDIA 드라이버 설치를 생략한 다음 다른 방법으로 드라이버를 설치했지만 이러한 드라이버 중 어느 것도 작동하지 않았습니다.
nvidia_355를 설치하면 OpenGL은 작동하지만 CUDA는 작동하지 않습니다. 반면에 CUDA에서 드라이버를 설치하면 OpenGL은 작동하지 않지만 CUDA는 작동합니다.
...