2005-06-15 23:10:26 +04:00
|
|
|
/*
|
2007-03-17 02:11:45 +03:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2008-02-18 20:39:30 +03:00
|
|
|
* Copyright (c) 2004-2008 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-06-15 23:10:26 +04:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2005-07-04 02:45:48 +04:00
|
|
|
#include "opal/threads/mutex.h"
|
2005-09-13 00:22:59 +04:00
|
|
|
#include "ompi/datatype/convertor.h"
|
2005-12-10 02:27:55 +03:00
|
|
|
#include "ompi/datatype/datatype.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/sys/atomic.h"
|
This commit represents a bunch of work on a Mercurial side branch. As
such, the commit message back to the master SVN repository is fairly
long.
= ORTE Job-Level Output Messages =
Add two new interfaces that should be used for all new code throughout
the ORTE and OMPI layers (we already make the search-and-replace on
the existing ORTE / OMPI layers):
* orte_output(): (and corresponding friends ORTE_OUTPUT,
orte_output_verbose, etc.) This function sends the output directly
to the HNP for processing as part of a job-specific output
channel. It supports all the same outputs as opal_output()
(syslog, file, stdout, stderr), but for stdout/stderr, the output
is sent to the HNP for processing and output. More on this below.
* orte_show_help(): This function is a drop-in-replacement for
opal_show_help(), with two differences in functionality:
1. the rendered text help message output is sent to the HNP for
display (rather than outputting directly into the process' stderr
stream)
1. the HNP detects duplicate help messages and does not display them
(so that you don't see the same error message N times, once from
each of your N MPI processes); instead, it counts "new" instances
of the help message and displays a message every ~5 seconds when
there are new ones ("I got X new copies of the help message...")
opal_show_help and opal_output still exist, but they only output in
the current process. The intent for the new orte_* functions is that
they can apply job-level intelligence to the output. As such, we
recommend that all new ORTE and OMPI code use the new orte_*
functions, not thei opal_* functions.
=== New code ===
For ORTE and OMPI programmers, here's what you need to do differently
in new code:
* Do not include opal/util/show_help.h or opal/util/output.h.
Instead, include orte/util/output.h (this one header file has
declarations for both the orte_output() series of functions and
orte_show_help()).
* Effectively s/opal_output/orte_output/gi throughout your code.
Note that orte_output_open() takes a slightly different argument
list (as a way to pass data to the filtering stream -- see below),
so you if explicitly call opal_output_open(), you'll need to
slightly adapt to the new signature of orte_output_open().
* Literally s/opal_show_help/orte_show_help/. The function signature
is identical.
=== Notes ===
* orte_output'ing to stream 0 will do similar to what
opal_output'ing did, so leaving a hard-coded "0" as the first
argument is safe.
* For systems that do not use ORTE's RML or the HNP, the effect of
orte_output_* and orte_show_help will be identical to their opal
counterparts (the additional information passed to
orte_output_open() will be lost!). Indeed, the orte_* functions
simply become trivial wrappers to their opal_* counterparts. Note
that we have not tested this; the code is simple but it is quite
possible that we mucked something up.
= Filter Framework =
Messages sent view the new orte_* functions described above and
messages output via the IOF on the HNP will now optionally be passed
through a new "filter" framework before being output to
stdout/stderr. The "filter" OPAL MCA framework is intended to allow
preprocessing to messages before they are sent to their final
destinations. The first component that was written in the filter
framework was to create an XML stream, segregating all the messages
into different XML tags, etc. This will allow 3rd party tools to read
the stdout/stderr from the HNP and be able to know exactly what each
text message is (e.g., a help message, another OMPI infrastructure
message, stdout from the user process, stderr from the user process,
etc.).
Filtering is not active by default. Filter components must be
specifically requested, such as:
{{{
$ mpirun --mca filter xml ...
}}}
There can only be one filter component active.
= New MCA Parameters =
The new functionality described above introduces two new MCA
parameters:
* '''orte_base_help_aggregate''': Defaults to 1 (true), meaning that
help messages will be aggregated, as described above. If set to 0,
all help messages will be displayed, even if they are duplicates
(i.e., the original behavior).
* '''orte_base_show_output_recursions''': An MCA parameter to help
debug one of the known issues, described below. It is likely that
this MCA parameter will disappear before v1.3 final.
= Known Issues =
* The XML filter component is not complete. The current output from
this component is preliminary and not real XML. A bit more work
needs to be done to configure.m4 search for an appropriate XML
library/link it in/use it at run time.
* There are possible recursion loops in the orte_output() and
orte_show_help() functions -- e.g., if RML send calls orte_output()
or orte_show_help(). We have some ideas how to fix these, but
figured that it was ok to commit before feature freeze with known
issues. The code currently contains sub-optimal workarounds so
that this will not be a problem, but it would be good to actually
solve the problem rather than have hackish workarounds before v1.3 final.
This commit was SVN r18434.
2008-05-14 00:00:55 +04:00
|
|
|
#include "orte/util/output.h"
|
2005-07-04 05:36:20 +04:00
|
|
|
#include "opal/util/if.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/util/proc_info.h"
|
2005-07-04 06:16:57 +04:00
|
|
|
#include "opal/util/printf.h"
|
2005-09-13 00:22:59 +04:00
|
|
|
#include "ompi/class/ompi_fifo.h"
|
|
|
|
#include "ompi/class/ompi_free_list.h"
|
|
|
|
#include "ompi/mca/pml/pml.h"
|
|
|
|
#include "ompi/mca/btl/btl.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mca/mpool/base/base.h"
|
2005-06-30 09:50:55 +04:00
|
|
|
#include "btl_self.h"
|
|
|
|
#include "btl_self_frag.h"
|
2005-09-13 00:22:59 +04:00
|
|
|
#include "ompi/proc/proc.h"
|
2005-06-30 09:50:55 +04:00
|
|
|
|
|
|
|
mca_btl_base_module_t mca_btl_self = {
|
|
|
|
&mca_btl_self_component.super,
|
|
|
|
0, /* btl_eager_limit */
|
2007-12-16 11:35:17 +03:00
|
|
|
0, /* btl_rndv_eager_limit */
|
2005-06-30 09:50:55 +04:00
|
|
|
0, /* btl_max_send_size */
|
2007-06-21 11:12:40 +04:00
|
|
|
0, /* btl_rdma_pipeline_send_length */
|
2007-05-17 11:54:27 +04:00
|
|
|
0, /* btl_rdma_pipeline_frag_size */
|
|
|
|
0, /* btl_min_rdma_pipeline_size */
|
2005-06-30 09:50:55 +04:00
|
|
|
0, /* btl_exclusivity */
|
|
|
|
0, /* btl_latency */
|
|
|
|
0, /* btl_bandwidth */
|
|
|
|
0, /* btl flags */
|
|
|
|
mca_btl_self_add_procs,
|
|
|
|
mca_btl_self_del_procs,
|
2008-01-15 08:32:53 +03:00
|
|
|
NULL,
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_self_finalize,
|
|
|
|
mca_btl_self_alloc,
|
|
|
|
mca_btl_self_free,
|
|
|
|
mca_btl_self_prepare_src,
|
|
|
|
mca_btl_self_prepare_dst,
|
2008-05-30 07:58:39 +04:00
|
|
|
mca_btl_self_send,
|
|
|
|
NULL, /* send immediate */
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_self_rdma, /* put */
|
2006-10-27 03:11:26 +04:00
|
|
|
mca_btl_self_rdma, /* get */
|
2006-08-18 02:02:01 +04:00
|
|
|
mca_btl_base_dump,
|
|
|
|
NULL, /* mpool */
|
2007-03-17 02:11:45 +03:00
|
|
|
NULL, /* register error cb */
|
|
|
|
mca_btl_self_ft_event
|
2005-06-15 23:10:26 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-10-27 03:11:26 +04:00
|
|
|
int mca_btl_self_add_procs( struct mca_btl_base_module_t* btl,
|
|
|
|
size_t nprocs,
|
|
|
|
struct ompi_proc_t **procs,
|
|
|
|
struct mca_btl_base_endpoint_t **peers,
|
|
|
|
ompi_bitmap_t* reachability )
|
2005-06-15 23:10:26 +04:00
|
|
|
{
|
2006-11-08 20:02:46 +03:00
|
|
|
int i;
|
2006-10-27 03:11:26 +04:00
|
|
|
|
2006-11-08 20:02:46 +03:00
|
|
|
for( i = 0; i < (int)nprocs; i++ ) {
|
2006-10-27 03:11:26 +04:00
|
|
|
if( procs[i] == ompi_proc_local_proc ) {
|
|
|
|
ompi_bitmap_set_bit( reachability, i );
|
|
|
|
break; /* there will always be only one ... */
|
2005-06-20 20:38:19 +04:00
|
|
|
}
|
2005-06-15 23:10:26 +04:00
|
|
|
}
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-27 03:11:26 +04:00
|
|
|
int mca_btl_self_del_procs( struct mca_btl_base_module_t* btl,
|
|
|
|
size_t nprocs,
|
|
|
|
struct ompi_proc_t **procs,
|
|
|
|
struct mca_btl_base_endpoint_t **peers )
|
2005-06-15 23:10:26 +04:00
|
|
|
{
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2005-06-30 09:50:55 +04:00
|
|
|
* MCA->BTL Clean up any resources held by BTL module
|
2005-06-15 23:10:26 +04:00
|
|
|
* before the module is unloaded.
|
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* @param btl (IN) BTL module.
|
2005-06-15 23:10:26 +04:00
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* Prior to unloading a BTL module, the MCA framework will call
|
|
|
|
* the BTL finalize method of the module. Any resources held by
|
|
|
|
* the BTL should be released and if required the memory corresponding
|
|
|
|
* to the BTL module freed.
|
2005-06-15 23:10:26 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-06-30 09:50:55 +04:00
|
|
|
int mca_btl_self_finalize(struct mca_btl_base_module_t* btl)
|
2005-06-15 23:10:26 +04:00
|
|
|
{
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate a segment.
|
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* @param btl (IN) BTL module
|
2005-06-15 23:10:26 +04:00
|
|
|
* @param size (IN) Request segment size.
|
|
|
|
*/
|
2007-12-09 17:00:42 +03:00
|
|
|
mca_btl_base_descriptor_t* mca_btl_self_alloc(
|
|
|
|
struct mca_btl_base_module_t* btl,
|
|
|
|
struct mca_btl_base_endpoint_t* endpoint,
|
|
|
|
uint8_t order,
|
2007-12-09 17:08:01 +03:00
|
|
|
size_t size,
|
|
|
|
uint32_t flags)
|
2005-06-15 23:10:26 +04:00
|
|
|
{
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_self_frag_t* frag;
|
2005-06-15 23:10:26 +04:00
|
|
|
int rc;
|
2005-06-30 09:50:55 +04:00
|
|
|
if(size <= mca_btl_self.btl_eager_limit) {
|
|
|
|
MCA_BTL_SELF_FRAG_ALLOC_EAGER(frag,rc);
|
2006-02-22 20:03:04 +03:00
|
|
|
frag->segment.seg_len = size;
|
2006-02-22 20:37:59 +03:00
|
|
|
} else if (size <= btl->btl_max_send_size) {
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SELF_FRAG_ALLOC_SEND(frag,rc);
|
2006-02-22 20:37:59 +03:00
|
|
|
frag->segment.seg_len = size;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
2005-06-15 23:10:26 +04:00
|
|
|
}
|
2006-02-22 20:37:59 +03:00
|
|
|
|
2008-02-18 20:39:30 +03:00
|
|
|
frag->base.des_flags = flags;
|
2006-10-27 03:11:26 +04:00
|
|
|
frag->base.des_src = &(frag->segment);
|
|
|
|
frag->base.des_src_cnt = 1;
|
2005-06-30 09:50:55 +04:00
|
|
|
return (mca_btl_base_descriptor_t*)frag;
|
2005-06-15 23:10:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-06-30 09:50:55 +04:00
|
|
|
* Return a segment allocated by this BTL.
|
2005-06-15 23:10:26 +04:00
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* @param btl (IN) BTL module
|
2005-06-15 23:10:26 +04:00
|
|
|
* @param segment (IN) Allocated segment.
|
|
|
|
*/
|
2006-10-27 03:11:26 +04:00
|
|
|
int mca_btl_self_free( struct mca_btl_base_module_t* btl,
|
|
|
|
mca_btl_base_descriptor_t* des )
|
2005-06-15 23:10:26 +04:00
|
|
|
{
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_self_frag_t* frag = (mca_btl_self_frag_t*)des;
|
2006-10-27 03:11:26 +04:00
|
|
|
|
|
|
|
frag->base.des_src = NULL;
|
|
|
|
frag->base.des_src_cnt = 0;
|
|
|
|
frag->base.des_dst = NULL;
|
|
|
|
frag->base.des_dst_cnt = 0;
|
|
|
|
|
2006-10-25 12:45:29 +04:00
|
|
|
if(frag->size == mca_btl_self.btl_eager_limit) {
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SELF_FRAG_RETURN_EAGER(frag);
|
2006-10-25 12:45:29 +04:00
|
|
|
} else if (frag->size == mca_btl_self.btl_max_send_size) {
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SELF_FRAG_RETURN_SEND(frag);
|
2005-06-15 23:10:26 +04:00
|
|
|
} else {
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SELF_FRAG_RETURN_RDMA(frag);
|
2005-06-15 23:10:26 +04:00
|
|
|
}
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare data for send/put
|
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* @param btl (IN) BTL module
|
2005-06-15 23:10:26 +04:00
|
|
|
*/
|
2008-04-02 10:37:42 +04:00
|
|
|
struct mca_btl_base_descriptor_t*
|
|
|
|
mca_btl_self_prepare_src( struct mca_btl_base_module_t* btl,
|
|
|
|
struct mca_btl_base_endpoint_t* endpoint,
|
|
|
|
mca_mpool_base_registration_t* registration,
|
|
|
|
struct ompi_convertor_t* convertor,
|
|
|
|
uint8_t order,
|
|
|
|
size_t reserve,
|
|
|
|
size_t* size,
|
|
|
|
uint32_t flags )
|
2005-06-15 23:10:26 +04:00
|
|
|
{
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_self_frag_t* frag;
|
2005-06-15 23:10:26 +04:00
|
|
|
struct iovec iov;
|
|
|
|
uint32_t iov_count = 1;
|
|
|
|
size_t max_data = *size;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/* non-contigous data */
|
2006-10-27 03:11:26 +04:00
|
|
|
if( ompi_convertor_need_buffers(convertor) ||
|
|
|
|
max_data < mca_btl_self.btl_max_send_size ||
|
|
|
|
reserve != 0 ) {
|
|
|
|
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SELF_FRAG_ALLOC_SEND(frag, rc);
|
2005-06-15 23:10:26 +04:00
|
|
|
if(NULL == frag) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(reserve + max_data > frag->size) {
|
|
|
|
max_data = frag->size - reserve;
|
|
|
|
}
|
|
|
|
iov.iov_len = max_data;
|
2006-08-24 20:38:08 +04:00
|
|
|
iov.iov_base = (IOVBASE_TYPE*)((unsigned char*)(frag+1) + reserve);
|
2005-06-15 23:10:26 +04:00
|
|
|
|
2006-10-27 03:11:26 +04:00
|
|
|
rc = ompi_convertor_pack(convertor, &iov, &iov_count, &max_data );
|
2005-06-15 23:10:26 +04:00
|
|
|
if(rc < 0) {
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SELF_FRAG_RETURN_SEND(frag);
|
2005-06-15 23:10:26 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2007-01-05 01:07:37 +03:00
|
|
|
frag->segment.seg_addr.pval = frag+1;
|
2005-06-15 23:10:26 +04:00
|
|
|
frag->segment.seg_len = reserve + max_data;
|
|
|
|
*size = max_data;
|
|
|
|
} else {
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SELF_FRAG_ALLOC_RDMA(frag, rc);
|
2005-06-15 23:10:26 +04:00
|
|
|
if(NULL == frag) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
iov.iov_len = max_data;
|
|
|
|
iov.iov_base = NULL;
|
|
|
|
|
|
|
|
/* convertor should return offset into users buffer */
|
2006-10-27 03:11:26 +04:00
|
|
|
rc = ompi_convertor_pack(convertor, &iov, &iov_count, &max_data );
|
2005-06-15 23:10:26 +04:00
|
|
|
if(rc < 0) {
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SELF_FRAG_RETURN_RDMA(frag);
|
2005-06-15 23:10:26 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2007-01-05 01:07:37 +03:00
|
|
|
frag->segment.seg_addr.pval = iov.iov_base;
|
2005-12-06 02:36:33 +03:00
|
|
|
frag->segment.seg_len = max_data;
|
2005-06-15 23:10:26 +04:00
|
|
|
*size = max_data;
|
|
|
|
}
|
2008-02-18 20:39:30 +03:00
|
|
|
frag->base.des_flags = flags;
|
2006-10-27 03:11:26 +04:00
|
|
|
frag->base.des_src = &frag->segment;
|
|
|
|
frag->base.des_src_cnt = 1;
|
|
|
|
frag->segment.seg_key.key64 = (uint64_t)(intptr_t)convertor;
|
2005-06-15 23:10:26 +04:00
|
|
|
return &frag->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare data for receive.
|
|
|
|
*/
|
2008-04-02 10:37:42 +04:00
|
|
|
struct mca_btl_base_descriptor_t*
|
|
|
|
mca_btl_self_prepare_dst( struct mca_btl_base_module_t* btl,
|
|
|
|
struct mca_btl_base_endpoint_t* endpoint,
|
|
|
|
mca_mpool_base_registration_t* registration,
|
|
|
|
struct ompi_convertor_t* convertor,
|
|
|
|
uint8_t order,
|
|
|
|
size_t reserve,
|
|
|
|
size_t* size,
|
|
|
|
uint32_t flags )
|
2005-06-15 23:10:26 +04:00
|
|
|
{
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_self_frag_t* frag;
|
2005-06-15 23:10:26 +04:00
|
|
|
size_t max_data = *size;
|
|
|
|
int rc;
|
|
|
|
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SELF_FRAG_ALLOC_RDMA(frag, rc);
|
2005-06-15 23:10:26 +04:00
|
|
|
if(NULL == frag) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* setup descriptor to point directly to user buffer */
|
2007-03-31 02:02:45 +04:00
|
|
|
ompi_convertor_get_current_pointer( convertor, (void**)&(frag->segment.seg_addr.pval) );
|
2005-06-15 23:10:26 +04:00
|
|
|
frag->segment.seg_len = reserve + max_data;
|
2006-10-27 03:11:26 +04:00
|
|
|
frag->segment.seg_key.key64 = (uint64_t)(intptr_t)convertor;
|
2005-06-20 20:38:19 +04:00
|
|
|
frag->base.des_dst = &frag->segment;
|
|
|
|
frag->base.des_dst_cnt = 1;
|
2008-02-18 20:39:30 +03:00
|
|
|
frag->base.des_flags = flags;
|
2005-06-15 23:10:26 +04:00
|
|
|
return &frag->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initiate a send to the peer.
|
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* @param btl (IN) BTL module
|
|
|
|
* @param peer (IN) BTL peer addressing
|
2005-06-15 23:10:26 +04:00
|
|
|
*/
|
|
|
|
|
2006-10-27 03:11:26 +04:00
|
|
|
int mca_btl_self_send( struct mca_btl_base_module_t* btl,
|
|
|
|
struct mca_btl_base_endpoint_t* endpoint,
|
|
|
|
struct mca_btl_base_descriptor_t* des,
|
|
|
|
mca_btl_base_tag_t tag )
|
2005-06-15 23:10:26 +04:00
|
|
|
{
|
2008-01-15 08:32:53 +03:00
|
|
|
mca_btl_active_message_callback_t* reg;
|
2008-02-18 20:39:30 +03:00
|
|
|
int btl_ownership = (des->des_flags & MCA_BTL_DES_FLAGS_BTL_OWNERSHIP);
|
2008-01-15 08:32:53 +03:00
|
|
|
|
2006-06-20 18:11:09 +04:00
|
|
|
/**
|
|
|
|
* We have to set the dst before the call to the function and reset them
|
|
|
|
* after.
|
|
|
|
*/
|
|
|
|
des->des_dst = des->des_src;
|
|
|
|
des->des_dst_cnt = des->des_src_cnt;
|
2005-06-20 20:38:19 +04:00
|
|
|
/* upcall */
|
2008-01-15 08:32:53 +03:00
|
|
|
reg = mca_btl_base_active_message_trigger + tag;
|
|
|
|
reg->cbfunc( btl, tag, des, reg->cbdata );
|
2006-06-20 18:11:09 +04:00
|
|
|
des->des_dst = NULL;
|
|
|
|
des->des_dst_cnt = 0;
|
2005-06-20 20:38:19 +04:00
|
|
|
/* send completion */
|
2008-05-30 07:58:39 +04:00
|
|
|
if( des->des_flags & MCA_BTL_DES_SEND_ALWAYS_CALLBACK ) {
|
|
|
|
des->des_cbfunc( btl, endpoint, des, OMPI_SUCCESS );
|
|
|
|
}
|
2008-02-18 20:39:30 +03:00
|
|
|
if( btl_ownership ) {
|
|
|
|
mca_btl_self_free( btl, des );
|
|
|
|
}
|
2008-05-30 07:58:39 +04:00
|
|
|
return 1;
|
2005-06-20 20:38:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initiate a put to the peer.
|
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* @param btl (IN) BTL module
|
|
|
|
* @param peer (IN) BTL peer addressing
|
2005-06-20 20:38:19 +04:00
|
|
|
*/
|
|
|
|
|
2006-10-27 03:11:26 +04:00
|
|
|
int mca_btl_self_rdma( struct mca_btl_base_module_t* btl,
|
|
|
|
struct mca_btl_base_endpoint_t* endpoint,
|
|
|
|
struct mca_btl_base_descriptor_t* des )
|
2005-06-20 20:38:19 +04:00
|
|
|
{
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_base_segment_t* src = des->des_src;
|
|
|
|
mca_btl_base_segment_t* dst = des->des_dst;
|
2005-06-20 20:38:19 +04:00
|
|
|
size_t src_cnt = des->des_src_cnt;
|
|
|
|
size_t dst_cnt = des->des_dst_cnt;
|
2007-01-05 01:07:37 +03:00
|
|
|
unsigned char* src_addr = (unsigned char*)src->seg_addr.pval;
|
2005-06-20 20:38:19 +04:00
|
|
|
size_t src_len = src->seg_len;
|
2007-01-14 23:34:41 +03:00
|
|
|
unsigned char* dst_addr = (unsigned char*)ompi_ptr_ltop(dst->seg_addr.lval);
|
2005-06-20 20:38:19 +04:00
|
|
|
size_t dst_len = dst->seg_len;
|
2008-02-18 20:39:30 +03:00
|
|
|
int btl_ownership = (des->des_flags & MCA_BTL_DES_FLAGS_BTL_OWNERSHIP);
|
2005-06-20 20:38:19 +04:00
|
|
|
|
|
|
|
while(src_len && dst_len) {
|
|
|
|
|
|
|
|
if(src_len == dst_len) {
|
|
|
|
memcpy(dst_addr, src_addr, src_len);
|
|
|
|
|
|
|
|
/* advance src */
|
|
|
|
if(--src_cnt != 0) {
|
|
|
|
src++;
|
2007-01-05 01:07:37 +03:00
|
|
|
src_addr = (unsigned char*)src->seg_addr.pval;
|
2005-06-20 20:38:19 +04:00
|
|
|
src_len = src->seg_len;
|
|
|
|
} else {
|
|
|
|
src_len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* advance dst */
|
|
|
|
if(--dst_cnt != 0) {
|
|
|
|
dst++;
|
2007-01-05 01:07:37 +03:00
|
|
|
dst_addr = (unsigned char*)dst->seg_addr.pval;
|
2005-06-20 20:38:19 +04:00
|
|
|
dst_len = dst->seg_len;
|
|
|
|
} else {
|
|
|
|
dst_len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
size_t bytes = src_len < dst_len ? src_len : dst_len;
|
|
|
|
memcpy(dst_addr, src_addr, bytes);
|
|
|
|
|
|
|
|
/* advance src */
|
|
|
|
src_len -= bytes;
|
|
|
|
if(src_len == 0) {
|
|
|
|
if(--src_cnt != 0) {
|
|
|
|
src++;
|
2007-01-05 01:07:37 +03:00
|
|
|
src_addr = (unsigned char*)src->seg_addr.pval;
|
2005-06-20 20:38:19 +04:00
|
|
|
src_len = src->seg_len;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
src_addr += bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* advance dst */
|
|
|
|
dst_len -= bytes;
|
|
|
|
if(dst_len == 0) {
|
|
|
|
if(--dst_cnt != 0) {
|
|
|
|
dst++;
|
2007-01-05 01:07:37 +03:00
|
|
|
dst_addr = (unsigned char*)src->seg_addr.pval;
|
2005-06-20 20:38:19 +04:00
|
|
|
dst_len = src->seg_len;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dst_addr += bytes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rdma completion */
|
2008-02-18 20:39:30 +03:00
|
|
|
des->des_cbfunc( btl, endpoint, des, OMPI_SUCCESS );
|
|
|
|
if( btl_ownership ) {
|
|
|
|
mca_btl_self_free( btl, des );
|
|
|
|
}
|
2005-06-15 23:10:26 +04:00
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
2007-03-17 02:11:45 +03:00
|
|
|
|
|
|
|
int mca_btl_self_ft_event(int state) {
|
|
|
|
if(OPAL_CRS_CHECKPOINT == state) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
else if(OPAL_CRS_CONTINUE == state) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
else if(OPAL_CRS_RESTART == state) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
else if(OPAL_CRS_TERM == state ) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|