neural network processing on gpu

Hello list!

One though i had yesterday, was to implement a neural network on GPU. The network will be constructed on host (using only supervised learning for now; not unsupervised) and then copied to device memory.

So, the main difficulty is to store the network in a two-dimensional array. In my experience, the usage of pointers in CUDA reduce the performance for many reasons (you have to construct all the pointers to device that is difficult and very slow, etc.).
Furthermore, by mapping the data structure to a table, I could bound to a texture
and gain significant performace from the texture fetches.

What do you think?

I think you have to look here : [url=“http://www.nvidia.com/object/cuda_showcase.html#apps”]Page Not Found | NVIDIA

I believe you can find the sourcecode there : [url=“A Neural Network on GPU - CodeProject”]http://www.codeproject.com/KB/graphics/GPUNN.aspx[/url]

This is very interesting, I was also looking into NN on the GPU but never went on with it. Didn’t saw this article pass by. This looks very promising for the upcoming autonomic robots.