Link to home
Start Free TrialLog in
Avatar of InteractiveMind
InteractiveMindFlag for United Kingdom of Great Britain and Northern Ireland

asked on

CUDA emulator?

I read in Dr Dobbs that there's an emulator for CUDA development, but I've had no luck actually finding it. I'm hoping someone might have better luck than me...

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of Mike_Carroll
Mike_Carroll
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You can also link in a CUDO emulator. Just add :

 -deviceemu

to the Custom Build Step command line.

This will link-in a CUDA device emulator that runs on the host. The emulator becomes the target for all the CUDA API calls and executes the kernel. The program will run just like a CUDA device is there, except slower
Avatar of InteractiveMind

ASKER

Thank you