views:

568

answers:

2

I'm thinking in particular of processing primitives, things like FFT, convolution, correlation, matrix mathematics, any kind of machine vision primitives. I haven't been able to find anything along these lines, does anyone know of any good projects that have sprung up?

+2  A: 

I think that these kinds of libraries will be coming soon but are not yet widely available because OpenCL is so new. That being said, Apple has released an FFT library for OpenCL:

http://developer.apple.com/mac/library/samplecode/OpenCL%5FFFT/index.html

Eric
+2  A: 

This isn't a library per say (yet) but I've developed a bunch of matrix multiplication examples for a research project. It contains a vectorized Matrix Multiply kernel that is faster than the example ones that NVIDA provides for OpenCL and CUDA. It also contains a few helpful functions for running OpenCL programs, etc

The source code and project is here: http://sites.google.com/site/jhosite/csc5551/research-project

jho
You forgot to add any license terms to that code. :)
dwf