I need to use the scan function from cudpp. However, cudpp requires cmake to compile. Is there a way to use the scan function from cudpp into C code for CUDA directly? If so, how do I do that?
Asked
Active
Viewed 197 times
1 Answers
1
You have three possibilities:
- write your own version of scan function,
- try to copy code from cudpp and try to integrate with your project,
- compile cudpp with Cmake and use this library,
- your can use also thrust library (homepage).

Tomasz Dzięcielewski
- 3,829
- 4
- 33
- 47