Possible Duplicate:
write code to run in GPU
I have already a code writen in C++ but it’s really slow so I want to run it at the GPU. Is that possible? , how?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As far as I’m aware, not easily. You can find the CUDA library which allows you GPU access here.
From there, you’ll find a GPU API that allows you to interact with it. I haven’t done this myself, but from what I understand, it’s not a very straightforward port-my-code-over process. It does make your code fly if you successfully do it though.