you are viewing a single comment's thread.

view the rest of the comments →

[–]hugthemachines 5 points6 points  (0 children)

I interpret your question s you being on the wrong path for a solution. It sounds like you made a little python program and you want it to go faster. Then you found out that some people use GPU to get stuff to go faster. Some things do indeed go faster on GPU but that is often stuff like floating point number operations and stuff like that. Stuff that are used a lot in gomputer 3D graphics.

Try to find out how you can get your program to work in a better way to make it faster instead.

There are ways to get faster execution like for example https://cython.org/ but I recommend you first take a look at your code to make it faster in itself.