tags:

views:

39

answers:

2

Is there any CUDA library that performs comparison/search operation.

+1  A: 

CUDA is an API for creating libraries that run on the NVidia GPU. Consequently, any operations that are to be performed must be custom programmed. There are not a wide range of open-source libraries available.

Programmers use 'C for CUDA' (C with NVIDIA extensions), compiled through a PathScale Open64 C compiler, to code algorithms for execution on the GPU.

http://en.wikipedia.org/wiki/CUDA

Robert Harvey
+1  A: 

You could look at Thrust, which includes a binary_search operation and is very easy to use.

Tom