<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD>
<BODY>
<DIV dir=ltr align=left><SPAN class=713233622-29012007><FONT face=Arial 
color=#0000ff size=2>It means that the user must call the function from all 
processes. The implementation may implement it by having each process read a 
distinct portion of the data and send it to other processes.</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=713233622-29012007><FONT face=Arial 
color=#0000ff size=2></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=713233622-29012007><FONT face=Arial 
color=#0000ff size=2>Rajeev</FONT></SPAN></DIV><BR>
<BLOCKQUOTE 
style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #0000ff 2px solid; MARGIN-RIGHT: 0px">
  <DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left>
  <HR tabIndex=-1>
  <FONT face=Tahoma size=2><B>From:</B> owner-mpich-discuss@mcs.anl.gov 
  [mailto:owner-mpich-discuss@mcs.anl.gov] <B>On Behalf Of </B>Luiz 
  Mendes<BR><B>Sent:</B> Monday, January 29, 2007 7:41 AM<BR><B>To:</B> 
  mpich-discuss<BR><B>Subject:</B> [MPICH] MPI_File_write_all or read_all 
  doubts<BR></FONT><BR></DIV>
  <DIV></DIV>Hi all,<BR><BR>I read about MPI_File_read_all and write 
  correpondant, and the text says this operation perform reads using all 
  processes defined in a certain group.<BR><BR>Well i have saw this operation is 
  slower than file_read non collective version. Is it right? <BR><BR>If i define 
  3 processes during mpirun, if i put this operation MPI_File_read_all in 
  algorithm, this one will be executed 3 times, 3 times all processes will read 
  all file?<BR><BR>Or it will read once a time? I recorded the time, and it 
  shows three diferent times, then i think it have executed 3 times. <BR>The 
  part of code is below<BR><BR>&nbsp;&nbsp;&nbsp; MPI_File_open(MPI_COMM_WORLD, 
  "Wtupi.dat", MPI_MODE_RDONLY, MPI_INFO_NULL, &amp;fh2);<BR>&nbsp;&nbsp;&nbsp; 
  MPI_File_set_view(fh2, 0, MPI_INT, MPI_INT, "native",MPI_INFO_NULL); 
  <BR>&nbsp;&nbsp;&nbsp; start=MPI_Wtime();<BR>&nbsp;&nbsp;&nbsp; 
  MPI_File_read_all(fh2, buf2, 900000, MPI_INT, 
  MPI_STATUS_IGNORE);<BR>&nbsp;&nbsp;&nbsp; 
  tempo=MPI_Wtime()-start;<BR>&nbsp;&nbsp;&nbsp; printf("\nTime spent for read 
  operation %f",tempo);<BR>&nbsp;&nbsp;&nbsp; }&nbsp;&nbsp;&nbsp; 
  <BR><BR>Thanks<BR>Luiz<BR><BR><BR></BLOCKQUOTE></BODY></HTML>