cuda-api-wrappers
cuda-api-wrappers copied to clipboard
Actually write in the code for the IPC module example program
By mistake, the examples/ directory has a committed skeleton of a test program for the IPC CUDA features via our IPC wrappers. The program currently does nothing, but has a bunch of comments indicating what it should be able to do.
The code for this should be filled in. Of course, the problem is, "processes" are meaningless in C++. We would need to either assume a POSIX environment (perhaps using CMake to test for this? Or just leave it in the .cpp file?), or use Boost::Process. We'll probably stick to the first option for now.