GPU Python Accelerated Data Building

I have a general question about using CUDA acceleration in Python. Is it possible to speed up the construction of data generated by the matplotlib command using CUDA? Any web links / documents / examples are greatly appreciated.

+6
source share
1 answer

Maybe not with CUDA, but if you're interested in using the power of your GPU, check out Vispy . On the Vispy page:

"Vispy leverages the processing power of modern graphics processing units (GPUs) through the OpenGL library to display very large datasets."

And this is very good: screengrab : http://screencast.com/t/e16BG1iccdw

+8
source

Source: https://habr.com/ru/post/984595/


All Articles