1
1

Remove the warnings about printf data-type mismatch.

This commit was SVN r13804.
Этот коммит содержится в:
George Bosilca 2007-02-26 22:20:35 +00:00
родитель 6d70f5fbe0
Коммит bec20422ee
2 изменённых файлов: 16 добавлений и 13 удалений

Просмотреть файл

@ -252,8 +252,8 @@ ompi_coll_tuned_bcast_intra_bintree ( void* buffer,
ompi_ddt_type_size( datatype, &typelng );
COLL_TUNED_COMPUTED_SEGCOUNT( segsize, typelng, segcount );
OPAL_OUTPUT((ompi_coll_tuned_stream,"coll:tuned:bcast_intra_binary rank %d ss %5d typelng %uld segcount %d",
ompi_comm_rank(comm), segsize, typelng, segcount));
OPAL_OUTPUT((ompi_coll_tuned_stream,"coll:tuned:bcast_intra_binary rank %d ss %5d typelng %lu segcount %d",
ompi_comm_rank(comm), segsize, (unsigned long)typelng, segcount));
return ompi_coll_tuned_bcast_intra_generic( buffer, count, datatype, root, comm,
segcount, comm->c_coll_selected_data->cached_bintree );
@ -278,8 +278,8 @@ ompi_coll_tuned_bcast_intra_pipeline( void* buffer,
ompi_ddt_type_size( datatype, &typelng );
COLL_TUNED_COMPUTED_SEGCOUNT( segsize, typelng, segcount );
OPAL_OUTPUT((ompi_coll_tuned_stream,"coll:tuned:bcast_intra_pipeline rank %d ss %5d typelng %uld segcount %d",
ompi_comm_rank(comm), segsize, typelng, segcount));
OPAL_OUTPUT((ompi_coll_tuned_stream,"coll:tuned:bcast_intra_pipeline rank %d ss %5d typelng %lu segcount %d",
ompi_comm_rank(comm), segsize, (unsigned long)typelng, segcount));
return ompi_coll_tuned_bcast_intra_generic( buffer, count, datatype, root, comm,
segcount, comm->c_coll_selected_data->cached_pipeline );
@ -304,8 +304,8 @@ ompi_coll_tuned_bcast_intra_chain( void* buffer,
ompi_ddt_type_size( datatype, &typelng );
COLL_TUNED_COMPUTED_SEGCOUNT( segsize, typelng, segcount );
OPAL_OUTPUT((ompi_coll_tuned_stream,"coll:tuned:bcast_intra_chain rank %d fo %d ss %5d typelng %uld segcount %d",
ompi_comm_rank(comm), chains, segsize, typelng, segcount));
OPAL_OUTPUT((ompi_coll_tuned_stream,"coll:tuned:bcast_intra_chain rank %d fo %d ss %5d typelng %lu segcount %d",
ompi_comm_rank(comm), chains, segsize, (unsigned long)typelng, segcount));
return ompi_coll_tuned_bcast_intra_generic( buffer, count, datatype, root, comm,
segcount, comm->c_coll_selected_data->cached_chain );
@ -330,8 +330,8 @@ ompi_coll_tuned_bcast_intra_binomial( void* buffer,
ompi_ddt_type_size( datatype, &typelng );
COLL_TUNED_COMPUTED_SEGCOUNT( segsize, typelng, segcount );
OPAL_OUTPUT((ompi_coll_tuned_stream,"coll:tuned:bcast_intra_binomial rank %d ss %5d typelng %uld segcount %d",
ompi_comm_rank(comm), segsize, typelng, segcount));
OPAL_OUTPUT((ompi_coll_tuned_stream,"coll:tuned:bcast_intra_binomial rank %d ss %5d typelng %lu segcount %d",
ompi_comm_rank(comm), segsize, (unsigned long)typelng, segcount));
return ompi_coll_tuned_bcast_intra_generic( buffer, count, datatype, root, comm,
segcount, comm->c_coll_selected_data->cached_bmtree );

Просмотреть файл

@ -212,8 +212,9 @@ int ompi_coll_tuned_bcast_intra_dec_fixed(void *buff, int count,
ompi_ddt_type_size(datatype, &dsize);
message_size = dsize * (unsigned long)count; /* needed for decision */
OPAL_OUTPUT((ompi_coll_tuned_stream, "ompi_coll_tuned_bcast_intra_dec_fixed root %d rank %d com_size %d msg_length %uld",
root, rank, communicator_size, message_size));
OPAL_OUTPUT((ompi_coll_tuned_stream, "ompi_coll_tuned_bcast_intra_dec_fixed"
" root %d rank %d com_size %d msg_length %lu",
root, rank, communicator_size, (unsigned long)message_size));
/* Handle messages of small and intermediate size */
if (message_size < small_message_size) {
@ -328,8 +329,8 @@ int ompi_coll_tuned_reduce_intra_dec_fixed( void *sendbuf, void *recvbuf,
message_size = dsize * count; /* needed for decision */
OPAL_OUTPUT((ompi_coll_tuned_stream, "ompi_coll_tuned_reduce_intra_dec_fixed"
"root %d rank %d com_size %d msg_length %uld",
root, rank, communicator_size, message_size));
"root %d rank %d com_size %d msg_length %lu",
root, rank, communicator_size, (unsigned long)message_size));
if ((communicator_size < 8) && (message_size < 512)){
/* Linear_0K */
@ -423,7 +424,9 @@ int ompi_coll_tuned_allgather_intra_dec_fixed(void *sbuf, int scount,
ompi_ddt_type_size(sdtype, &dsize);
total_dsize = dsize * scount * communicator_size;
OPAL_OUTPUT((ompi_coll_tuned_stream, "ompi_coll_tuned_allgather_intra_dec_fixed rank %d com_size %d msg_length %uld", rank, communicator_size, total_dsize));
OPAL_OUTPUT((ompi_coll_tuned_stream, "ompi_coll_tuned_allgather_intra_dec_fixed"
" rank %d com_size %d msg_length %lu",
rank, communicator_size, (unsigned long)total_dsize));
for (pow2_size = 1; pow2_size <= communicator_size; pow2_size <<=1);
pow2_size >>=1;