Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GPU Accelerated data plotting in Python

Tags:

python

plot

cuda

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.

like image 511
Tarandeep Kalra Avatar asked Apr 02 '15 03:04

Tarandeep Kalra


1 Answers

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

like image 61
Rich Signell Avatar answered Oct 12 '22 10:10

Rich Signell