sublimetext-cuda-cpp
sublimetext-cuda-cpp copied to clipboard
CUDA C++ package for Sublime Text 2 & 3
I believe it should invoke nvcc to interpret the cuda commands properly instead of g++
```cuda void launchMyKernel(MyKernelParams *kernelParams, void *data) { printf("About to launch kernel ...\n"); my_kernel>(data); printf("Kernel launched.\n"); } ```
After invoking a kernel with block dimensions, grid dimensions and shared memory size the following syntax highlighting is broken. When only using two arguments everything works as expected. ![skarmavbild 2015-04-02...