Re: [OMPI users] Need help in Perl with MPI

2006-09-30 Thread Abhishek Pratap
Hello Prakash Thanks for replying man .I will try and put my issue in a detailed way. See i have a MPI installed on 4 machines networked. with one being the server on which i have a Mysql database installed. Uptill now i had a perl program running serially on the server with string comparison f

Re: [OMPI users] Need help in Perl with MPI

2006-09-29 Thread Prakash Velayutham
Hello, Yes. We do this all the time. But you should understand that the MySQL database server becomes your bottle neck in this parallel environment. In our case, we run the database servers also in parallel on the scheduler assigned nodes. But this is very much application-specific. Thanks, Praka

Re: [OMPI users] Need help in Perl with MPI

2006-09-29 Thread Brock Palen
On Sep 29, 2006, at 11:54 AM, Abhishek Pratap wrote: Hello All can i execute a perl program over MPI. My program has to access Mysql database for accessing the data during runtime. Is it Possible here in perl i can use Perl's Parallel::MPI (or Parallel::MPI::Simple) but will they b

Re: [OMPI users] Need help in Perl with MPI

2006-09-29 Thread Abhishek Pratap
Hello All can i execute a perl program over MPI. My program has to access Mysql database for accessing the data during runtime. Is it Possible here in perl i can use Perl's Parallel::MPI (or Parallel::MPI::Simple) but will they be able to access the mysql database simultaneously from the serv

Re: [OMPI users] Need help in Perl with MPI

2006-09-29 Thread Prakash Velayutham
Use Perl's Parallel::MPI (or Parallel::MPI::Simple) module. Get it from CPAN. Documentation should be good enough to start with. Prakash Abhishek Pratap wrote: > Can i execute a code written in perl over with MPI. > > My code also access a database present locally on the server. > > I am new to