Re: [Paraview] Multiple GPUs per node

2015-05-11 Thread John Moore
___ > From: ParaView [paraview-boun...@paraview.org] on behalf of John Moore > [johnpmoor...@gmail.com] > Sent: 08 May 2015 17:03 > To: paraview@paraview.org > > Subject: [Paraview] Multiple GPUs per node > > I am trying to take advantage of all four GPUs on a 32 node Amazon ec2 &g

Re: [Paraview] Multiple GPUs per node

2015-05-11 Thread Burlen Loring
un...@paraview.org] on behalf of John Moore [johnpmoor...@gmail.com] Sent: 08 May 2015 17:03 To: paraview@paraview.org Subject: [Paraview] Multiple GPUs per node I am trying to take advantage of all four GPUs on a 32 node Amazon ec2 cluster. However, I seem to only be able to utilize the first G

Re: [Paraview] Multiple GPUs per node

2015-05-10 Thread srikanth.nagella
...@paraview.org] on behalf of John Moore [johnpmoor...@gmail.com] Sent: 08 May 2015 17:03 To: paraview@paraview.org Subject: [Paraview] Multiple GPUs per node I am trying to take advantage of all four GPUs on a 32 node Amazon ec2 cluster. However, I seem to only be able to utilize the first GPU. I

[Paraview] Multiple GPUs per node

2015-05-08 Thread John Moore
I am trying to take advantage of all four GPUs on a 32 node Amazon ec2 cluster. However, I seem to only be able to utilize the first GPU. I run pvserver as follows: 1) Manually start an X display with the command : sudo X :0 & 2) run pvserver with the following command (using OpenMPI's mpirun

Re: [Paraview] Multiple GPUs Per Node

2013-09-30 Thread Favre Jean
Bingo! using '/bin/hostname' did the trick. thanks Utkarsh. - Jean ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check

Re: [Paraview] Multiple GPUs Per Node

2013-09-30 Thread Utkarsh Ayachit
Jean, If you manually run "hostname" on the machine does it produce a valid output? Also try using the full path to the hostname executable in the Popen() call. Utkarsh On Mon, Sep 30, 2013 at 1:22 PM, Favre Jean wrote: > I read on the wiki about a script to execute and display the hostname an

[Paraview] Multiple GPUs Per Node

2013-09-30 Thread Favre Jean
I read on the wiki about a script to execute and display the hostname and DISPLAY of each rank of a parallel pvserver job. import os import subprocess display = os.getenv('DISPLAY') hostname = subprocess.Popen(['hostname'], stdout=subprocess.PIPE).communicate()[0].strip() print hostname, displa