diff options
author | kmu <kmu@hdfgroup.org> | 2019-12-09 20:08:47 (GMT) |
---|---|---|
committer | kmu <kmu@hdfgroup.org> | 2019-12-09 20:08:47 (GMT) |
commit | f2614c904244cca043bf8fc9f94f566fa43c6e28 (patch) | |
tree | ada7f0b930a2cc50d7832340d46e8954be0b5513 /testpar/t_span_tree.c | |
parent | f22e258586009b59cebdde931620c9d7379db6cd (diff) | |
download | hdf5-f2614c904244cca043bf8fc9f94f566fa43c6e28.zip hdf5-f2614c904244cca043bf8fc9f94f566fa43c6e28.tar.gz hdf5-f2614c904244cca043bf8fc9f94f566fa43c6e28.tar.bz2 |
more fix and address comments
Diffstat (limited to 'testpar/t_span_tree.c')
-rw-r--r-- | testpar/t_span_tree.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testpar/t_span_tree.c b/testpar/t_span_tree.c index 65ee03d..da6d343 100644 --- a/testpar/t_span_tree.c +++ b/testpar/t_span_tree.c @@ -1560,7 +1560,9 @@ lower_dim_size_comp_test__run_test(const int chunk_edge_size, size_t small_ds_size; size_t small_ds_slice_size; size_t large_ds_size; +#if LOWER_DIM_SIZE_COMP_TEST__RUN_TEST__DEBUG size_t large_ds_slice_size; +#endif uint32_t expected_value; uint32_t * small_ds_buf_0 = NULL; uint32_t * small_ds_buf_1 = NULL; @@ -1614,9 +1616,10 @@ lower_dim_size_comp_test__run_test(const int chunk_edge_size, small_ds_size = (size_t)((mpi_size + 1) * 1 * 1 * 10 * 10); small_ds_slice_size = (size_t) ( 1 * 1 * 10 * 10); large_ds_size = (size_t)((mpi_size + 1) * 10 * 10 * 10 * 10); - large_ds_slice_size = (size_t) (10 * 10 * 10 * 10); #if LOWER_DIM_SIZE_COMP_TEST__RUN_TEST__DEBUG + large_ds_slice_size = (size_t) (10 * 10 * 10 * 10); + if ( mpi_rank == LOWER_DIM_SIZE_COMP_TEST_DEBUG_TARGET_RANK ) { HDfprintf(stdout, "%s:%d: small ds size / slice size = %d / %d.\n", fcnName, mpi_rank, |