Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently I am new to CUDA I have NVIDIA tesla c2075 card I install CUDA toolkit for windows. Now I don't have visual studio. I want to run and test CUDA programs without using visual studio.

share|improve this question
You can just download and install the free Visual Studio Express edition from microsoft.com – Paul R 19 hours ago

1 Answer

up vote 2 down vote accepted

The only officially supported compiler for use with CUDA on windows is cl.exe, the compiler that ships with visual studio. It also comes with the express (free) versions of visual studio. Is there a reason you don't want to do this?

You can also get the tools and set up a command-line compile environment using the Microsoft Windows SDK.

share|improve this answer
thank you.......... – krishna 19 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.