I am trying to get the kernal to print “hello” which apparently you can do in emulation mode. what am i doing wrong?
I am making with ‘make emu=1’
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
// includes, project
#include <cufft.h>
#include <cutil.h>
__global__ void some(){
printf("hello\n");
}
int main(int argc, char** argv)
{
dim3 gridConfig(1,1);
dim3 blockConfig(200,200);
some<<<gridConfig,blockConfig>>>();
CUT_EXIT(argc, argv);
}