I'm currently migrating a rather harry matching pursuit algorithm (that's part of a bigger image-processing algorithm) to OpenCL.
The algorithm uses a few internal matrices and vectors for processing. Half of them are rather small in size (less than 10 columns), but the other half can get rather big depending on the input matrices (n * n, 2n * n etc.).
The definition of all of the internal matrices depend on the input matrices.
Given that there's no local allocation functionality in the standard, I've approached the memory problem by mapping chunks of memory from global memory to the work-item's private memory. I make sure during context setup that the chunks do not overlap so that data consistency is assured at runtime.
This approach doesn't feel right to me. It feels more like a hack.
Did any of you ran into this kind of situation? What was your solution?