From: Augustin Degomme Date: Tue, 21 May 2019 23:01:21 +0000 (+0200) Subject: try to make rma tests faster X-Git-Tag: v3.22.4~81 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f70afd4be0405724df2ad02371e2b45a676592de try to make rma tests faster --- diff --git a/teshsuite/smpi/mpich3-test/include/mpitest.h b/teshsuite/smpi/mpich3-test/include/mpitest.h index 454076e443..9975f7d90b 100644 --- a/teshsuite/smpi/mpich3-test/include/mpitest.h +++ b/teshsuite/smpi/mpich3-test/include/mpitest.h @@ -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. */ diff --git a/teshsuite/smpi/mpich3-test/rma/manyrma2.c b/teshsuite/smpi/mpich3-test/rma/manyrma2.c index f86619eba9..7105ba6945 100644 --- a/teshsuite/smpi/mpich3-test/rma/manyrma2.c +++ b/teshsuite/smpi/mpich3-test/rma/manyrma2.c @@ -15,7 +15,7 @@ #include #include -#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 */ diff --git a/teshsuite/smpi/mpich3-test/rma/manyrma3.c b/teshsuite/smpi/mpich3-test/rma/manyrma3.c index acf93a97d7..d1488932fd 100644 --- a/teshsuite/smpi/mpich3-test/rma/manyrma3.c +++ b/teshsuite/smpi/mpich3-test/rma/manyrma3.c @@ -7,7 +7,7 @@ #include "mpi.h" #include -#define MAX_COUNT 4096 +#define MAX_COUNT 2048 int main(int argc, char *argv[]) {