- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在运行以下代码。但是,我得到的输出为
代码 38 出错
测试 = 0
设备计数= 0
代码 38 出错
测试2 = 0
我在 Ubuntu 上有一个 NVIDIA GTX 690 显卡。这是否意味着驱动程序未激活?
#include <iostream>
using namespace std;
__device__ __constant__ float* data;
template<class T> void allocOnly(T* deviceDest, size_t numElem)
{
cudaError_t errCode = cudaMalloc((void**)&deviceDest, numElem*sizeof(T));
if(errCode != cudaSuccess)
cout << "Got error with code " << errCode << endl;
}
int main()
{
float* test(0);
allocOnly<float>(test,10);
cout << "test = " << test << endl;
int deviceCount = 0;
cudaGetDeviceCount(&deviceCount);
cout << "deviceCount= " << deviceCount << endl;
float* test2(0);
cudaError_t errCode = cudaMalloc((void**)&test2, 10*sizeof(float));
if(errCode != cudaSuccess)
cout << "Got error with code " << errCode << endl;
cout << "test2 = " << test2 << endl;
return 0;
}
最佳答案
是的,您的系统设置有问题。尝试运行 nvidia-smi -a
从终端查看它的报告。
你应该这样做 proper cuda error checking调用cudaGetDeviceCount
(以及所有 cuda API 调用和内核调用)。 error returned from that API call也会很有启发性。
执行对 cudaGetDeviceCount
的调用对我来说也是有意义的。在任何其他 cuda API 调用之前(例如对 cudaMalloc
中的 allocOnly
的调用)。
关于cudaGetDeviceCount 返回 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17689335/
我正在运行以下代码。但是,我得到的输出为 代码 38 出错 测试 = 0 设备计数= 0 代码 38 出错 测试2 = 0 我在 Ubuntu 上有一个 NVIDIA GTX 690 显卡。这是否意味
我在 Windows 8.1 机器上安装了 CUDA 6.0,并尝试运行 deviceQuery CUDA 示例。但是,对于 Win32 和 Win64 版本,它返回以下错误。 deviceQuery
我在我的 Linux 服务器上运行一个深度学习程序,突然出现这个错误。UserWarning: CUDA initialization: Unexpected error from cudaGetDe
问题 我有一个基于 FFT 的应用程序,它使用 FFTW3。我正在使用 CUFFT 将应用程序移植到基于 CUDA 的实现。在 Nsight 中独立编译和运行应用程序的 FFT 核心工作正常。我已经从
我是一名优秀的程序员,十分优秀!