Even though I have a fermi card(gtx 560) I get this error on VS2010:
error : calling a host function("printf") from a __device__/__global__ function("kernel") is not allowed
Code:
#include "cuda_runtime.h"
#include "device_launch_parameters.h"
#include <stdio.h>
__global__ void kernel()
{
printf("hello");
}
int main()
{
kernel<<<1, 1>>>();
return 0;
}
Am I missing something here?
