From f70afd4be0405724df2ad02371e2b45a676592de Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Wed, 22 May 2019 01:01:21 +0200 Subject: [PATCH 1/1] try to make rma tests faster --- teshsuite/smpi/mpich3-test/include/mpitest.h | 2 +- teshsuite/smpi/mpich3-test/rma/manyrma2.c | 2 +- teshsuite/smpi/mpich3-test/rma/manyrma3.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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[]) { -- 2.20.1