i would like to start stating that i know nothing of OpenCL/GPU programming but i am a advanced C# (general .Net) programmer without fear of C++ and i would like to learn OpenCL/GPU programming... my question is... where do i start?!? what should i download?!? is there a way to program OpenCL/GPU on the Visual Studio (on C#)!?! like... hello world stuff... tks all
feedback
|
|
The best site I've found for a clear introduction to how GPU programming is different from CPU programming is this site: http://www.macresearch.org/opencl Even though these videos are done showing NVIDIA style cards, the important concepts of:
apply equally to AMD or NVIDIA and are crucial for starting to change the way you think about how to structure your algorithm to get performance improvement on the GPU. | |||
feedback
|
|
http://developer.amd.com/zones/OpenCLZone/pages/default.aspx Assuming you want to do opencl rather than cuda then this has a whole bunch of intro video tutorials. There is a similar set at NVidia - although they have more CUDA based stuff. If you want to do GPL programming then getting a sample app that can dump opencl/cuda code into a GPU is the simple part. You also have to learn the opencl/cuda language then you have to learn how to think about algorithms in parallel and how to test/measure the results. There isn't a 'use GPU' push button that instantly makes your code 100x faster | |||||
feedback
|
|
I would say check out OpenTK and their C# bindings to get a jumpstart on OpenCL. Look at OpenCL's website to get the standard C or C++ bindings. Learning OpenCL, there's various resources.. not a ton. I found following this helpful. | ||||
|
feedback
|