vote up 6 vote down star
4

The question says it all really. I'm hoping that I don't have to write the code in a c++ .dll and then call it from managed code.

flag

73% accept rate

3 Answers

vote up 1 vote down check

With a quick googling, I found this called Accelerator. Its a Microsoft Research project found here.

link|flag
vote up 0 vote down

You can write code for the GPU only using a shading language. All of the shading languages are proper languages (it's not C++, .NET languages or anything else) on their own but they are very similar to C++.

Most common shading languages are:

  • GLSL (for OpenGL)

  • Cg (the nVidia shading language compatible with both directX and OpenGL)

  • HLSL (microsoft shading language for directX).

You need to write the code you want to run on the GPU in your shading language then dynamically compile and download to the GPU. The code you use to dynamically compile and download is usually any code that supports directX/OpenGL stuff (there's Java, .NET and C++ APIs as far as I know - most people uses C++ though so most of the samples you'll find will be written in C++).

link|flag
vote up 0 vote down

One thing I can tell you for sure: as of December of 2008, Nvidia and ATI did not have managed classes for their GPUs. I don't know if they have plans for this any time soon.

link|flag
I don't think it makes sense for them to worry about managed code. If you are using the GPU for computations, you obviously are looking for very fast code. I think writing a wrapper around the API probably would be the best hope. – Godeke Jan 22 '09 at 19:59

Your Answer

Get an OpenID
or

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