Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Free dynamically allocated memory.
[simgrid.git] / teshsuite / smpi / mpich3-test / perf / dtpack.c
index 8b2e053..029c2a4 100644 (file)
@@ -25,7 +25,7 @@
 
 static int verbose = 0;
 
-#define N_REPS 1000
+#define N_REPS 50
 #define THRESHOLD 0.10
 #define VARIANCE_THRESHOLD ((THRESHOLD * THRESHOLD) / 2)
 #define NTRIALS 10
@@ -66,6 +66,7 @@ double noise(double *list, int count)
     if (retval < 0)
         retval = -retval;
 
+    free(margin);
     return retval;
 }