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

link|improve this question

44% accept rate
Do you own a ATI or nvidia card? – Scott Chamberlain Dec 13 '10 at 17:31
i have both right now... in 1 pc i have a ati and in another i have a nvidia... – Leonardo Dec 13 '10 at 17:37
.Net has XNA Framework, which is xbox game making. u should chck it out. – Bonshington Dec 13 '10 at 19:52
feedback

3 Answers

up vote 6 down vote accepted

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:

  • many threads running the exact same instructions in lock-step (even if some code is written with if-else constructs), and

  • coalesced memory access

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.

link|improve this answer
Sorry, I think this question is mainly about getting started coding as opposed to designing. The MacResearch series is great for starting to think in GPU terms but is not very informative for coding. It is also rather dated now. I would recommend the series, however. – Garet Claborn Feb 6 '11 at 14:21
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

link|improve this answer
i was hoping for a more direct answer... like... "go to that adress and download that... if u have a ATI video card go there... if u have a Geforce go in that site" sort of thing... – Leonardo Dec 13 '10 at 17:15
ok... so where do i start?!? what do i have to do to my programs so they use the power of the GPU?!? – Leonardo Dec 13 '10 at 17:29
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.