Re: [OMPI users] Calling MPI from a CGI script

2010-05-04 Thread Jeff Squyres
On Apr 29, 2010, at 2:25 PM, Srujan Enaganti wrote: > I am trying to run an MPI program as a CGI Python script which is running > over an Apache web server running locally on my computer. > > I have a test.py file which has the code snippet > > cmd = 'opt/local/bin/mpiexec -np 10 testmpi' > outp

Re: [OMPI users] Calling MPI from a CGI script

2010-04-30 Thread Trent Creekmore
Sent: Thursday, April 29, 2010 2:26 PM To: us...@open-mpi.org Subject: [OMPI users] Calling MPI from a CGI script Hi, I am trying to run an MPI program as a CGI Python script which is running over an Apache web server running locally on my computer. I have a test.py file which has the code snippet

[OMPI users] Calling MPI from a CGI script

2010-04-29 Thread Srujan Enaganti
Hi, I am trying to run an MPI program as a CGI Python script which is running over an Apache web server running locally on my computer. I have a test.py file which has the code snippet cmd = 'opt/local/bin/mpiexec -np 10 testmpi' output = commands.getoutput(cmd) When I run the file test.py