Reputation: 14660
I am new to learning CUDA and I was looking around for a good emulator to run my CUDA programs on, since my laptop does not come with a Graphics card.
I have heard of mcuda and gpuocelot but they seem to have terrible and confusing documentation. I have been trying to get them installed for a few hours now but with very little progress.
Does any one know of a decent GPU emulator with good documentation. I am using Ubuntu 10.10 operating system
Thank you,
Gaurish
Upvotes: 4
Views: 3892
Reputation: 11
I tried for GPUocelot on ubuntu 12.04. its time consuming job we have to download some folders from "http://gpuocelot.googlecode.com/svn/trunk/ "I hope it will work after downloading these folders using svn. here is link where you can find all steps to install gpuocelot http://barefeg.wordpress.com/2012/06/16/how-to-install-gpuocelot-in-ubuntu-12-04
Upvotes: 1
Reputation: 93410
nvcc has an option to turn on the emulation mode and will run the entire application on your CPU. You don't need to have a CUDA enabled GPU for this, of course.
nvcc -deviceemu my_first_app.cu
Upvotes: 3