I have a visual studio 2010 c++ solution (with cuda and nsight), it builds just fine, but I try to run it, it tells me this:
The program can't start because cudart32_31_9.dll is missing from your computer. Try reinstalling the program to fix this problem.
I’ve looked and I have cudart32_31_9.dll and cudart.lib on my computer and in my linker options, I’ve set the Additional Dependencies with the link to my cudart.lib (which is suppose to be “linked” with the dll in question).
I’ve looked a on Google, but the only things I found seems to be related to a program called “Folding”… which isn’t quite my problem.
Any hint would be appeciated 🙂
I’m assuming it’s a “typo”, but there is no point in linking against a DLL. To solve your main problem however, make sure that cudart32_31_9.dll is either in the directory of your executable, or that its directory is part of the PATH environment variable.