Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[MBI] Import generator_utils as gen.
[simgrid.git] / teshsuite / smpi / MBI / CollP2PMatchingGenerator.py
index 5a11cef..598667b 100755 (executable)
@@ -1,7 +1,7 @@
 #! /usr/bin/python3
 import os
 import sys
-from generator_utils import *
+import generator_utils as gen
 
 template = """// @{generatedby}@
 /* ///////////////////////// The MPI Bugs Initiative ////////////////////////
@@ -11,17 +11,17 @@ template = """// @{generatedby}@
   Description: @{shortdesc}@
     @{longdesc}@
 
-        Version of MPI: Conforms to MPI 1.1, does not require MPI 2 implementation
+   Version of MPI: Conforms to MPI 1.1, does not require MPI 2 implementation
 
 BEGIN_MPI_FEATURES
-       P2P!basic: @{p2pfeature}@ 
-       P2P!nonblocking: @{ip2pfeature}@
-       P2P!persistent: Lacking
-       COLL!basic: @{collfeature}@ 
-       COLL!nonblocking: Lacking
-       COLL!persistent: Lacking
-       COLL!tools: Lacking
-       RMA: Lacking
+  P2P!basic: @{p2pfeature}@
+  P2P!nonblocking: @{ip2pfeature}@
+  P2P!persistent: Lacking
+  COLL!basic: @{collfeature}@
+  COLL!nonblocking: Lacking
+  COLL!persistent: Lacking
+  COLL!tools: Lacking
+  RMA: Lacking
 END_MPI_FEATURES
 
 BEGIN_MBI_TESTS
@@ -41,8 +41,8 @@ int main(int argc, char **argv) {
   int rank = -1;
   int dest, src;
   int root = 0;
-       int stag = 0, rtag = 0;
-       int buff_size = 1;
+  int stag = 0, rtag = 0;
+  int buff_size = 1;
 
   MPI_Init(&argc, &argv);
   MPI_Comm_size(MPI_COMM_WORLD, &nprocs);
@@ -53,81 +53,81 @@ int main(int argc, char **argv) {
     printf("MBI ERROR: This test needs at least 2 processes to produce a bug!\\n");
 
   int dbs = sizeof(int)*nprocs; /* Size of the dynamic buffers for alltoall and friends */
-       MPI_Comm newcom = MPI_COMM_WORLD;
-       MPI_Datatype type = MPI_INT;
-       MPI_Op op = MPI_SUM;  
+  MPI_Comm newcom = MPI_COMM_WORLD;
+  MPI_Datatype type = MPI_INT;
+  MPI_Op op = MPI_SUM;
 
   @{init1}@
   @{init2}@
   @{init3}@
-       if (rank == 0) {
-               dest=1;src=1;
-       @{operation3}@ /* MBIERROR1 */
-               @{fini3}@
-       @{operation1}@ 
-               @{fini1}@
-       }else if (rank==1) {
-               dest=0;src=0;
-       @{operation2}@ /* MBIERROR2 */
-               @{fini2}@
-       @{operation3}@ 
-               @{fini3}@
-       }
-
-       @{free1}@
-       @{free2}@
-       @{free3}@
-  
-       MPI_Finalize();
+  if (rank == 0) {
+    dest=1;src=1;
+    @{operation3}@ /* MBIERROR1 */
+    @{fini3}@
+    @{operation1}@
+    @{fini1}@
+  }else if (rank==1) {
+    dest=0;src=0;
+    @{operation2}@ /* MBIERROR2 */
+    @{fini2}@
+    @{operation3}@
+    @{fini3}@
+  }
+
+  @{free1}@
+  @{free2}@
+  @{free3}@
+
+  MPI_Finalize();
   printf("Rank %d finished normally\\n", rank);
   return 0;
 }
 """
 
 
-for s in send + isend:
-    for r in recv + irecv:
-        for c in coll:
+for s in gen.send + gen.isend:
+    for r in gen.recv + gen.irecv:
+        for c in gen.coll:
             patterns = {}
             patterns = {'s': s, 'r': r, 'c': c}
             patterns['generatedby'] = f'DO NOT EDIT: this file was generated by {os.path.basename(sys.argv[0])}. DO NOT EDIT.'
-            patterns['p2pfeature'] = 'Yes' if s in send or r in recv else 'Lacking'
-            patterns['ip2pfeature'] = 'Yes' if s in isend or r in irecv else 'Lacking'
-            patterns['collfeature'] = 'Yes' if c in coll else 'Lacking'
+            patterns['p2pfeature'] = 'Yes' if s in gen.send or r in gen.recv else 'Lacking'
+            patterns['ip2pfeature'] = 'Yes' if s in gen.isend or r in gen.irecv else 'Lacking'
+            patterns['collfeature'] = 'Yes' if c in gen.coll else 'Lacking'
             patterns['s'] = s
             patterns['r'] = r
             patterns['c'] = c
-            patterns['init1'] = init[s]("1")
-            patterns['init2'] = init[r]("2")
-            patterns['init3'] = init[c]("3")
-            patterns['fini1'] = fini[s]("1")
-            patterns['fini2'] = fini[r]("2")
-            patterns['fini3'] = fini[c]("3")
-            patterns['free1'] = free[s]("1")
-            patterns['free2'] = free[r]("2")
-            patterns['free3'] = free[c]("3")
-            patterns['operation1'] = operation[s]("1")
-            patterns['operation2'] = operation[r]("2")
-            patterns['operation3'] = operation[c]("3")
+            patterns['init1'] = gen.init[s]("1")
+            patterns['init2'] = gen.init[r]("2")
+            patterns['init3'] = gen.init[c]("3")
+            patterns['fini1'] = gen.fini[s]("1")
+            patterns['fini2'] = gen.fini[r]("2")
+            patterns['fini3'] = gen.fini[c]("3")
+            patterns['free1'] = gen.free[s]("1")
+            patterns['free2'] = gen.free[r]("2")
+            patterns['free3'] = gen.free[c]("3")
+            patterns['operation1'] = gen.operation[s]("1")
+            patterns['operation2'] = gen.operation[r]("2")
+            patterns['operation3'] = gen.operation[c]("3")
 
             # Generate the incorrect matching because of the conditional
-            replace = patterns 
+            replace = patterns
             replace['shortdesc'] = 'Point to point & collective mismatch'
-            replace['longdesc'] = 'Point to point @{r}@ is matched with @{c}@ which causes a deadlock.' 
-            replace['outcome'] = 'ERROR: CallMatching' 
+            replace['longdesc'] = 'The @{s}@ corresponding to the @{r}@ is after @{c}@, while @{r}@ is before @{c}@. This is a deadlock.'
+            replace['outcome'] = 'ERROR: CallMatching'
             replace['errormsg'] = 'P2P & Collective mistmatch. @{r}@ at @{filename}@:@{line:MBIERROR2}@ is matched with @{c}@ at @{filename}@:@{line:MBIERROR1}@ wich causes a deadlock.'
-            make_file(template, f'CallOrdering_{r}_{s}_{c}_nok.c', replace)
+            gen.make_file(template, f'CallOrdering_{r}_{s}_{c}_nok.c', replace)
 
             # Generate the incorrect code depending on buffering
-            #  replace = patterns 
+            #  replace = patterns
             #  replace['shortdesc'] = 'Point to point & collective mismatch'
-            #  replace['longdesc'] = 'Point to point @{s}@ is matched with @{c}@ which causes a deadlock depending on the buffering mode.' 
-            #  replace['outcome'] = 'ERROR: BufferingHazard' 
+            #  replace['longdesc'] = 'Point to point @{s}@ is matched with @{c}@ which causes a deadlock depending on the buffering mode.'
+            #  replace['outcome'] = 'ERROR: BufferingHazard'
             #  replace['errormsg'] = 'P2P & Collective mistmatch. @{s}@ at @{filename}@:@{line:MBIERROR2}@ is matched with @{c}@ at @{filename}@:@{line:MBIERROR1}@ wich causes a deadlock.'
-            #  replace['init1'] = init[s]("1") 
-            #  replace['init2'] = init[r]("2") 
+            #  replace['init1'] = init[s]("1")
+            #  replace['init2'] = init[r]("2")
             #  replace['operation1'] = operation[r]("2")
             #  replace['operation2'] = operation[s]("1")
-            #  replace['fini1'] = fini[r]("2") 
-            #  replace['fini2'] = fini[s]("1") 
-            #  make_file(template, f'CollP2PBuffering_{r}_{s}_{c}_nok.c', replace)
+            #  replace['fini1'] = fini[r]("2")
+            #  replace['fini2'] = fini[s]("1")
+            #  gen.make_file(template, f'CollP2PBuffering_{r}_{s}_{c}_nok.c', replace)