CUDA não consegue detectar placa gráfica

1

Eu tenho o problema de receber uma mensagem de erro

    Exception during execution: CUDA error: no CUDA-capable device is detected (src/cuda/lm/Cuda.cu:60)

Algumas informações sobre a placa gráfica:

    $ lspci -nnk | grep "VGA\|'Kern'\|3D\|Display" -A2 
    02:00.0 VGA compatible controller [0300]: NVIDIA Corporation GK104 [GeForce GTX 680] [10de:1180] (rev a1)
    Subsystem: ZOTAC International (MCO) Ltd. Device [19da:1255]
    Kernel driver in use: nvidia

e

    $ xrandr --prop 
    Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 16384 x 16384
    DVI-I-0 disconnected (normal left inverted right x axis y axis)
    BorderDimensions: 
    Border: CARDINAL(6) (format 16 items 4) ????
    SignalFormat:   VGA
    supported: VGA         
    ConnectorType:  DVI-I
    ConnectorNumber: 0 (0x00000000)
_   ConnectorLocation: 0 (0x00000000)
    DVI-I-1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 531mm x 299mm
EDID:
    00ffffffffffff000469942401010101
    0716010380351e78ea9265a655559f28
    0d5054bfef00714f818081409500a940
    b300d1c00101023a801871382d40582c
    4500132b2100001e000000fd00324c1e
    5311000a202020202020000000fc0056
    453234380a20202020202020000000ff
    0043324c4d51533037363031330a00d2
BorderDimensions: 
Border: CARDINAL(6) (format 16 items 4) ????
SignalFormat:   TMDS
    supported: TMDS        
ConnectorType:  DVI-I
ConnectorNumber: 0 (0x00000000)
_ConnectorLocation: 0 (0x00000000)
       1920x1080      60.0*+
       1680x1050      60.0  
       1600x1200      60.0  
       1440x900       59.9  
       1280x1024      75.0     60.0  
       1280x960       60.0  
       1152x864       75.0  
       1024x768       75.0     70.1     60.0  
       800x600        75.0     72.2     60.3     56.2  
       640x480        75.0     72.8     59.9  
    HDMI-0 disconnected (normal left inverted right x axis y axis)
       BorderDimensions: 
       Border: CARDINAL(6) (format 16 items 4) ????
       SignalFormat:    TMDS
            supported: TMDS        
       ConnectorType:   HDMI
       ConnectorNumber: 2 (0x00000002)
        _ConnectorLocation: 2 (0x00000002)
    DP-0 disconnected (normal left inverted right x axis y axis)
         BorderDimensions: 
         Border: CARDINAL(6) (format 16 items 4) ????
        SignalFormat:   TMDS
             supported: TMDS        
          ConnectorType:    DisplayPort
        ConnectorNumber: 3 (0x00000003)
        _ConnectorLocation: 3 (0x00000003)
    DVI-D-0 disconnected (normal left inverted right x axis y axis)
        BorderDimensions: 
        Border: CARDINAL(6) (format 16 items 4) ????
        SignalFormat:   TMDS
            supported: TMDS        
        ConnectorType:  DVI-D
        ConnectorNumber: 1 (0x00000001)
        _ConnectorLocation: 1 (0x00000001)
       DP-1 disconnected (normal left inverted right x axis y axis)
           BorderDimensions: 
        Border: CARDINAL(6) (format 16 items 4) ????
         SignalFormat:  DisplayPort
             supported: DisplayPort 
         ConnectorType: DisplayPort
        ConnectorNumber: 3 (0x00000003)
        _ConnectorLocation: 3 (0x00000003)

Um bugreport da nvidia pode ser encontrado em dropbox pode alguém me diga como resolver esse problema por favor?

Atenciosamente,

David

    
por Matsumoto San 25.08.2014 / 18:03

1 resposta

0

Se você tiver o Ubuntu 14.04, você pode instalar o nvidia-331, o kit de ferramentas NVIDIA CUDA e a biblioteca NVIDIA CUDA 5.5 Runtime diretamente do Ubuntu Software Center. libcudart5.5 é o nome do pacote da biblioteca de tempo de execução NVIDIA CUDA. O libcudart5.5 requer o driver gráfico nvidia-331 ou mais recente. Há também um pacote de kit de ferramentas NVIDIA CUDA (nvidia-cuda-toolkit) no Ubuntu Software Center para Ubuntu 14.04, e como o libcudart5.5 também é versão 5.5.

Os três pacotes mencionados acima estão trabalhando no meu Ubuntu 14.04 com uma placa gráfica NVIDIA GeForce GT 610. Você também pode instalar o pacote nvidia-331-updates em vez de nvidia-331.

    
por karel 25.08.2014 / 18:23