Can Dash use a GPU?

Can Dash use a GPU to speed up performance? Do I need to do anything at the code level to have Dash take advantage of a GPU (if one is available) or will the code do that by default?

Hello @jmillz,

You can use the video card to render graphs with render_mode=‘webgl’,
Check out for examples here, and there are other options, check the performance on graph rendering here.

Could you elaborate on what part of the code that you intend to accelerate via GPU? Is it calculations, visualizations, …?