Make a bunch of debugging calls use the macro version
This commit was SVN r15170.
Этот коммит содержится в:
родитель
80c50120ad
Коммит
8031f6561e
@ -406,8 +406,8 @@ ompi_osc_rdma_component_select(ompi_win_t *win,
|
|||||||
before the window is fully created... */
|
before the window is fully created... */
|
||||||
module->m_comm->c_coll.coll_barrier(module->m_comm);
|
module->m_comm->c_coll.coll_barrier(module->m_comm);
|
||||||
|
|
||||||
opal_output_verbose(50, ompi_osc_base_output,
|
OPAL_OUTPUT_VERBOSE((50, ompi_osc_base_output,
|
||||||
"done creating window %d", module->m_comm->c_contextid);
|
"done creating window %d", module->m_comm->c_contextid));
|
||||||
|
|
||||||
return OMPI_SUCCESS;
|
return OMPI_SUCCESS;
|
||||||
|
|
||||||
|
@ -88,10 +88,10 @@ ompi_osc_rdma_sendreq_send_long_cb(ompi_osc_rdma_longreq_t *longreq)
|
|||||||
(ompi_osc_rdma_sendreq_t*) longreq->cbdata;
|
(ompi_osc_rdma_sendreq_t*) longreq->cbdata;
|
||||||
int32_t count;
|
int32_t count;
|
||||||
|
|
||||||
opal_output_verbose(50, ompi_osc_base_output,
|
OPAL_OUTPUT_VERBOSE((50, ompi_osc_base_output,
|
||||||
"%d completed long sendreq to %d",
|
"%d completed long sendreq to %d",
|
||||||
sendreq->req_module->m_comm->c_my_rank,
|
sendreq->req_module->m_comm->c_my_rank,
|
||||||
sendreq->req_target_rank);
|
sendreq->req_target_rank));
|
||||||
|
|
||||||
OPAL_THREAD_LOCK(&sendreq->req_module->m_lock);
|
OPAL_THREAD_LOCK(&sendreq->req_module->m_lock);
|
||||||
count = (sendreq->req_module->m_num_pending_out -= 1);
|
count = (sendreq->req_module->m_num_pending_out -= 1);
|
||||||
@ -321,10 +321,10 @@ ompi_osc_rdma_sendreq_send(ompi_osc_rdma_module_t *module,
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* send fragment */
|
/* send fragment */
|
||||||
opal_output_verbose(50, ompi_osc_base_output,
|
OPAL_OUTPUT_VERBOSE((50, ompi_osc_base_output,
|
||||||
"%d sending sendreq to %d",
|
"%d sending sendreq to %d",
|
||||||
sendreq->req_module->m_comm->c_my_rank,
|
sendreq->req_module->m_comm->c_my_rank,
|
||||||
sendreq->req_target_rank);
|
sendreq->req_target_rank));
|
||||||
|
|
||||||
ret = mca_bml_base_send(bml_btl, descriptor, MCA_BTL_TAG_OSC_RDMA);
|
ret = mca_bml_base_send(bml_btl, descriptor, MCA_BTL_TAG_OSC_RDMA);
|
||||||
goto done;
|
goto done;
|
||||||
@ -623,10 +623,10 @@ ompi_osc_rdma_sendreq_recv_accum_long_cb(ompi_osc_rdma_longreq_t *longreq)
|
|||||||
/* unlock the window for accumulates */
|
/* unlock the window for accumulates */
|
||||||
OPAL_THREAD_UNLOCK(&longreq->req_module->m_acc_lock);
|
OPAL_THREAD_UNLOCK(&longreq->req_module->m_acc_lock);
|
||||||
|
|
||||||
opal_output_verbose(50, ompi_osc_base_output,
|
OPAL_OUTPUT_VERBOSE((50, ompi_osc_base_output,
|
||||||
"%d finished receiving long accum message from %d",
|
"%d finished receiving long accum message from %d",
|
||||||
longreq->req_module->m_comm->c_my_rank,
|
longreq->req_module->m_comm->c_my_rank,
|
||||||
header->hdr_origin);
|
header->hdr_origin));
|
||||||
|
|
||||||
/* free the temp buffer */
|
/* free the temp buffer */
|
||||||
free(longreq->cbdata);
|
free(longreq->cbdata);
|
||||||
@ -675,10 +675,10 @@ ompi_osc_rdma_sendreq_recv_accum(ompi_osc_rdma_module_t *module,
|
|||||||
|
|
||||||
inmsg_mark_complete(module);
|
inmsg_mark_complete(module);
|
||||||
|
|
||||||
opal_output_verbose(50, ompi_osc_base_output,
|
OPAL_OUTPUT_VERBOSE((50, ompi_osc_base_output,
|
||||||
"%d received accum message from %d",
|
"%d received accum message from %d",
|
||||||
module->m_comm->c_my_rank,
|
module->m_comm->c_my_rank,
|
||||||
header->hdr_origin);
|
header->hdr_origin));
|
||||||
} else {
|
} else {
|
||||||
ompi_osc_rdma_longreq_t *longreq;
|
ompi_osc_rdma_longreq_t *longreq;
|
||||||
ptrdiff_t lb, extent, true_lb, true_extent;
|
ptrdiff_t lb, extent, true_lb, true_extent;
|
||||||
@ -714,11 +714,11 @@ ompi_osc_rdma_sendreq_recv_accum(ompi_osc_rdma_module_t *module,
|
|||||||
module->m_comm,
|
module->m_comm,
|
||||||
&(longreq->request));
|
&(longreq->request));
|
||||||
|
|
||||||
opal_output_verbose(50, ompi_osc_base_output,
|
OPAL_OUTPUT_VERBOSE((50, ompi_osc_base_output,
|
||||||
"%d started long recv accum message from %d (%d)",
|
"%d started long recv accum message from %d (%d)",
|
||||||
module->m_comm->c_my_rank,
|
module->m_comm->c_my_rank,
|
||||||
header->hdr_origin,
|
header->hdr_origin,
|
||||||
header->hdr_origin_tag);
|
header->hdr_origin_tag));
|
||||||
|
|
||||||
/* put the send request in the waiting list */
|
/* put the send request in the waiting list */
|
||||||
OPAL_THREAD_LOCK(&mca_osc_rdma_component.c_lock);
|
OPAL_THREAD_LOCK(&mca_osc_rdma_component.c_lock);
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user