Using Tesla K40c for rendering locally.

Hello,

I make animations from calculations with ParaView and save the images as **.png files.

My computer has 2 graphics cards:
-Nvidia Quadro K620 for the screen.
-Nvidia Tesla K40c for cuda calculations without screen.

For cuda calculations, the Tesla K40c card is always used automatically. ParaView, on the other hand, always uses the Quadro K620.
This is much slower and makes the screen very sluggish.

So far I have been using a script via Pvserver as a workaround:

mpirun -n 1 /home/chris/Paraview/ParaView-5.9.1-RC1-egl-MPI-Linux-Python3.8-64bit/bin/pvserver --egl-device-index=0 --use-offscreen-rendering --disable-xdisplay-test --server-port=11111 &
mpirun -n 1 /home/chris/Paraview/ParaView-5.9.1-RC1-egl-MPI-Linux-Python3.8-64bit/bin/pvserver --egl-device-index=0 --use-offscreen-rendering --disable-xdisplay-test --server-port=11112 & …

This way I can start several servers and open several windows of ParaView and run the animations in parallel.

This works with many windows but brings a considerable overhead.

Is there a direct way to run the calculations of ParaView exclusively on the Tesla K40c card (without starting Pserver)?

Greetings

Christian

Does your tesla card has a DISPLAY associated with it ?

No, Tesla has no output for a screen, its for calculation only. Nvidia x-server settings show only screen 0.

Christian

You should be able to use EGL then: ParaView: ParaView and Offscreen Rendering

Thanks for the answer,

unfortunately the link doesn’t help me since I want to render locally. I found another similar link:

I can’t do anything with this link either. As I wrote in the first post I can use the workaround via pvserver and use egl.
But this is exactly what I want to avoid because of the overhead.

The compiled binaries with “egl” do not include a “paraview” client. The versions with “paraview” client do not contain egl.

Therefore I need the exact procedure to start (or configure) the “paraview” client so that the paraview client can choose the graphics card to be used locally for rendering.

TESLA = 0
QUADRO = 1

Greetings

Christian

You cannot use a graphic card without a display and not use pvserver.

You can use pvserver locally.