Removing compilation warnings about the output format.
This commit was SVN r13693.
Этот коммит содержится в:
родитель
b925d6588d
Коммит
d2d02642ca
@ -252,7 +252,7 @@ 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 %ld segcount %d",
|
||||
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));
|
||||
|
||||
return ompi_coll_tuned_bcast_intra_generic( buffer, count, datatype, root, comm,
|
||||
@ -278,7 +278,7 @@ 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 %ld segcount %d",
|
||||
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));
|
||||
|
||||
return ompi_coll_tuned_bcast_intra_generic( buffer, count, datatype, root, comm,
|
||||
@ -304,7 +304,7 @@ 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 %ld segcount %d",
|
||||
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));
|
||||
|
||||
return ompi_coll_tuned_bcast_intra_generic( buffer, count, datatype, root, comm,
|
||||
@ -330,7 +330,7 @@ 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 %ld segcount %d",
|
||||
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));
|
||||
|
||||
return ompi_coll_tuned_bcast_intra_generic( buffer, count, datatype, root, comm,
|
||||
|
@ -212,7 +212,7 @@ 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 %ld",
|
||||
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));
|
||||
|
||||
/* Handle messages of small and intermediate size */
|
||||
@ -328,7 +328,7 @@ 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 %ld",
|
||||
"root %d rank %d com_size %d msg_length %uld",
|
||||
root, rank, communicator_size, message_size));
|
||||
|
||||
if ((communicator_size < 8) && (message_size < 512)){
|
||||
@ -423,7 +423,7 @@ 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 %ld", 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 %uld", rank, communicator_size, total_dsize));
|
||||
|
||||
for (pow2_size = 1; pow2_size <= communicator_size; pow2_size <<=1);
|
||||
pow2_size >>=1;
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user