diff --git a/tests/cunit/test_async_perf.c b/tests/cunit/test_async_perf.c index af66c4e95bc..e5f5759b4e3 100644 --- a/tests/cunit/test_async_perf.c +++ b/tests/cunit/test_async_perf.c @@ -36,9 +36,9 @@ #define LON_LEN 3 /* The length of our sample data along each dimension. */ -#define X_DIM_LEN 4 -#define Y_DIM_LEN 4 -#define Z_DIM_LEN 4 +#define X_DIM_LEN 1024 +#define Y_DIM_LEN 1024 +#define Z_DIM_LEN 256 /* The number of timesteps of data to write. */ #define NUM_TIMESTEPS 3 diff --git a/tests/cunit/test_perf2.c b/tests/cunit/test_perf2.c index 4335a167c5f..db6972717e9 100644 --- a/tests/cunit/test_perf2.c +++ b/tests/cunit/test_perf2.c @@ -30,9 +30,9 @@ #define NDIM3 3 /* The length of our sample data along each dimension. */ -#define X_DIM_LEN 128 -#define Y_DIM_LEN 128 -#define Z_DIM_LEN 16 +#define X_DIM_LEN 1024 +#define Y_DIM_LEN 1024 +#define Z_DIM_LEN 256 /* The number of timesteps of data to write. */ #define NUM_TIMESTEPS 10 @@ -429,6 +429,6 @@ int main(int argc, char **argv) if ((ret = pio_test_finalize(&test_comm))) return ret; - printf("%d %s SUCCESS!!\n", my_rank, TEST_NAME); + /* printf("%d %s SUCCESS!!\n", my_rank, TEST_NAME); */ return 0; }