Other warnings are now silenced.
This commit was SVN r13462.
Этот коммит содержится в:
родитель
30b2c55900
Коммит
0ff2115964
@ -291,9 +291,9 @@ ompi_unpack_partial_datatype( ompi_convertor_t* pConvertor, dt_elem_desc_t* pEle
|
||||
uint32_t i, length, count_desc = 1;
|
||||
size_t data_length = ompi_ddt_basicDatatypes[pElem->elem.common.type]->size;
|
||||
|
||||
DO_DEBUG( opal_output( 0, "unpack partial data start %d end %d data_length %lu user %p\n"
|
||||
DO_DEBUG( opal_output( 0, "unpack partial data start %lu end %lu data_length %lu user %p\n"
|
||||
"\tbConverted %lu total_length %lu count %d\n",
|
||||
start_position, end_position, (unsigned long)data_length, *user_buffer,
|
||||
(unsigned long)start_position, (unsigned long)end_position, (unsigned long)data_length, *user_buffer,
|
||||
(unsigned long)pConvertor->bConverted, (unsigned long)pConvertor->local_size, pConvertor->count ); );
|
||||
|
||||
/* Find a byte that is not used in the partial buffer */
|
||||
|
@ -135,7 +135,7 @@ int mca_btl_mx_proc_insert( mca_btl_mx_proc_t* module_proc,
|
||||
mca_btl_mx_endpoint_t* module_endpoint )
|
||||
{
|
||||
mca_btl_mx_addr_t *mx_peers;
|
||||
int rc, i;
|
||||
int rc;
|
||||
size_t size;
|
||||
|
||||
/* query for the peer address info */
|
||||
@ -160,8 +160,11 @@ int mca_btl_mx_proc_insert( mca_btl_mx_proc_t* module_proc,
|
||||
}
|
||||
|
||||
#if OMPI_ENABLE_HETEROGENEOUS_SUPPORT
|
||||
for (i = 0 ; i < module_proc->mx_peers_count ; ++i) {
|
||||
BTL_MX_ADDR_NTOH(mx_peers[i]);
|
||||
{
|
||||
int i;
|
||||
for (i = 0 ; i < module_proc->mx_peers_count ; ++i) {
|
||||
BTL_MX_ADDR_NTOH(mx_peers[i]);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -187,10 +187,10 @@ int mca_pml_ob1_component_fini(void)
|
||||
int mca_pml_ob1_dump(struct ompi_communicator_t* comm, int verbose)
|
||||
{
|
||||
struct mca_pml_comm_t* pml_comm = comm->c_pml_comm;
|
||||
size_t i;
|
||||
int i;
|
||||
|
||||
/* iterate through all procs on communicator */
|
||||
for(i=0; i<pml_comm->num_procs; i++) {
|
||||
for( i = 0; i < (int)pml_comm->num_procs; i++ ) {
|
||||
mca_pml_ob1_comm_proc_t* proc = &pml_comm->procs[i];
|
||||
mca_bml_base_endpoint_t* ep = (mca_bml_base_endpoint_t*)proc->ompi_proc->proc_bml;
|
||||
size_t n;
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user