I am trying to run CUDA in emulation mode in Visual Studio 2008.
It is showing this problem at runtime- cudaSafeCall() Runtime API error in file , line abc : feature is not implemented
for example in one case it turned out to be this one- cutilSafeCall(cudaGLRegisterBufferObject(pbo));
and if i commented this one out then- cutilSafeCall( cudaMalloc((void **)&dev_triangle_p, triangle_size)); ...
is this because I am running the code in emulation mode? Any other suggestions?