Cuda 5.0 printf无法正常工作

时间:2013-03-15 04:13:28

标签: cuda printf

我正在尝试运行我在this帖子中找到的cuda的printf示例:

#include <stdio.h>

__global__ void helloCUDA(float f)
{
  printf("Hello thread %d, f=%f\n", threadIdx.x, f);
}

int main()
{
  helloCUDA<<<1, 5>>>(1.2345f);
  cudaDeviceReset();
  return 0;
}

正在编译:

nvcc -arch=sm_20 test.cu -run

我也没有输出:

$ nvcc -arch=sm_20 test.cu -run
$ 

这是我的cuda版本:

$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2012 NVIDIA Corporation
Built on Fri_Sep_21_17:28:58_PDT_2012
Cuda compilation tools, release 5.0, V0.2.1221

我正在使用bumblebee版本3:

$ optirun --version
optirun (Bumblebee) 3.1
Copyright (C) 2011 The Bumblebee Project

$ uname -a
Linux zeus 3.5.0-25-generic #39-Ubuntu SMP Mon Feb 25 18:26:58 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

1 个答案:

答案 0 :(得分:2)

更改cudaDeviceReset()来电cudaDeviceSynchronize()来电。同时在cudaDeviceSynchronize()电话上cuda error checking进行操作。您的GPU或设置可能存在问题。