1
1
This commit was SVN r14196.
Этот коммит содержится в:
George Bosilca 2007-04-02 19:11:06 +00:00
родитель 0e98bf2ac6
Коммит 120cf76ad8
2 изменённых файлов: 5 добавлений и 5 удалений

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

@ -678,8 +678,8 @@ int mca_btl_udapl_component_progress()
/* Was the DTO successful? */
if(DAT_DTO_SUCCESS != dto->status) {
OPAL_OUTPUT((0,
"btl_udapl ***** DTO error %d %d %u %p*****\n",
dto->status, frag->type, frag->size, dto->ep_handle));
"btl_udapl ***** DTO error %d %d %lu %p*****\n",
dto->status, frag->type, (unsigned long)frag->size, dto->ep_handle));
break;
}

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

@ -43,7 +43,7 @@ ompi_coll_tuned_scatter_intra_binomial(void *sbuf, int scount,
int rank;
int vrank;
int size;
int total_recv = 0, total_send = 0;
int total_send = 0;
char *ptmp = NULL;
char *tempbuf = NULL;
int err;
@ -56,7 +56,7 @@ ompi_coll_tuned_scatter_intra_binomial(void *sbuf, int scount,
rank = ompi_comm_rank(comm);
OPAL_OUTPUT((ompi_coll_tuned_stream,
"ompi_coll_tuned_scatter_intra_binomial rank %d", rank));
"ompi_coll_tuned_scatter_intra_binomial rank %d", rank));
/* create the binomial tree */
COLL_TUNED_UPDATE_IN_ORDER_BMTREE( comm, root );
@ -172,7 +172,7 @@ ompi_coll_tuned_scatter_intra_binomial(void *sbuf, int scount,
OPAL_OUTPUT((ompi_coll_tuned_stream, "%s:%4d\tError occurred %d, rank %2d",
__FILE__, line, err, rank));
return err;
return err;
}
/*