compile cuda program in device emulation mode
Prior to 3.0 you can just compile with the -deviceemu flag:
nvcc -deviceemu main.cu
In 3.0, this was changed such that you should link against cudartemu instead of cudart
In 3.1, emulation was removed.
So if want device emulation, you need to use version 3.0 or earlier.
A
