Skip to content

Commit

Permalink
perf program changes
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed May 15, 2019
1 parent af3cab2 commit dd4fbbb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions tests/cunit/test_async_perf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions tests/cunit/test_perf2.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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;
}

0 comments on commit dd4fbbb

Please sign in to comment.