Fixed and CMR'ed to 1.7.5. -Nathan
________________________________________ From: devel [devel-boun...@open-mpi.org] on behalf of Marco Atzeri [marco.atz...@gmail.com] Sent: Tuesday, March 04, 2014 7:38 AM To: de...@open-mpi.org Subject: Re: [OMPI devel] v1.7.5rc1 posted On 02/03/2014 03:13, Ralph Castain wrote: > In the usual place: > > http://www.open-mpi.org/software/ompi/v1.7/ > > Please subject this to your best tests as we hope to roll this (plus bug > fixes) to 1.8.0 at the end of the month. This includes the new OSHMEM > support, plus a completely updated MPI-3 compliant one-sided implementation. > > Scheduled release date: Mar 10 > > Thanks > Ralph > /pub/devel/openmpi/openmpi-1.7.5rc1-1/src/openmpi-1.7.5rc1/ompi/mca/osc/rdma/osc_rdma_data_move.c: In function 'osc_rdma_accumulate_buffer': /pub/devel/openmpi/openmpi-1.7.5rc1-1/src/openmpi-1.7.5rc1/ompi/mca/osc/rdma/osc_rdma_data_move.c:481:28: error: 'header' undeclared (first use in this function) primitive_count *= header->hdr_target_count; ^ /pub/devel/openmpi/openmpi-1.7.5rc1-1/src/openmpi-1.7.5rc1/ompi/mca/osc/rdma/osc_rdma_data_move.c:481:28: note: each undeclared identifier is reported only once for each function it appears in Makefile:1660: recipe for target 'osc_rdma_data_move.lo' failed make[2]: *** [osc_rdma_data_move.lo] Error 1 suggestions ? The relevant code is this one : #if OPAL_ENABLE_HETEROGENEOUS_SUPPORT if (proc->proc_arch != ompi_proc_local()->proc_arch) { ompi_datatype_t *primitive_datatype = NULL; uint32_t primitive_count; size_t buflen; ompi_osc_base_get_primitive_type_info(datatype, &primitive_datatype, &primitive_count); primitive_count *= header->hdr_target_count; /* figure out how big a buffer we need */ ompi_datatype_type_size(primitive_datatype, &buflen); buflen *= primitive_count; buffer = malloc (buflen); if (OPAL_UNLIKELY(NULL == buffer)) { return OMPI_ERR_OUT_OF_RESOURCE; } osc_rdma_copy_on_recv (buffer, source, source_len, proc, count, datatype); } #endif _______________________________________________ devel mailing list de...@open-mpi.org Subscription: http://www.open-mpi.org/mailman/listinfo.cgi/devel Searchable archives: http://www.open-mpi.org/community/lists/devel/2014/03/date.php