Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to make rma tests faster
authorAugustin Degomme <adegomme@gmail.com>
Tue, 21 May 2019 23:01:21 +0000 (01:01 +0200)
committerAugustin Degomme <adegomme@gmail.com>
Tue, 21 May 2019 23:01:21 +0000 (01:01 +0200)
teshsuite/smpi/mpich3-test/include/mpitest.h
teshsuite/smpi/mpich3-test/rma/manyrma2.c
teshsuite/smpi/mpich3-test/rma/manyrma3.c

index 454076e..9975f7d 100644 (file)
@@ -62,7 +62,7 @@ typedef struct _MTestDatatype {
  *  reach the long message algorithms. (The maximal count or block length
  *  can be generated by 256K count is 4K or 32Kbytes respectively) */
 #define MTEST_DATATYPE_FOR_EACH_COUNT(count) \
-        for (count = 1; count <= 262144; count *= 128)
+        for (count = 1; count <= 8192; count *= 8192)
 
 /* Setup the full version of datatype tests.
  * It generate tests for all basic datatypes and all derived datatypes except darray. */
index f86619e..7105ba6 100644 (file)
@@ -15,7 +15,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-#define MAX_COUNT 512
+#define MAX_COUNT 256
 #define MAX_RMA_SIZE 1  /* 16 in manyrma performance test */
 #define MAX_RUNS 8
 #define MAX_ITER_TIME  5.0      /* seconds */
index acf93a9..d148893 100644 (file)
@@ -7,7 +7,7 @@
 #include "mpi.h"
 #include <stdio.h>
 
-#define MAX_COUNT 4096
+#define MAX_COUNT 2048
 
 int main(int argc, char *argv[])
 {