2015-01-06 18:45:08 +03:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
2012-02-24 06:13:33 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2008 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2015-06-24 06:59:57 +03:00
|
|
|
* Copyright (c) 2004-2008 High Performance Computing Center Stuttgart,
|
2012-02-24 06:13:33 +04:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2008 UT-Battelle, LLC. All rights reserved.
|
|
|
|
* Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved.
|
2015-02-27 17:02:12 +03:00
|
|
|
* Copyright (c) 2012-2015 NVIDIA Corporation. All rights reserved.
|
2015-01-06 18:45:08 +03:00
|
|
|
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2012-02-24 06:13:33 +04:00
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2012-02-24 06:13:33 +04:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2012-02-24 06:13:33 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "opal/prefetch.h"
|
George did the work and deserves all the credit for it. Ralph did the merge, and deserves whatever blame results from errors in it :-)
WHAT: Open our low-level communication infrastructure by moving all necessary components (btl/rcache/allocator/mpool) down in OPAL
All the components required for inter-process communications are currently deeply integrated in the OMPI layer. Several groups/institutions have express interest in having a more generic communication infrastructure, without all the OMPI layer dependencies. This communication layer should be made available at a different software level, available to all layers in the Open MPI software stack. As an example, our ORTE layer could replace the current OOB and instead use the BTL directly, gaining access to more reactive network interfaces than TCP. Similarly, external software libraries could take advantage of our highly optimized AM (active message) communication layer for their own purpose. UTK with support from Sandia, developped a version of Open MPI where the entire communication infrastucture has been moved down to OPAL (btl/rcache/allocator/mpool). Most of the moved components have been updated to match the new schema, with few exceptions (mainly BTLs where I have no way of compiling/testing them). Thus, the completion of this RFC is tied to being able to completing this move for all BTLs. For this we need help from the rest of the Open MPI community, especially those supporting some of the BTLs. A non-exhaustive list of BTLs that qualify here is: mx, portals4, scif, udapl, ugni, usnic.
This commit was SVN r32317.
2014-07-26 04:47:28 +04:00
|
|
|
#include "opal/mca/btl/btl.h"
|
2015-06-24 06:59:57 +03:00
|
|
|
#include "opal/mca/mpool/mpool.h"
|
2012-02-24 06:13:33 +04:00
|
|
|
#include "ompi/constants.h"
|
|
|
|
#include "ompi/mca/pml/pml.h"
|
|
|
|
#include "pml_ob1.h"
|
|
|
|
#include "pml_ob1_hdr.h"
|
|
|
|
#include "pml_ob1_rdmafrag.h"
|
|
|
|
#include "pml_ob1_recvreq.h"
|
|
|
|
#include "pml_ob1_sendreq.h"
|
|
|
|
#include "ompi/mca/bml/base/base.h"
|
|
|
|
#include "ompi/memchecker.h"
|
|
|
|
|
|
|
|
size_t mca_pml_ob1_rdma_cuda_btls(
|
|
|
|
mca_bml_base_endpoint_t* bml_endpoint,
|
|
|
|
unsigned char* base,
|
|
|
|
size_t size,
|
|
|
|
mca_pml_ob1_com_btl_t* rdma_btls);
|
|
|
|
|
|
|
|
int mca_pml_ob1_cuda_need_buffers(void * rreq,
|
|
|
|
mca_btl_base_module_t* btl);
|
|
|
|
|
2013-08-22 01:00:09 +04:00
|
|
|
void mca_pml_ob1_cuda_add_ipc_support(struct mca_btl_base_module_t* btl, int32_t flags,
|
|
|
|
ompi_proc_t* errproc, char* btlinfo);
|
|
|
|
|
2012-02-24 06:13:33 +04:00
|
|
|
/**
|
|
|
|
* Handle the CUDA buffer.
|
|
|
|
*/
|
|
|
|
int mca_pml_ob1_send_request_start_cuda(mca_pml_ob1_send_request_t* sendreq,
|
|
|
|
mca_bml_base_btl_t* bml_btl,
|
|
|
|
size_t size) {
|
|
|
|
int rc;
|
2013-12-06 18:35:10 +04:00
|
|
|
#if OPAL_CUDA_GDR_SUPPORT
|
2013-11-13 17:22:39 +04:00
|
|
|
/* With some BTLs, switch to RNDV from RGET at large messages */
|
2015-06-24 06:59:57 +03:00
|
|
|
if ((sendreq->req_send.req_base.req_convertor.flags & CONVERTOR_CUDA) &&
|
2013-11-13 17:22:39 +04:00
|
|
|
(sendreq->req_send.req_bytes_packed > (bml_btl->btl->btl_cuda_rdma_limit - sizeof(mca_pml_ob1_hdr_t)))) {
|
|
|
|
return mca_pml_ob1_send_request_start_rndv(sendreq, bml_btl, 0, 0);
|
|
|
|
}
|
2015-06-24 06:59:57 +03:00
|
|
|
#endif /* OPAL_CUDA_GDR_SUPPORT */
|
2013-11-13 17:22:39 +04:00
|
|
|
|
2012-02-24 06:13:33 +04:00
|
|
|
sendreq->req_send.req_base.req_convertor.flags &= ~CONVERTOR_CUDA;
|
|
|
|
if (opal_convertor_need_buffers(&sendreq->req_send.req_base.req_convertor) == false) {
|
|
|
|
unsigned char *base;
|
|
|
|
opal_convertor_get_current_pointer( &sendreq->req_send.req_base.req_convertor, (void**)&base );
|
|
|
|
/* Set flag back */
|
|
|
|
sendreq->req_send.req_base.req_convertor.flags |= CONVERTOR_CUDA;
|
|
|
|
if( 0 != (sendreq->req_rdma_cnt = (uint32_t)mca_pml_ob1_rdma_cuda_btls(
|
|
|
|
sendreq->req_endpoint,
|
|
|
|
base,
|
|
|
|
sendreq->req_send.req_bytes_packed,
|
|
|
|
sendreq->req_rdma))) {
|
|
|
|
rc = mca_pml_ob1_send_request_start_rdma(sendreq, bml_btl,
|
|
|
|
sendreq->req_send.req_bytes_packed);
|
|
|
|
if( OPAL_UNLIKELY(OMPI_SUCCESS != rc) ) {
|
|
|
|
mca_pml_ob1_free_rdma_resources(sendreq);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (bml_btl->btl_flags & MCA_BTL_FLAGS_CUDA_PUT) {
|
|
|
|
rc = mca_pml_ob1_send_request_start_rndv(sendreq, bml_btl, size,
|
|
|
|
MCA_PML_OB1_HDR_FLAGS_CONTIG);
|
|
|
|
} else {
|
2013-01-18 02:34:43 +04:00
|
|
|
rc = mca_pml_ob1_send_request_start_rndv(sendreq, bml_btl, 0, 0);
|
2012-02-24 06:13:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Do not send anything with first rendezvous message as copying GPU
|
|
|
|
* memory into RNDV message is expensive. */
|
|
|
|
sendreq->req_send.req_base.req_convertor.flags |= CONVERTOR_CUDA;
|
|
|
|
rc = mca_pml_ob1_send_request_start_rndv(sendreq, bml_btl, 0, 0);
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2015-06-24 06:59:57 +03:00
|
|
|
|
2012-02-24 06:13:33 +04:00
|
|
|
|
|
|
|
size_t mca_pml_ob1_rdma_cuda_btls(
|
|
|
|
mca_bml_base_endpoint_t* bml_endpoint,
|
|
|
|
unsigned char* base,
|
|
|
|
size_t size,
|
|
|
|
mca_pml_ob1_com_btl_t* rdma_btls)
|
|
|
|
{
|
|
|
|
int num_btls = mca_bml_base_btl_array_get_size(&bml_endpoint->btl_send);
|
|
|
|
double weight_total = 0;
|
|
|
|
int num_btls_used = 0, n;
|
|
|
|
|
|
|
|
/* shortcut when there are no rdma capable btls */
|
|
|
|
if(num_btls == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-24 06:59:57 +03:00
|
|
|
/* check to see if memory is registered */
|
2012-02-24 06:13:33 +04:00
|
|
|
for(n = 0; n < num_btls && num_btls_used < mca_pml_ob1.max_rdma_per_request;
|
|
|
|
n++) {
|
|
|
|
mca_bml_base_btl_t* bml_btl =
|
|
|
|
mca_bml_base_btl_array_get_index(&bml_endpoint->btl_send, n);
|
|
|
|
|
|
|
|
if (bml_btl->btl_flags & MCA_BTL_FLAGS_CUDA_GET) {
|
2015-01-06 18:45:08 +03:00
|
|
|
mca_btl_base_registration_handle_t *handle = NULL;
|
2012-02-24 06:13:33 +04:00
|
|
|
|
2015-01-06 18:45:08 +03:00
|
|
|
if( NULL != bml_btl->btl->btl_register_mem ) {
|
2012-02-24 06:13:33 +04:00
|
|
|
/* register the memory */
|
2015-01-06 18:45:08 +03:00
|
|
|
handle = bml_btl->btl->btl_register_mem (bml_btl->btl, bml_btl->btl_endpoint,
|
|
|
|
base, size, MCA_BTL_REG_FLAG_CUDA_GPU_MEM |
|
|
|
|
MCA_BTL_REG_FLAG_REMOTE_READ);
|
2012-02-24 06:13:33 +04:00
|
|
|
}
|
|
|
|
|
2015-01-06 18:45:08 +03:00
|
|
|
if(NULL == handle)
|
2012-02-24 06:13:33 +04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
rdma_btls[num_btls_used].bml_btl = bml_btl;
|
2015-01-06 18:45:08 +03:00
|
|
|
rdma_btls[num_btls_used].btl_reg = handle;
|
2012-02-24 06:13:33 +04:00
|
|
|
weight_total += bml_btl->btl_weight;
|
|
|
|
num_btls_used++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we don't use leave_pinned and all BTLs that already have this memory
|
|
|
|
* registered amount to less then half of available bandwidth - fall back to
|
|
|
|
* pipeline protocol */
|
|
|
|
if(0 == num_btls_used || (!mca_pml_ob1.leave_pinned && weight_total < 0.5))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
mca_pml_ob1_calc_weighted_length(rdma_btls, num_btls_used, size,
|
|
|
|
weight_total);
|
|
|
|
|
|
|
|
return num_btls_used;
|
|
|
|
}
|
|
|
|
|
|
|
|
int mca_pml_ob1_cuda_need_buffers(void * rreq,
|
2015-06-24 06:59:57 +03:00
|
|
|
mca_btl_base_module_t* btl)
|
2012-02-24 06:13:33 +04:00
|
|
|
{
|
|
|
|
mca_pml_ob1_recv_request_t* recvreq = (mca_pml_ob1_recv_request_t*)rreq;
|
2015-06-24 06:59:57 +03:00
|
|
|
mca_bml_base_endpoint_t* bml_endpoint =
|
2013-08-30 20:54:55 +04:00
|
|
|
(mca_bml_base_endpoint_t*)recvreq->req_recv.req_base.req_proc->proc_endpoints[OMPI_PROC_ENDPOINT_TAG_BML];
|
2013-08-22 01:00:09 +04:00
|
|
|
mca_bml_base_btl_t *bml_btl = mca_bml_base_btl_array_find(&bml_endpoint->btl_send, btl);
|
|
|
|
|
2015-02-27 17:02:12 +03:00
|
|
|
/* A btl could be in the rdma list but not in the send list so check there also */
|
|
|
|
if (NULL == bml_btl) {
|
|
|
|
bml_btl = mca_bml_base_btl_array_find(&bml_endpoint->btl_rdma, btl);
|
|
|
|
}
|
|
|
|
/* We should always be able to find back the bml_btl based on the btl */
|
|
|
|
assert(NULL != bml_btl);
|
|
|
|
|
2012-02-24 06:13:33 +04:00
|
|
|
if ((recvreq->req_recv.req_base.req_convertor.flags & CONVERTOR_CUDA) &&
|
2013-08-22 01:00:09 +04:00
|
|
|
(bml_btl->btl_flags & MCA_BTL_FLAGS_CUDA_GET)) {
|
2012-02-24 06:13:33 +04:00
|
|
|
recvreq->req_recv.req_base.req_convertor.flags &= ~CONVERTOR_CUDA;
|
|
|
|
if(opal_convertor_need_buffers(&recvreq->req_recv.req_base.req_convertor) == true) {
|
|
|
|
recvreq->req_recv.req_base.req_convertor.flags |= CONVERTOR_CUDA;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
recvreq->req_recv.req_base.req_convertor.flags |= CONVERTOR_CUDA;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-08-22 01:00:09 +04:00
|
|
|
/*
|
|
|
|
* This function enables us to start using RDMA get protocol with GPU buffers.
|
|
|
|
* We do this by adjusting the flags in the BML structure. This is not the
|
|
|
|
* best thing, but this may go away if CUDA IPC is supported everywhere in the
|
|
|
|
* future. */
|
|
|
|
void mca_pml_ob1_cuda_add_ipc_support(struct mca_btl_base_module_t* btl, int32_t flags,
|
|
|
|
ompi_proc_t* errproc, char* btlinfo)
|
2015-06-24 06:59:57 +03:00
|
|
|
{
|
2013-08-22 01:00:09 +04:00
|
|
|
mca_bml_base_endpoint_t* ep;
|
|
|
|
int btl_verbose_stream = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
assert(NULL != errproc);
|
2013-08-30 20:54:55 +04:00
|
|
|
assert(NULL != errproc->proc_endpoints[OMPI_PROC_ENDPOINT_TAG_BML]);
|
2013-08-22 01:00:09 +04:00
|
|
|
if (NULL != btlinfo) {
|
|
|
|
btl_verbose_stream = *(int *)btlinfo;
|
|
|
|
}
|
2013-08-30 20:54:55 +04:00
|
|
|
ep = (mca_bml_base_endpoint_t*)errproc->proc_endpoints[OMPI_PROC_ENDPOINT_TAG_BML];
|
2013-08-22 01:00:09 +04:00
|
|
|
|
|
|
|
/* Find the corresponding bml and adjust the flag to support CUDA get */
|
|
|
|
for( i = 0; i < (int)ep->btl_send.arr_size; i++ ) {
|
|
|
|
if( ep->btl_send.bml_btls[i].btl == btl ) {
|
|
|
|
ep->btl_send.bml_btls[i].btl_flags |= MCA_BTL_FLAGS_CUDA_GET;
|
|
|
|
opal_output_verbose(5, btl_verbose_stream,
|
|
|
|
"BTL %s: rank=%d enabling CUDA IPC "
|
|
|
|
"to rank=%d on node=%s \n",
|
|
|
|
btl->btl_component->btl_version.mca_component_name,
|
|
|
|
OMPI_PROC_MY_NAME->vpid,
|
George did the work and deserves all the credit for it. Ralph did the merge, and deserves whatever blame results from errors in it :-)
WHAT: Open our low-level communication infrastructure by moving all necessary components (btl/rcache/allocator/mpool) down in OPAL
All the components required for inter-process communications are currently deeply integrated in the OMPI layer. Several groups/institutions have express interest in having a more generic communication infrastructure, without all the OMPI layer dependencies. This communication layer should be made available at a different software level, available to all layers in the Open MPI software stack. As an example, our ORTE layer could replace the current OOB and instead use the BTL directly, gaining access to more reactive network interfaces than TCP. Similarly, external software libraries could take advantage of our highly optimized AM (active message) communication layer for their own purpose. UTK with support from Sandia, developped a version of Open MPI where the entire communication infrastucture has been moved down to OPAL (btl/rcache/allocator/mpool). Most of the moved components have been updated to match the new schema, with few exceptions (mainly BTLs where I have no way of compiling/testing them). Thus, the completion of this RFC is tied to being able to completing this move for all BTLs. For this we need help from the rest of the Open MPI community, especially those supporting some of the BTLs. A non-exhaustive list of BTLs that qualify here is: mx, portals4, scif, udapl, ugni, usnic.
This commit was SVN r32317.
2014-07-26 04:47:28 +04:00
|
|
|
((ompi_process_name_t*)&errproc->super.proc_name)->vpid,
|
|
|
|
errproc->super.proc_hostname);
|
2013-08-22 01:00:09 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|