-2

I've been trying to improve the performance of my python scripts and would like to run some using my computer's built-in GPU. However, my computer is Windows 10 and its GPU is not CUDA compatible. From what I've seen, it seems that the GPU must be CUDA compatible in order for it to run python scripts. Is there any way to utilize my GPU for said purposes? If not, are there other programming languages in which I can do this?

Jim Doe
  • 1
  • 7

1 Answers1

0

The GPU is a proccessing unit for graphics. It most likely won't help except for drawing polygons, transfering data, or massive data sets. The closest you can get is importing a module (depending on your needs), that uses C++ to interact with the GPU (such as OpenCL), or coding interactions yourself (much more complicated).

To answer your 2nd question, C++ or C# should work with your GPU. Please specify what script you are trying to run for more detail Good luck!

Jonathan
  • 185
  • 9
  • Anyway, my point is you might just need to optimize your code. There a few cases where the GPU is the main issue in performance. I would also recommend Numba for data. – Jonathan Feb 14 '23 at 02:35