]> AND Private Git Repository - hpcc2014.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Corrections %lu
authorRCE <cramamonjisoa@bilbo.iut-bm.univ-fcomte.fr>
Sun, 27 Apr 2014 20:35:06 +0000 (22:35 +0200)
committerRCE <cramamonjisoa@bilbo.iut-bm.univ-fcomte.fr>
Sun, 27 Apr 2014 20:35:06 +0000 (22:35 +0200)
hpcc.tex

index 865fb94f6c32d3075799537f4e8d5972cff7911f..2c7217b48d16c2936087fa8391e04fb55cdbc135 100644 (file)
--- a/hpcc.tex
+++ b/hpcc.tex
@@ -448,13 +448,13 @@ and with the addition of the primitive MPI\_Test was needed to avoid a memory fa
 \CER{On voulait en fait montrer la simplicité de l'adaptation de l'algo a SimGrid. Les problèmes rencontrés décrits dans ce paragraphe concerne surtout le mode async}\LZK{OK. J'aurais préféré avoir un peu plus de détails sur l'adaptation de la version async} 
 \CER{Le problème majeur sur l'adaptation MPI vers SMPI pour la partie asynchrone de l'algorithme a été le plantage en SMPI de Waitall après un Isend et Irecv. J'avais proposé un workaround en utilisant un MPI\_wait séparé pour chaque échange a la place d'un waitall unique pour TOUTES les échanges, une instruction qui semble bien fonctionner en MPI. Ce workaround aussi fonctionne bien. Mais après, tu as modifié le programme avec l'ajout d'un MPI\_Test, au niveau de la routine de détection de la convergence et du coup, l'échange global avec waitall a aussi fonctionné.}
 Note here that the use of SMPI functions optimizer for memory footprint and CPU usage is not recommended knowing that one wants to get real results by simulation.
-As mentioned, upon this adaptation, the algorithm is executed as in the real life in the simulated environment after the following minor changes. First, all declared 
-global variables have been moved to local variables for each subroutine. In fact, global variables generate side effects arising from the concurrent access of 
-shared memory used by threads simulating each computing unit in the SimGrid architecture. Second, the alignment of certain types of variables such as ``long int'' had
-also to be reviewed.
+As mentioned, upon this adaptation, the algorithm is executed as in the real life in the simulated environment after the following minor changes. First, the scope of all declared 
+global variables have been moved to local to subroutine. Indeed, global variables generate side effects arising from the concurrent access of 
+shared memory used by threads simulating each computing unit in the SimGrid architecture. 
+%Second, the alignment of certain types of variables such as ``long int'' had also to be reviewed.
 \AG{À propos de ces problèmes d'alignement, en dire plus si ça a un intérêt, ou l'enlever.}
-\CER{Ce problème fait partie des modifications que j'ai dû faire dans l'adaptation du programme MPI vers SMPI. IL découle de la différence de la taille des mots en mémoire : en 32 bits, pour les variables declarees en long int, on garde dans les instructions de sortie (printf, sprintf, ...) le format \%lu sinon en 64 bits, on le substitue par \%llu.} 
- Finally, some compilation errors on MPI\_Waitall and MPI\_Finalize primitives have been fixed with the latest version of SimGrid.
+\CER{Ce problème fait partie des modifications que j'ai dû faire dans l'adaptation du programme MPI vers SMPI. IL découle de la différence de la taille des mots en mémoire : en 32 bits, pour les variables declarees en long int, on garde dans les instructions de sortie (printf, sprintf, ...) le format \%lu sinon en 64 bits, on le substitue par \%llu. La phrase a été enlevé.
+Second, some compilation errors on MPI\_Waitall and MPI\_Finalize primitives have been fixed with the latest version of SimGrid.
 In total, the initial MPI program running on the simulation environment SMPI gave after a very simple adaptation the same results as those obtained in a real 
 environment. We have successfully executed the code in synchronous mode using parallel GMRES algorithm compared with our multisplitting algorithm in asynchronous mode after few modifications. 
 
@@ -637,9 +637,9 @@ Note that the program was run with the following parameters:
 
        - Processor unit power : 1.5 GFlops;
 
-       - Intracluster network : bandwidth = 1,25 Gbits/s and latency = 5E-05 ms;
+       - Intracluster network : bandwidth = 1,25 Gbits/s and latency = \np{E-5} ms;
 
-       - Intercluster network : bandwidth = 5 Mbits/s and latency = 5E-03 ms;
+       - Intercluster network : bandwidth = 5 Mbits/s and latency = 5.\np{E-3} ms;
 \end{itemize}