<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><div dir="ltr"><span style="font-family:arial,sans-serif;font-size:13px">when i running the following program, i have this error (</span><font face="arial, sans-serif">error C4703: variable de pointeur locale potentiellement non initialisée 'tab_indice' utilisée <span style="white-space:pre">and error C4703: variable de pointeur locale potentiellement non initialisée 'tab_taille' utilisée </span></font><span style="font-family:arial,sans-serif">):</span><div><span style="font-family:arial,sans-serif">program:</span></div><div><div style=""><font face="arial, sans-serif">/////////////////////////////////////////////</font></div><div style=""><font face="arial, sans-serif">//<span class="" style="white-space:pre">   </span>MPI_Scatterv.c</font></div><div style=""><font face="arial, sans-serif">//  test de la fonction MPI_Scatterv</font></div><div style=""><font face="arial, sans-serif">/////////////////////////////////////////////</font></div><div style=""><font face="arial, sans-serif"><br></font></div><div style=""><font face="arial, sans-serif">#include <stdio.h></font></div><div style=""><font face="arial, sans-serif">#include <stdlib.h></font></div><div style=""><font face="arial, sans-serif">#include <mpi.h></font></div><div style=""><font face="arial, sans-serif"><br></font></div><div style=""><font face="arial, sans-serif">#define DIMENSION 10</font></div><div style=""><font face="arial, sans-serif"><br></font></div><div style=""><font face="arial, sans-serif">int main(int argc, char** argv)</font></div><div style=""><font face="arial, sans-serif">{</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">     </span>int myrank, i, n_procs;</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">     </span>int * sendbuf;      //buffer à disperser</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">    </span>int * tab_indice;   //indice de début de chaque subdivision</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">   </span>int * tab_taille;   //nombre d'éléments à envoyer</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">   </span>// pour chaque processus</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">    </span>int * rbuf;         //buffer de reception</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">       </span>int taille;         //taille de la partie reçue</font></div><div style=""><font face="arial, sans-serif"><br></font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">        </span>//Initialisation de MPI</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">     </span>MPI_Init(&argc, &argv);</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">     </span>MPI_Comm_size(MPI_COMM_WORLD, &n_procs);</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">        </span>MPI_Comm_rank(MPI_COMM_WORLD, &myrank);</font></div><div style=""><font face="arial, sans-serif"><br></font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre"> </span>if (myrank == 0) {</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">          </span>//allocation mémoire</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">               </span>sendbuf = (int *)malloc(n_procs*DIMENSION*sizeof(int));</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">             </span>tab_indice = (int *)malloc(n_procs*sizeof(int));</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">            </span>tab_taille = (int *)malloc(n_procs*sizeof(int));</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">            </span>//remplissage du buffer à disperser</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">                </span>for (i = 0; i<n_procs*DIMENSION; i++) sendbuf[i] = i;</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">            </span>//initialisation des subdivisions</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">           </span>for (i = 0; i<n_procs; i++){</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">                     </span>//nombre d'éléments à envoyer</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">                    </span>tab_taille[i] = DIMENSION - i;</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">                      </span>//indice de début du processus i </font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">                     </span>// = celui de i-1 + nombre d'éléments</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">                 </span>// envoyés par i-1</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">                 </span>if (i != 0) tab_indice[i] = tab_indice[i - 1] + tab_taille[i - 1];</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">                      </span>else tab_indice[i] = 0;</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">             </span>}</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">   </span>}</font></div><div style=""><font face="arial, sans-serif"><br></font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">   </span>//communication de la taille de la partie reçue à chaque processus</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">        </span>MPI_Scatter(tab_taille, 1, MPI_INT, &taille, 1, MPI_INT, 0, MPI_COMM_WORLD);</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">    </span>//allocation du buffer de reception</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre"> </span>rbuf = (int *)malloc(taille*sizeof(int));</font></div><div style=""><font face="arial, sans-serif"><br></font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">   </span>//dispersion</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">        </span>MPI_Scatterv(&sendbuf, tab_taille, tab_indice, MPI_INT, rbuf,</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">           </span>DIMENSION, MPI_INT, 0, MPI_COMM_WORLD);</font></div><div style=""><font face="arial, sans-serif"><br></font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">     </span>//affichage</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre"> </span>printf("processus %d : [ ", myrank);</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">      </span>for (i = 0; i<taille; i++) printf("%d ", rbuf[i]);</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">     </span>printf("]\n");</font></div><div style=""><font face="arial, sans-serif"><br></font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">    </span>//desallocation mémoire</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">    </span>free(rbuf);</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre"> </span>if (myrank == 0) {</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">          </span>free(sendbuf);</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">              </span>free(tab_indice);</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">           </span>free(tab_taille);</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">   </span>}</font></div><div style=""><font face="arial, sans-serif"><br></font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">   </span>MPI_Finalize();</font></div><div style=""><font face="arial, sans-serif"><span class="" style="white-space:pre">     </span>exit(EXIT_SUCCESS);</font></div><div style=""><font face="arial, sans-serif">}</font></div></div></div>