0

我已经在 CUDA SDK 中执行了 deviceQuery 程序。文件中多处理器和内核的数量为 0,我确定这不是真的。可能是什么原因?

./deviceQuery Starting...

 CUDA Device Query (Runtime API) version (CUDART static linking)

There are 3 devices supporting CUDA

Device 0: "Tesla C2050"
CUDA Driver Version:                           4.10
CUDA Runtime Version:                          4.10
CUDA Capability Major revision number:         2
CUDA Capability Minor revision number:         0
Total amount of global memory:                 2817982464 bytes
Number of multiprocessors:                     0
Number of cores:                               0
Total amount of constant memory:               65536 bytes
Total amount of shared memory per block:       49152 bytes
Total number of registers available per block: 32768
Warp size:                                     32
Maximum number of threads per block:           1024
Maximum sizes of each dimension of a block:    1024 x 1024 x 64
Maximum sizes of each dimension of a grid:     65535 x 65535 x 65535
Maximum memory pitch:                          2147483647 bytes
Texture alignment:                             512 bytes
Clock rate:                                    1.15 GHz
Concurrent copy and execution:                 Yes
Run time limit on kernels:                     Yes
Integrated:                                    Yes
Support host page-locked memory mapping:       No
Compute mode:                                  Default 
(multiple host threads can   use    this device simultaneously)
4

2 回答 2

1

Make sure you update your nvidia drivers to the latest available and then reboot. If that doesn't fix it, please run the following commands and post the output:

uname -a
nvidia-smi -q
lspci
echo $LD_LIBRARY_PATH
ldd /path/to/deviceQuery
ldconfig -p
devicequery (with all output, not just the card in question)
于 2012-08-15T21:29:42.833 回答
1

确保这件事:

  • 卸载所有旧显卡驱动程序并安装最新的 NVIDIA 显卡驱动程序。
  • 卸载所有旧的 CUDA 工具包并安装最新的 CUDA 工具包。
于 2012-03-26T10:25:22.647 回答