[Solved] In which case/senario should I use GPU( instead of CPU) to run my program? [closed]


Short answer, Yes Running this type of data will out-perform CPU.

Long answer, if its is ( stream-able), what I mean is that if you can have your data structured in such a way that its iterable and can be emitted one by one to some consuming end, then yes.

But about the programing language you use, I am only able to tell you that in languages such as C and Rust, definitely, you’ll find libraries that support your Gpu Api, like running your code on Cuda threads for Nvidia and so on…

0

solved In which case/senario should I use GPU( instead of CPU) to run my program? [closed]