简体   繁体   中英

how can i work with my GPU in python Visual Studio Code

Hello I know that the key to analyzing data and working with artificial intelligence is to use the gpu and not the cpu. The problem is that I don't know how to use it with Python in the visual studio code, I use Ubuntu, I already have nvidia installed

You have to use with the libraries that are designed to work with the GPUs.

You can use Numba to compile Python code directly to binary with CUDA/ROC support, but I don't really know how limiting it is.

Another way is to call APIs that are designed for parallel computing such as OpenCL, there is PyOpenCL binding for this.

A bit limiting, but sometimes valid way - OpenGL/DirectX compute shaders, they are extremely easy, but not so fast if you need to transfer data back and forth in small batches.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM