Hi, I’m writing a little library that is supposed to work as a simple wrapper around some CUDA functions I use often, but I’m not sure if my idea of the final library is viable:
- CUDA project DLL
- Client project is a regular C++ console app
- The user can define their own .cu files, which will be compiled correctly
I’m not sure if this is viable, so one of my secondary ideas is just writing a header only library, where the user just copies over the source files, and uses their own CUDA VS project.
Thanks in advance.