mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-04-12 17:31:09 +08:00
Repair more format strings.
This commit is contained in:
parent
5f0bb85813
commit
d20e1274a7
@ -786,17 +786,16 @@ H5C_mark_entries_as_clean(H5F_t * f,
|
||||
if(entry_ptr == NULL) {
|
||||
#if H5C_DO_SANITY_CHECKS
|
||||
HDfprintf(stdout,
|
||||
"H5C_mark_entries_as_clean: entry[%u] = %a not in cache.\n",
|
||||
u,
|
||||
addr);
|
||||
"H5C_mark_entries_as_clean: entry[%u] = %" PRIuHADDR
|
||||
" not in cache.\n", u, addr);
|
||||
#endif /* H5C_DO_SANITY_CHECKS */
|
||||
HGOTO_ERROR(H5E_CACHE, H5E_SYSTEM, FAIL, "Listed entry not in cache?!?!?")
|
||||
} /* end if */
|
||||
else if(!entry_ptr->is_dirty) {
|
||||
#if H5C_DO_SANITY_CHECKS
|
||||
HDfprintf(stdout,
|
||||
"H5C_mark_entries_as_clean: entry %a is not dirty!?!\n",
|
||||
addr);
|
||||
"H5C_mark_entries_as_clean: entry %" PRIuHADDR
|
||||
" is not dirty!?!\n", addr);
|
||||
#endif /* H5C_DO_SANITY_CHECKS */
|
||||
HGOTO_ERROR(H5E_CACHE, H5E_SYSTEM, FAIL, "Listed entry not dirty?!?!?")
|
||||
} /* end else-if */
|
||||
|
@ -1082,7 +1082,7 @@ if(H5DEBUG(D))
|
||||
|
||||
#ifdef H5D_DEBUG
|
||||
if(H5DEBUG(D))
|
||||
HDfprintf(H5DEBUG(D),"total_chunks = %Zu, num_chunk = %Zu\n", total_chunks, num_chunk);
|
||||
HDfprintf(H5DEBUG(D),"total_chunks = %zu, num_chunk = %zu\n", total_chunks, num_chunk);
|
||||
#endif
|
||||
|
||||
/* Set up MPI datatype for chunks selected */
|
||||
@ -1545,7 +1545,7 @@ H5D__multi_chunk_collective_io(H5D_io_info_t *io_info, const H5D_type_info_t *ty
|
||||
chunk_addr = (haddr_t *)H5MM_calloc(total_chunk * sizeof(haddr_t));
|
||||
#ifdef H5D_DEBUG
|
||||
if(H5DEBUG(D))
|
||||
HDfprintf(H5DEBUG(D), "total_chunk %Zu\n", total_chunk);
|
||||
HDfprintf(H5DEBUG(D), "total_chunk %zu\n", total_chunk);
|
||||
#endif
|
||||
|
||||
/* Obtain IO option for each chunk */
|
||||
@ -1579,7 +1579,7 @@ if(H5DEBUG(D))
|
||||
|
||||
#ifdef H5D_DEBUG
|
||||
if(H5DEBUG(D))
|
||||
HDfprintf(H5DEBUG(D),"mpi_rank = %d, chunk index = %Zu\n", mpi_rank, u);
|
||||
HDfprintf(H5DEBUG(D),"mpi_rank = %d, chunk index = %zu\n", mpi_rank, u);
|
||||
#endif
|
||||
/* Get the chunk info for this chunk, if there are elements selected */
|
||||
chunk_info = fm->select_chunk[u];
|
||||
@ -1599,7 +1599,7 @@ if(H5DEBUG(D))
|
||||
if(chunk_io_option[u] == H5D_CHUNK_IO_MODE_COL) {
|
||||
#ifdef H5D_DEBUG
|
||||
if(H5DEBUG(D))
|
||||
HDfprintf(H5DEBUG(D),"inside collective chunk IO mpi_rank = %d, chunk index = %Zu\n", mpi_rank, u);
|
||||
HDfprintf(H5DEBUG(D),"inside collective chunk IO mpi_rank = %d, chunk index = %zu\n", mpi_rank, u);
|
||||
#endif
|
||||
|
||||
/* Set the file & memory dataspaces */
|
||||
@ -1637,7 +1637,7 @@ if(H5DEBUG(D))
|
||||
else { /* possible independent IO for this chunk */
|
||||
#ifdef H5D_DEBUG
|
||||
if(H5DEBUG(D))
|
||||
HDfprintf(H5DEBUG(D),"inside independent IO mpi_rank = %d, chunk index = %Zu\n", mpi_rank, u);
|
||||
HDfprintf(H5DEBUG(D),"inside independent IO mpi_rank = %d, chunk index = %zu\n", mpi_rank, u);
|
||||
#endif
|
||||
|
||||
HDassert(chunk_io_option[u] == 0);
|
||||
|
@ -704,7 +704,7 @@ if(H5DEBUG(S))
|
||||
|
||||
#ifdef H5S_DEBUG
|
||||
if(H5DEBUG(S)) {
|
||||
HDfprintf(H5DEBUG(S), "%s: start=%Hd stride=%Hu count=%Hu block=%Hu xtent=%Hu",
|
||||
HDfprintf(H5DEBUG(S), "%s: start=%" PRIdHSIZE " stride=%" PRIuHSIZE " count=%" PRIuHSIZE " block=%" PRIuHSIZE " xtent=%" PRIuHSIZE,
|
||||
FUNC, d[u].start, d[u].strid, d[u].count, d[u].block, d[u].xtent);
|
||||
if(u == 0)
|
||||
HDfprintf(H5DEBUG(S), " rank=%u\n", rank);
|
||||
@ -736,7 +736,7 @@ if(H5DEBUG(S))
|
||||
|
||||
#ifdef H5S_DEBUG
|
||||
if(H5DEBUG(S)) {
|
||||
HDfprintf(H5DEBUG(S), "%s: start=%Hd stride=%Hu count=%Hu block=%Hu xtent=%Hu",
|
||||
HDfprintf(H5DEBUG(S), "%s: start=%" PRIdHSIZE " stride=%" PRIuHSIZE " count=%" PRIuHSIZE " block=%" PRIuHSIZE " xtent=%" PRIuHSIZE,
|
||||
FUNC, d[u].start, d[u].strid, d[u].count, d[u].block, d[u].xtent);
|
||||
if(u == 0)
|
||||
HDfprintf(H5DEBUG(S), " rank=%u\n", rank);
|
||||
@ -761,7 +761,7 @@ if(H5DEBUG(S)) {
|
||||
#ifdef H5S_DEBUG
|
||||
if(H5DEBUG(S)) {
|
||||
i = ((int)rank) - 1;
|
||||
HDfprintf(H5DEBUG(S), " offset[%2d]=%Hu; max_xtent[%2d]=%Hu\n", i, offset[i], i, max_xtent[i]);
|
||||
HDfprintf(H5DEBUG(S), " offset[%2d]=%" PRIuHSIZE "; max_xtent[%2d]=%" PRIuHSIZE "\n", i, offset[i], i, max_xtent[i]);
|
||||
}
|
||||
#endif
|
||||
for(i = ((int)rank) - 2; i >= 0; --i) {
|
||||
@ -769,7 +769,7 @@ if(H5DEBUG(S)) {
|
||||
max_xtent[i] = max_xtent[i + 1] * d[i].xtent;
|
||||
#ifdef H5S_DEBUG
|
||||
if(H5DEBUG(S))
|
||||
HDfprintf(H5DEBUG(S), " offset[%2d]=%Hu; max_xtent[%2d]=%Hu\n", i, offset[i], i, max_xtent[i]);
|
||||
HDfprintf(H5DEBUG(S), " offset[%2d]=%" PRIuHSIZE "; max_xtent[%2d]=%" PRIuHSIZE "\n", i, offset[i], i, max_xtent[i]);
|
||||
#endif
|
||||
} /* end for */
|
||||
|
||||
@ -784,9 +784,9 @@ if(H5DEBUG(S))
|
||||
*******************************************************/
|
||||
#ifdef H5S_DEBUG
|
||||
if(H5DEBUG(S)) {
|
||||
HDfprintf(H5DEBUG(S), "%s: Making contig type %Zu MPI_BYTEs\n", FUNC, elmt_size);
|
||||
HDfprintf(H5DEBUG(S), "%s: Making contig type %zu MPI_BYTEs\n", FUNC, elmt_size);
|
||||
for(i = ((int)rank) - 1; i >= 0; --i)
|
||||
HDfprintf(H5DEBUG(S), "d[%d].xtent=%Hu \n", i, d[i].xtent);
|
||||
HDfprintf(H5DEBUG(S), "d[%d].xtent=%" PRIuHSIZE "\n", i, d[i].xtent);
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -814,7 +814,9 @@ if(H5DEBUG(S)) {
|
||||
#ifdef H5S_DEBUG
|
||||
if(H5DEBUG(S))
|
||||
HDfprintf(H5DEBUG(S), "%s: Dimension i=%d \n"
|
||||
"start=%Hd count=%Hu block=%Hu stride=%Hu, xtent=%Hu max_xtent=%d\n",
|
||||
"start=%" PRIdHSIZE " count=%" PRIuHSIZE " block=%" PRIuHSIZE
|
||||
" stride=%" PRIuHSIZE ", xtent=%" PRIuHSIZE
|
||||
" max_xtent=%" PRIuHSIZE "\n",
|
||||
FUNC, i, d[i].start, d[i].count, d[i].block, d[i].strid, d[i].xtent, max_xtent[i]);
|
||||
#endif
|
||||
|
||||
@ -955,7 +957,7 @@ done:
|
||||
|
||||
#ifdef H5S_DEBUG
|
||||
if(H5DEBUG(S))
|
||||
HDfprintf(H5DEBUG(S), "Leave %s, count=%ld is_derived_type=%t\n", FUNC, *count, *is_derived_type);
|
||||
HDfprintf(H5DEBUG(S), "Leave %s, count=%d is_derived_type=%s\n", FUNC, *count, (*is_derived_type) ? "TRUE" : "FALSE");
|
||||
#endif
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5S__mpio_reg_hyper_type() */
|
||||
|
@ -1943,7 +1943,7 @@ serve_total_writes_request(struct mssg_t * mssg_ptr)
|
||||
|
||||
if ( success ) {
|
||||
|
||||
HDfprintf(stdout, "%d request total writes %ld.\n",
|
||||
HDfprintf(stdout, "%d request total writes %d.\n",
|
||||
(int)(mssg_ptr->src),
|
||||
total_writes);
|
||||
|
||||
@ -4892,7 +4892,7 @@ verify_total_reads(int expected_total_reads)
|
||||
success = FALSE;
|
||||
if ( verbose ) {
|
||||
HDfprintf(stdout,
|
||||
"%d:%s: reported/expected total reads mismatch (%d/%d).\n",
|
||||
"%d:%s: reported/expected total reads mismatch (%ld/%d).\n",
|
||||
world_mpi_rank, FUNC,
|
||||
reported_total_reads, expected_total_reads);
|
||||
|
||||
|
@ -259,7 +259,7 @@ test_write_one_chunk_filtered_dataset(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -417,7 +417,7 @@ test_write_filtered_dataset_no_overlap(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -578,7 +578,7 @@ test_write_filtered_dataset_overlap(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -745,7 +745,7 @@ test_write_filtered_dataset_single_no_selection(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -1196,7 +1196,7 @@ test_write_filtered_dataset_interleaved_write(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -1368,7 +1368,7 @@ test_write_3d_filtered_dataset_no_overlap_separate_pages(void)
|
||||
start[2] = (hsize_t) mpi_rank;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu, %llu ], stride[ %llu, %llu, %llu ], start[ %llu, %llu, %llu ], block size[ %llu, %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], count[2], stride[0], stride[1], stride[2], start[0], start[1], start[2], block[0], block[1], block[2]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -1531,7 +1531,7 @@ test_write_3d_filtered_dataset_no_overlap_same_pages(void)
|
||||
start[2] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu, %llu ], stride[ %llu, %llu, %llu ], start[ %llu, %llu, %llu ], block size[ %llu, %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], count[2], stride[0], stride[1], stride[2], start[0], start[1], start[2], block[0], block[1], block[2]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -1697,7 +1697,7 @@ test_write_3d_filtered_dataset_overlap(void)
|
||||
start[2] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu, %llu ], stride[ %llu, %llu, %llu ], start[ %llu, %llu, %llu ], block size[ %llu, %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], count[2], stride[0], stride[1], stride[2], start[0], start[1], start[2], block[0], block[1], block[2]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -1875,7 +1875,7 @@ test_write_cmpd_filtered_dataset_no_conversion_unshared(void)
|
||||
start[1] = ((hsize_t) mpi_rank * WRITE_COMPOUND_FILTERED_CHUNKS_NO_CONVERSION_UNSHARED_CH_NCOLS);
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -2058,7 +2058,7 @@ test_write_cmpd_filtered_dataset_no_conversion_shared(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -2260,7 +2260,7 @@ test_write_cmpd_filtered_dataset_type_conversion_unshared(void)
|
||||
start[1] = ((hsize_t) mpi_rank * WRITE_COMPOUND_FILTERED_CHUNKS_TYPE_CONVERSION_UNSHARED_CH_NCOLS);
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -2446,7 +2446,7 @@ test_write_cmpd_filtered_dataset_type_conversion_shared(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -2655,7 +2655,7 @@ test_read_one_chunk_filtered_dataset(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -2854,7 +2854,7 @@ test_read_filtered_dataset_no_overlap(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -3055,7 +3055,7 @@ test_read_filtered_dataset_overlap(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -3280,7 +3280,7 @@ test_read_filtered_dataset_single_no_selection(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -3844,7 +3844,7 @@ test_read_filtered_dataset_interleaved_read(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -4063,7 +4063,7 @@ test_read_3d_filtered_dataset_no_overlap_separate_pages(void)
|
||||
start[2] = (hsize_t) mpi_rank;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -4275,7 +4275,7 @@ test_read_3d_filtered_dataset_no_overlap_same_pages(void)
|
||||
start[2] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -4492,7 +4492,7 @@ test_read_3d_filtered_dataset_overlap(void)
|
||||
start[2] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -4723,7 +4723,7 @@ test_read_cmpd_filtered_dataset_no_conversion_unshared(void)
|
||||
start[1] = ((hsize_t) mpi_rank * READ_COMPOUND_FILTERED_CHUNKS_NO_CONVERSION_UNSHARED_CH_NCOLS);
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -4949,7 +4949,7 @@ test_read_cmpd_filtered_dataset_no_conversion_shared(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -5183,7 +5183,7 @@ test_read_cmpd_filtered_dataset_type_conversion_unshared(void)
|
||||
start[1] = ((hsize_t) mpi_rank * READ_COMPOUND_FILTERED_CHUNKS_TYPE_CONVERSION_UNSHARED_CH_NCOLS);
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -5421,7 +5421,7 @@ test_read_cmpd_filtered_dataset_type_conversion_shared(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is reading with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is reading with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -5717,7 +5717,7 @@ test_write_parallel_read_serial(void)
|
||||
offset[2] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu, %llu ], stride[ %llu, %llu, %llu ], offset[ %llu, %llu, %llu ], block size[ %llu, %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], offset[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], count[2], stride[0], stride[1], stride[2], offset[0], offset[1], offset[2], block[0], block[1], block[2]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
@ -5889,7 +5889,7 @@ test_shrinking_growing_chunks(void)
|
||||
start[1] = 0;
|
||||
|
||||
if (VERBOSE_MED) {
|
||||
HDprintf("Process %d is writing with count[ %llu, %llu ], stride[ %llu, %llu ], start[ %llu, %llu ], block size[ %llu, %llu ]\n",
|
||||
HDprintf("Process %d is writing with count[ %" PRIuHSIZE ", %" PRIuHSIZE " ], stride[ %" PRIuHSIZE ", %" PRIuHSIZE " ], start[ %" PRIuHSIZE ", %" PRIuHSIZE " ], block size[ %" PRIuHSIZE ", %" PRIuHSIZE " ]\n",
|
||||
mpi_rank, count[0], count[1], stride[0], stride[1], start[0], start[1], block[0], block[1]);
|
||||
HDfflush(stdout);
|
||||
}
|
||||
|
@ -317,7 +317,7 @@ int main(int argc, char **argv)
|
||||
VRFY((ret >= 0), "H5Dwrite dataset1 succeeded", !H5FATAL);
|
||||
|
||||
|
||||
if (ret < 0) HDfprintf(stderr, "node %d, read error, loc = %Ld: %s\n",
|
||||
if (ret < 0) HDfprintf(stderr, "node %d, read error, loc = %" PRId64 ": %s\n",
|
||||
mynod, mynod*opt_block, strerror(myerrno));
|
||||
|
||||
/* if the user wanted to check correctness, compare the write
|
||||
@ -440,7 +440,7 @@ parse_args(int argc, char **argv)
|
||||
opt_threshold = (hsize_t)HDatoi(p + 1);
|
||||
}
|
||||
HDfprintf(stdout,
|
||||
"alignment/threshold=%Hu/%Hu\n",
|
||||
"alignment/threshold=%" PRIuHSIZE "/%" PRIuHSIZE "\n",
|
||||
opt_alignment, opt_threshold);
|
||||
break;
|
||||
case '2': /* use 2-files, i.e., split file driver */
|
||||
|
Loading…
x
Reference in New Issue
Block a user