<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><div dir="ltr"><span style="font-size:16px">Please use this mailing list for discussion MPICH related questions only. If you have general parallel computing questions, please ask it on stack overflow or other generic discussion Forums.</span><br><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr">--</div><div dir="ltr">Huiwei Lu</div></div></div></div></div></div>
<br><div class="gmail_quote">On Sat, Mar 7, 2015 at 5:56 AM, Chafik sanaa <span dir="ltr"><<a href="mailto:san.chafik@gmail.com" target="_blank">san.chafik@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">when I execute my program nothing appears, it must  use a parallelism even for reading our text file !?<br><div>this is my code:</div><div><div>#include <stdio.h></div><div>#include <stdlib.h></div><div>#include "mpi.h"</div><div>#define MAX_LIGNE 40   </div><div>#define MAX_COL    40   </div><div>#define Matrice_adjacence "fichier22.txt" </div><div>#define Matrice_General "fichier111.txt"</div><div>typedef int Matrice[MAX_LIGNE][MAX_COL];</div><div>int main(int argc, char** argv)</div><div>{</div><div><span style="white-space:pre-wrap">      </span>int nbr_proc, rang_proc;<span style="white-space:pre-wrap">        </span></div><div><span style="white-space:pre-wrap"> </span>Matrice  E;</div><div><span style="white-space:pre-wrap"> </span>int  m1, n1;</div><div><span style="white-space:pre-wrap">        </span>FILE * aLire = fopen(Matrice_General, "r");</div><div><span style="white-space:pre-wrap">    </span>if (aLire == NULL)</div><div><span style="white-space:pre-wrap">       </span>{</div><div><span style="white-space:pre-wrap">                </span>printf("No file");</div><div><span style="white-space:pre-wrap">     </span>}</div><div><span style="white-space:pre-wrap">        </span>else</div><div><span style="white-space:pre-wrap">     </span>{</div><div><span style="white-space:pre-wrap">                </span>fscanf(aLire, "%d%d", &n1, &m1);</div><div><span style="white-space:pre-wrap">               </span>for (int i = 0; i < n1; i++) {</div><div><span style="white-space:pre-wrap">                        </span>for (int j = 0; j < m1; j++)</div><div><span style="white-space:pre-wrap">                          </span>fscanf(aLire, "%d", &E[i][j]);</div><div><span style="white-space:pre-wrap">                     </span>fscanf(aLire, "\n");</div><div><span style="white-space:pre-wrap">           </span>}</div><div><span style="white-space:pre-wrap">        </span>}</div><div><span style="white-space:pre-wrap">        </span>fclose(aLire);</div><div><span style="white-space:pre-wrap">   </span>MPI_Init(&argc, &argv);</div><div><span style="white-space:pre-wrap">  </span>MPI_Comm_rank(MPI_COMM_WORLD, &rang_proc);</div><div><span style="white-space:pre-wrap">   </span>MPI_Comm_size(MPI_COMM_WORLD, &nbr_proc);</div><div><br></div><div><span style="white-space:pre-wrap">   </span>printf("Hi from proc %d ", rang_proc);</div><div><br></div><div><span style="white-space:pre-wrap">        </span>MPI_Barrier(MPI_COMM_WORLD);</div><div><span style="white-space:pre-wrap">     </span>MPI_Finalize();</div><div>}</div></div></div>
<br>_______________________________________________<br>
discuss mailing list     <a href="mailto:discuss@mpich.org">discuss@mpich.org</a><br>
To manage subscription options or unsubscribe:<br>
<a href="https://lists.mpich.org/mailman/listinfo/discuss" target="_blank">https://lists.mpich.org/mailman/listinfo/discuss</a><br></blockquote></div><br></div></div>