Tarandeep Kalra
Tarandeep Kalra

Reputation: 377

GPU Accelerated data plotting in Python

I have a general question regarding using CUDA acceleration in Python. Is it possible to accelerate the plotting of data generated by matplotlib command using CUDA ? Any weblinks/documents/examples are much appreciated.

Upvotes: 17

Views: 24766

Answers (1)

Rich Signell
Rich Signell

Reputation: 16385

Maybe not with CUDA, but if you are interested in harnessing the power of your GPU, check out Vispy. From the Vispy page:

"Vispy leverages the computational power of modern Graphics Processing Units (GPUs) through the OpenGL library to display very large datasets".

And it does that very nicely: screengrab: http://screencast.com/t/e16BG1iccdw

Upvotes: 28

Related Questions