Is there an IDE that works with CUDA on mac osx lion?

I am trying to learn Cuda and its very interesting, but I am having problems creating code without any help from the IDE. I know Java / Python, but I'm not familiar with C / C ++, so I use eclipse and Xcode to help me with commands and finding things (using code completion). I can't seem to get these options for CUDA?

I have seen examples and can find them (nvcc works), but without an IDE to help catch some of my mistakes. I lost a bit of editing the code only in a text editor. I found the toolkit plugin for eclipse, but although it seems to be installed, I think it is for the old eclipse build, because most of the parameters in the instructions do not match my version (Indigo). Nvidia has a plug-in for Visual Studio only on its website (I would prefer not to install windows on my Mac to use Cuda).

Sorry if this sounds bad, but I'm curious how people develop cuda on Mac. I don’t care which IDE I use, as long as it helps me see the parameters and warn me if I have syntax problems, etc. (I’m not the best programmer, but switching the IDE for me is just a matter of searching where everything is so, I’m really okay with any solution, as long as it helps me when I study).

+5
source share
5 answers

Qt Creator !

You can read Qt Creator + CUDA + Linux for inspiration on how to set up the build environment on Mac OS X.

+2
source

Nsight Eclipse Edition is available as part of the CUDA Toolkit 5.0 (no additional download required).

+3
source
+1

XCode CUDA. . nvidia.com

+1

Visual Studio + code is an extension: https://github.com/gangliao/VS-Code-Cuda . For me, Visual Studio Code is my favorite IDE for every language I found there.

+1
source

All Articles