I'm writting a opengl C program, and I know that most graphical jobs are done by the GPU. My question is, can I use the GPU to compute stuff that is not graphic-related? For example, compute 1 + 2 + 3 + ... + 100 = ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
You can by using OpenCL or Computeshaders (thats the DX name, but I think theres something similar in openGl). But in general it only makes sense for algorithms that are easy to parallelize and way bigger than your example. |
|||
|
|
|
|||
|
|
|
I am not an Expert on GPUs but as far as I know YES. Since the GPU is optimized for the graphic operations I don't know about the performance and scalability. Check this article. |
|||
|
|