Welcome, Guest. Please Login
YaBB - Yet another Bulletin Board
 
  HomeHelpSearchLogin  
 
HyPhy MPI - Is it MPI-ing? (Read 3122 times)
EmmaH
YaBB Newbies
*
Offline


Curious HyPhy user

Posts: 4
HyPhy MPI - Is it MPI-ing?
Oct 11th, 2012 at 3:24am
 
Apologies in advance that this might be a naive question.

I'm working under Andy Leigh Brown at Edinburgh, with HyPhy installed on Eddie (I believe Sergei did this himself a few years ago).

The original version, in Sergei's space on Eddie, seems to have problems running GADatedClock.bf with multiple nodes using MPI (it will run if I mpirun HYPHYMPI but ask only for 1 node). This version is from 2009 and I found quite a few differences from the current code in the file where the error seemed to be originating, so I have compiled and installed the latest HyPhy MPI code onto Eddie.

The new version seems to be running without errors. However, in the old version, HyPhy printed out a message to each node (in the message.log.mpinode files):
Quote:
"[MPI] Entered mpiNormalLoop"

And also often printed out:
Quote:
Row and/or column partition is empty. All the data will be used by default.


So I knew that HyPhy seemed to be successfully accessing each node. However, on the new version, I get no such messages in the message.log.mpinode files.

Is this simply how it is now, or is HyPhy not using the nodes for some reason? I have run the mpiTest.sh file which I found on this forum, and that seems to run sucessfully. Is there any way I can know for sure that HyPhy is being able to use the other nodes (force it to print something, perhaps?)?

Apologies again if there is an obvious way to figure this out!

Thank you,
Emma
Back to top
 
 
IP Logged
 
Sergei
YaBB Administrator
*****
Offline


Datamonkeys are forever...

Posts: 1658
UCSD
Gender: male
Re: HyPhy MPI - Is it MPI-ing?
Reply #1 - Oct 11th, 2012 at 10:35am
 
Hi Emma,

We have reduced the amount of stuff that HyPhy prints to message.log files by default, so the fact that you don't see a status message doesn't mean that HyPhy isn't running on a remote node.

You can always have HyPhy processes print something to process-specific files, for example by adding something like this to the code that will be executed by remote nodes.

Code:
diagFile = "/tmp/HyPhy_CheckAlive" + MPI_NODE_ID;
fprintf (diagFile, CLEAR_FILE, "Node ", MPI_NODE_ID, " is alive");
 



If mpiTest.bf works, then HyPhy is able to communicate with remote nodes.

Sergei

Back to top
 

Associate Professor
Division of Infectious Diseases
Division of Biomedical Informatics
School of Medicine
University of California San Diego
WWW WWW  
IP Logged
 
EmmaH
YaBB Newbies
*
Offline


Curious HyPhy user

Posts: 4
Re: HyPhy MPI - Is it MPI-ing?
Reply #2 - Oct 16th, 2012 at 5:32am
 
Dear Sergei,
Thank you for your advice and the code, it does indeed seem that HyPhy is able to access the nodes, as you said.
Thanks again,
Emma
Back to top
 
 
IP Logged