2005-05-24 02:06:50 +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.
|
2008-03-09 16:17:13 +03:00
|
|
|
* Copyright (c) 2004-2007 High Performance Computing Center Stuttgart,
|
2005-05-24 02:06:50 +04:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2007-10-22 16:07:22 +04:00
|
|
|
* Copyright (c) 2006-2007 Voltaire. All rights reserved.
|
2005-05-24 02:06:50 +04:00
|
|
|
* $COPYRIGHT$
|
2008-03-09 16:17:13 +03:00
|
|
|
*
|
2005-05-24 02:06:50 +04:00
|
|
|
* Additional copyrights may follow
|
2008-03-09 16:17:13 +03:00
|
|
|
*
|
2005-05-24 02:06:50 +04:00
|
|
|
* $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"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/sys/atomic.h"
|
2005-07-04 03:31:27 +04:00
|
|
|
#include "opal/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"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/util/sys_info.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"
|
|
|
|
#include "ompi/mca/common/sm/common_sm_mmap.h"
|
2005-06-30 09:50:55 +04:00
|
|
|
#include "btl_sm.h"
|
|
|
|
#include "btl_sm_endpoint.h"
|
|
|
|
#include "btl_sm_frag.h"
|
2005-07-28 20:25:09 +04:00
|
|
|
#include "btl_sm_fifo.h"
|
2005-09-13 00:22:59 +04:00
|
|
|
#include "ompi/proc/proc.h"
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2007-03-20 11:15:58 +03:00
|
|
|
mca_btl_sm_t mca_btl_sm = {
|
2005-05-24 02:06:50 +04:00
|
|
|
{
|
2005-06-30 09:50:55 +04:00
|
|
|
&mca_btl_sm_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 */
|
2007-03-20 11:15:58 +03:00
|
|
|
mca_btl_sm_add_procs,
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_sm_del_procs,
|
2008-01-15 08:32:53 +03:00
|
|
|
NULL,
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_sm_finalize,
|
|
|
|
mca_btl_sm_alloc,
|
|
|
|
mca_btl_sm_free,
|
|
|
|
mca_btl_sm_prepare_src,
|
2005-06-01 18:34:22 +04:00
|
|
|
NULL,
|
2008-03-09 16:17:13 +03:00
|
|
|
mca_btl_sm_send,
|
2005-05-24 02:06:50 +04:00
|
|
|
NULL, /* put */
|
2006-03-17 20:39:41 +03:00
|
|
|
NULL, /* get */
|
2006-08-18 02:02:01 +04:00
|
|
|
mca_btl_base_dump,
|
|
|
|
NULL, /* mpool */
|
2007-03-17 02:11:45 +03:00
|
|
|
mca_btl_sm_register_error_cb, /* register error */
|
|
|
|
mca_btl_sm_ft_event
|
2005-05-24 02:06:50 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-03-20 11:15:58 +03:00
|
|
|
/*
|
|
|
|
* calculate offset of an address from the beginning of a shared memory segment
|
|
|
|
*/
|
|
|
|
#define ADDR2OFFSET(ADDR, BASE) ((char*)(ADDR) - (char*)(BASE))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* calculate an absolute address in a local address space given an offset and
|
|
|
|
* a base address of a shared memory segment
|
|
|
|
*/
|
|
|
|
#define OFFSET2ADDR(OFFSET, BASE) ((ptrdiff_t)(OFFSET) + (char*)(BASE))
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
|
|
|
|
static void *mpool_calloc(size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
void *buf;
|
|
|
|
size_t bsize = nmemb * size;
|
|
|
|
|
|
|
|
buf = mca_btl_sm_component.sm_mpool->mpool_alloc(
|
|
|
|
mca_btl_sm_component.sm_mpool, bsize, CACHE_LINE_SIZE, 0, NULL);
|
|
|
|
if (NULL == buf)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
memset(buf, 0, bsize);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int init_fifos(ompi_fifo_t *f, int n)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
for(j=0; j < n; j++) {
|
|
|
|
f[j].head = (ompi_cb_fifo_wrapper_t*)OMPI_CB_FREE;
|
|
|
|
f[j].tail = (ompi_cb_fifo_wrapper_t*)OMPI_CB_FREE;
|
|
|
|
if(opal_using_threads()) {
|
|
|
|
char *buf = mpool_calloc(2, CACHE_LINE_SIZE);
|
|
|
|
/* allocate head and tail locks on different cache lines */
|
|
|
|
if(NULL == buf)
|
|
|
|
return OMPI_ERROR;
|
|
|
|
|
|
|
|
f[j].head_lock = (opal_atomic_lock_t*)buf;
|
|
|
|
f[j].tail_lock = (opal_atomic_lock_t*)(buf + CACHE_LINE_SIZE);
|
|
|
|
opal_atomic_init(f[j].head_lock, OPAL_ATOMIC_UNLOCKED);
|
|
|
|
opal_atomic_init(f[j].tail_lock, OPAL_ATOMIC_UNLOCKED);
|
|
|
|
} else {
|
|
|
|
f[j].head_lock = NULL;
|
|
|
|
f[j].tail_lock = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
2008-03-12 13:01:20 +03:00
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
static int sm_btl_first_time_init(mca_btl_sm_t *sm_btl, int n)
|
|
|
|
{
|
|
|
|
size_t size, length, length_payload;
|
|
|
|
char *sm_ctl_file;
|
|
|
|
ompi_fifo_t *my_fifos;
|
|
|
|
|
|
|
|
/* lookup shared memory pool */
|
|
|
|
mca_btl_sm_component.sm_mpool =
|
|
|
|
mca_mpool_base_module_lookup(mca_btl_sm_component.sm_mpool_name);
|
|
|
|
if(NULL == mca_btl_sm_component.sm_mpool) {
|
|
|
|
mca_btl_sm_component.sm_mpool =
|
|
|
|
mca_mpool_base_module_create(mca_btl_sm_component.sm_mpool_name,
|
|
|
|
sm_btl, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sanity check to ensure that we found it */
|
|
|
|
if(NULL == mca_btl_sm_component.sm_mpool)
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
|
|
|
|
mca_btl_sm_component.sm_mpool_base =
|
|
|
|
mca_btl_sm_component.sm_mpool->mpool_base(mca_btl_sm_component.sm_mpool);
|
|
|
|
|
|
|
|
/* set the shared memory offset */
|
|
|
|
mca_btl_sm_component.sm_offset = (ptrdiff_t*)calloc(n, sizeof(ptrdiff_t));
|
|
|
|
if(NULL == mca_btl_sm_component.sm_offset)
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
|
|
|
|
/* create a list of peers */
|
|
|
|
mca_btl_sm_component.sm_peers = (struct mca_btl_base_endpoint_t**)
|
|
|
|
calloc(n, sizeof(struct mca_btl_base_endpoint_t*));
|
|
|
|
if(NULL == mca_btl_sm_component.sm_peers)
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
|
|
|
|
/* Allocate Shared Memory BTL process coordination
|
|
|
|
* data structure. This will reside in shared memory */
|
|
|
|
|
|
|
|
/* set file name */
|
|
|
|
if(asprintf(&sm_ctl_file, "%s"OPAL_PATH_SEP"shared_mem_btl_module.%s",
|
|
|
|
orte_process_info.job_session_dir,
|
|
|
|
orte_system_info.nodename) < 0)
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
|
|
|
|
/* Pass in a data segment alignment of 0 to get no data
|
|
|
|
segment (only the shared control structure) */
|
2008-03-16 13:01:56 +03:00
|
|
|
size = sizeof(mca_common_sm_file_header_t) +
|
|
|
|
n * (sizeof(ompi_fifo_t*) + sizeof(char *)) + CACHE_LINE_SIZE;
|
|
|
|
if(!(mca_btl_sm_component.mmap_file =
|
|
|
|
mca_common_sm_mmap_init(size, sm_ctl_file,
|
|
|
|
sizeof(mca_common_sm_file_header_t),
|
|
|
|
CACHE_LINE_SIZE))) {
|
2008-03-11 17:39:10 +03:00
|
|
|
opal_output(0, "mca_btl_sm_add_procs: unable to create shared memory "
|
|
|
|
"BTL coordinating strucure :: size %lu \n",
|
|
|
|
(unsigned long)size);
|
|
|
|
free(sm_ctl_file);
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(sm_ctl_file);
|
|
|
|
|
|
|
|
/* set the pointer to the shared memory control structure */
|
2008-03-16 13:01:56 +03:00
|
|
|
mca_btl_sm_component.sm_ctl_header =
|
|
|
|
(mca_common_sm_file_header_t*)mca_btl_sm_component.mmap_file->map_seg;
|
2008-03-11 17:39:10 +03:00
|
|
|
|
2008-03-16 13:01:56 +03:00
|
|
|
|
|
|
|
/* check to make sure number of local procs is within the
|
|
|
|
* specified limits */
|
|
|
|
if(mca_btl_sm_component.sm_max_procs > 0 &&
|
|
|
|
mca_btl_sm_component.num_smp_procs + n >
|
|
|
|
mca_btl_sm_component.sm_max_procs) {
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
|
2008-03-17 16:37:57 +03:00
|
|
|
mca_btl_sm_component.shm_fifo = (ompi_fifo_t **)mca_btl_sm_component.mmap_file->data_addr;
|
2008-03-16 13:01:56 +03:00
|
|
|
mca_btl_sm_component.shm_bases = (char**)(mca_btl_sm_component.shm_fifo + n);
|
|
|
|
|
|
|
|
/* Sync with other local procs. (Do we have to?) */
|
|
|
|
if(0 == mca_btl_sm_component.my_smp_rank) {
|
2008-03-11 17:39:10 +03:00
|
|
|
mca_btl_sm_component.mmap_file->map_seg->seg_inited = true;
|
|
|
|
|
|
|
|
/* memory barrier to ensure this flag is set before other
|
|
|
|
* flags are set */
|
2008-03-16 13:01:56 +03:00
|
|
|
opal_atomic_wmb();
|
2008-03-11 17:39:10 +03:00
|
|
|
} else {
|
|
|
|
while(!mca_btl_sm_component.mmap_file->map_seg->seg_inited) {
|
|
|
|
opal_atomic_rmb();
|
|
|
|
opal_progress();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-16 13:01:56 +03:00
|
|
|
/* set the base of the shared memory segment */
|
|
|
|
mca_btl_sm_component.shm_bases[mca_btl_sm_component.my_smp_rank] =
|
2008-03-11 17:39:10 +03:00
|
|
|
(char*)mca_btl_sm_component.sm_mpool_base;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* initialize the array of fifo's "owned" by this process
|
|
|
|
* The virtual addresses are valid only in the sender's
|
|
|
|
* address space - unless the base of the shared memory
|
|
|
|
* segment is mapped at the same location in the reader's
|
|
|
|
* virtual address space.
|
|
|
|
*/
|
|
|
|
if(NULL == (my_fifos = (ompi_fifo_t*)mpool_calloc(n, sizeof(ompi_fifo_t))))
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
|
|
|
|
if(init_fifos(my_fifos, n) != OMPI_SUCCESS)
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
|
2008-03-16 13:01:56 +03:00
|
|
|
mca_btl_sm_component.shm_fifo[mca_btl_sm_component.my_smp_rank] = my_fifos;
|
2008-03-11 17:39:10 +03:00
|
|
|
|
|
|
|
opal_atomic_wmb();
|
|
|
|
|
|
|
|
/* cache the pointer to the 2d fifo array. These addresses
|
|
|
|
* are valid in the current process space */
|
|
|
|
mca_btl_sm_component.fifo = (ompi_fifo_t**)malloc(sizeof(ompi_fifo_t*) * n);
|
|
|
|
|
|
|
|
if(NULL == mca_btl_sm_component.fifo)
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
|
|
|
|
mca_btl_sm_component.fifo[mca_btl_sm_component.my_smp_rank] = my_fifos;
|
|
|
|
|
|
|
|
/* initialize fragment descriptor free lists */
|
|
|
|
|
|
|
|
/* allocation will be for the fragment descriptor and payload buffer */
|
|
|
|
length = sizeof(mca_btl_sm_frag1_t);
|
|
|
|
length_payload =
|
|
|
|
sizeof(mca_btl_sm_hdr_t) + mca_btl_sm_component.eager_limit;
|
|
|
|
ompi_free_list_init_new(&mca_btl_sm_component.sm_frags1, length,
|
|
|
|
CACHE_LINE_SIZE, OBJ_CLASS(mca_btl_sm_frag1_t),
|
|
|
|
length_payload, CACHE_LINE_SIZE,
|
|
|
|
mca_btl_sm_component.sm_free_list_num,
|
|
|
|
mca_btl_sm_component.sm_free_list_max,
|
|
|
|
mca_btl_sm_component.sm_free_list_inc,
|
|
|
|
mca_btl_sm_component.sm_mpool);
|
|
|
|
|
|
|
|
length = sizeof(mca_btl_sm_frag2_t);
|
|
|
|
length_payload =
|
|
|
|
sizeof(mca_btl_sm_hdr_t) + mca_btl_sm_component.max_frag_size;
|
|
|
|
ompi_free_list_init_new(&mca_btl_sm_component.sm_frags2, length,
|
|
|
|
CACHE_LINE_SIZE, OBJ_CLASS(mca_btl_sm_frag2_t),
|
|
|
|
length_payload, CACHE_LINE_SIZE,
|
|
|
|
mca_btl_sm_component.sm_free_list_num,
|
|
|
|
mca_btl_sm_component.sm_free_list_max,
|
|
|
|
mca_btl_sm_component.sm_free_list_inc,
|
|
|
|
mca_btl_sm_component.sm_mpool);
|
|
|
|
|
|
|
|
ompi_free_list_init_new(&mca_btl_sm_component.sm_frags,
|
|
|
|
sizeof(mca_btl_sm_frag_t), CACHE_LINE_SIZE,
|
|
|
|
OBJ_CLASS(mca_btl_sm_frag_t), 0, CACHE_LINE_SIZE,
|
|
|
|
mca_btl_sm_component.sm_free_list_num,
|
|
|
|
-1,
|
|
|
|
mca_btl_sm_component.sm_free_list_inc,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
opal_free_list_init(&mca_btl_sm_component.pending_send_fl,
|
|
|
|
sizeof(btl_sm_pending_send_item_t),
|
|
|
|
OBJ_CLASS(opal_free_list_item_t),
|
|
|
|
16, -1, 32);
|
|
|
|
|
|
|
|
/* set flag indicating btl has been inited */
|
|
|
|
sm_btl->btl_inited = true;
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct mca_btl_base_endpoint_t *
|
|
|
|
create_sm_endpoint(int local_proc, struct ompi_proc_t *proc)
|
|
|
|
{
|
|
|
|
struct mca_btl_base_endpoint_t *ep;
|
|
|
|
#if OMPI_ENABLE_PROGRESS_THREADS == 1
|
|
|
|
char path[PATH_MAX];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ep = (struct mca_btl_base_endpoint_t*)
|
|
|
|
malloc(sizeof(struct mca_btl_base_endpoint_t));
|
|
|
|
if(NULL == ep)
|
|
|
|
return NULL;
|
|
|
|
ep->peer_smp_rank = local_proc + mca_btl_sm_component.num_smp_procs;
|
|
|
|
|
|
|
|
OBJ_CONSTRUCT(&ep->pending_sends, opal_list_t);
|
|
|
|
#if OMPI_ENABLE_PROGRESS_THREADS == 1
|
|
|
|
sprintf(path, "%s"OPAL_PATH_SEP"sm_fifo.%lu",
|
|
|
|
orte_process_info.job_session_dir,
|
|
|
|
(unsigned long)proc->proc_name.vpid);
|
|
|
|
ep->fifo_fd = open(path, O_WRONLY);
|
|
|
|
if(ep->fifo_fd < 0) {
|
|
|
|
opal_output(0, "mca_btl_sm_add_procs: open(%s) failed with errno=%d\n",
|
|
|
|
path, errno);
|
|
|
|
free(ep);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return ep;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void calc_sm_max_procs(int n)
|
|
|
|
{
|
|
|
|
/* see if need to allocate space for extra procs */
|
|
|
|
if(0 > mca_btl_sm_component.sm_max_procs) {
|
|
|
|
/* no limit */
|
|
|
|
if(0 <= mca_btl_sm_component.sm_extra_procs) {
|
|
|
|
/* limit */
|
|
|
|
mca_btl_sm_component.sm_max_procs =
|
|
|
|
n + mca_btl_sm_component.sm_extra_procs;
|
|
|
|
} else {
|
|
|
|
/* no limit */
|
|
|
|
mca_btl_sm_component.sm_max_procs = 2 * n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-20 11:15:58 +03:00
|
|
|
int mca_btl_sm_add_procs(
|
2008-03-09 16:17:13 +03:00
|
|
|
struct mca_btl_base_module_t* btl,
|
|
|
|
size_t nprocs,
|
|
|
|
struct ompi_proc_t **procs,
|
2005-06-30 09:50:55 +04:00
|
|
|
struct mca_btl_base_endpoint_t **peers,
|
2005-05-24 02:06:50 +04:00
|
|
|
ompi_bitmap_t* reachability)
|
|
|
|
{
|
2008-03-11 17:39:10 +03:00
|
|
|
int return_code = OMPI_SUCCESS;
|
|
|
|
int32_t n_local_procs = 0, proc, j,
|
|
|
|
my_smp_rank = mca_btl_sm_component.my_smp_rank;
|
2005-05-24 02:06:50 +04:00
|
|
|
ompi_proc_t* my_proc; /* pointer to caller's proc structure */
|
2008-03-11 17:39:10 +03:00
|
|
|
mca_btl_sm_t *sm_btl;
|
2007-02-01 20:18:35 +03:00
|
|
|
bool have_connected_peer = false;
|
2008-03-16 13:01:56 +03:00
|
|
|
char **bases;
|
2005-05-24 02:06:50 +04:00
|
|
|
/* initializion */
|
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
sm_btl = (mca_btl_sm_t *)btl;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
/* get pointer to my proc structure */
|
2008-03-11 17:39:10 +03:00
|
|
|
if(NULL == (my_proc = ompi_proc_local()))
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
/* Get unique host identifier for each process in the list,
|
|
|
|
* and idetify procs that are on this host. Add procs on this
|
|
|
|
* host to shared memory reachbility list. Also, get number
|
2008-03-11 17:39:10 +03:00
|
|
|
* of local procs in the procs list. */
|
|
|
|
for(proc = 0; proc < (int32_t)nprocs; proc++) {
|
2005-07-15 19:22:41 +04:00
|
|
|
/* check to see if this proc can be reached via shmem (i.e.,
|
|
|
|
if they're on my local host and in my job) */
|
2007-02-01 20:18:35 +03:00
|
|
|
if (procs[proc]->proc_name.jobid != my_proc->proc_name.jobid ||
|
2005-07-15 19:22:41 +04:00
|
|
|
0 == (procs[proc]->proc_flags & OMPI_PROC_FLAG_LOCAL)) {
|
2007-03-21 16:29:19 +03:00
|
|
|
peers[proc] = NULL;
|
2005-05-24 02:06:50 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-02-01 20:18:35 +03:00
|
|
|
/* check to see if this is me */
|
2008-03-11 17:39:10 +03:00
|
|
|
if(my_proc == procs[proc]) {
|
|
|
|
my_smp_rank = mca_btl_sm_component.my_smp_rank = n_local_procs++;
|
|
|
|
continue;
|
2007-02-01 20:18:35 +03:00
|
|
|
}
|
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
/* we have someone to talk to */
|
|
|
|
have_connected_peer = true;
|
2007-10-22 16:07:22 +04:00
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
if(!(peers[proc] = create_sm_endpoint(n_local_procs, procs[proc]))) {
|
|
|
|
return_code = OMPI_ERROR;
|
2005-07-15 19:22:41 +04:00
|
|
|
goto CLEANUP;
|
|
|
|
}
|
|
|
|
n_local_procs++;
|
2008-03-11 17:39:10 +03:00
|
|
|
|
|
|
|
/* add this proc to shared memory accessibility list */
|
|
|
|
return_code = ompi_bitmap_set_bit(reachability, proc);
|
|
|
|
if(OMPI_SUCCESS != return_code)
|
|
|
|
goto CLEANUP;
|
2005-05-24 02:06:50 +04:00
|
|
|
}
|
2005-07-15 19:22:41 +04:00
|
|
|
|
2007-02-01 20:18:35 +03:00
|
|
|
/* jump out if there's not someone we can talk to */
|
2008-03-11 17:39:10 +03:00
|
|
|
if (!have_connected_peer)
|
2005-05-24 02:06:50 +04:00
|
|
|
goto CLEANUP;
|
|
|
|
|
|
|
|
/* make sure that my_smp_rank has been defined */
|
2008-03-11 17:39:10 +03:00
|
|
|
if(-1 == my_smp_rank) {
|
|
|
|
return_code = OMPI_ERROR;
|
2005-05-24 02:06:50 +04:00
|
|
|
goto CLEANUP;
|
|
|
|
}
|
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
calc_sm_max_procs(n_local_procs);
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
if (!sm_btl->btl_inited) {
|
|
|
|
return_code =
|
|
|
|
sm_btl_first_time_init(sm_btl, mca_btl_sm_component.sm_max_procs);
|
|
|
|
if(return_code != OMPI_SUCCESS)
|
2005-05-24 02:06:50 +04:00
|
|
|
goto CLEANUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set local proc's smp rank in the peers structure for
|
2008-03-11 17:39:10 +03:00
|
|
|
* rapid access and calulcate reachebility */
|
|
|
|
for(proc = 0; proc < (int32_t)nprocs; proc++) {
|
|
|
|
if(NULL == peers[proc])
|
|
|
|
continue;
|
|
|
|
mca_btl_sm_component.sm_peers[peers[proc]->peer_smp_rank] = peers[proc];
|
|
|
|
peers[proc]->my_smp_rank = my_smp_rank;
|
2005-05-24 02:06:50 +04:00
|
|
|
}
|
|
|
|
|
2008-03-16 13:01:56 +03:00
|
|
|
bases = mca_btl_sm_component.shm_bases;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
for(j = mca_btl_sm_component.num_smp_procs;
|
|
|
|
j < mca_btl_sm_component.num_smp_procs + n_local_procs; j++) {
|
|
|
|
ptrdiff_t diff;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
if(j == my_smp_rank)
|
|
|
|
continue;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
/* spin until this element is allocated */
|
2008-03-16 13:01:56 +03:00
|
|
|
while(NULL == mca_btl_sm_component.shm_fifo[j]) {
|
2007-03-21 13:25:10 +03:00
|
|
|
opal_atomic_rmb();
|
|
|
|
opal_progress();
|
2005-10-19 04:56:14 +04:00
|
|
|
}
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-11-13 01:32:09 +03:00
|
|
|
/* Calculate the difference as (my_base - their_base) */
|
2008-03-16 13:01:56 +03:00
|
|
|
diff = ADDR2OFFSET(bases[my_smp_rank], bases[j]);
|
2005-11-13 01:32:09 +03:00
|
|
|
mca_btl_sm_component.sm_offset[j] = diff;
|
2007-03-22 15:18:44 +03:00
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
/* store local address of remote fifos */
|
|
|
|
mca_btl_sm_component.fifo[j] =
|
2008-03-16 13:01:56 +03:00
|
|
|
(ompi_fifo_t*)OFFSET2ADDR(diff, mca_btl_sm_component.shm_fifo[j]);
|
2008-03-11 17:39:10 +03:00
|
|
|
|
|
|
|
/* don't forget to update the head_lock if allocated because this
|
|
|
|
* address is also in the remote process */
|
|
|
|
if(mca_btl_sm_component.fifo[j][my_smp_rank].head_lock != NULL) {
|
|
|
|
mca_btl_sm_component.fifo[j][my_smp_rank].head_lock =
|
|
|
|
(opal_atomic_lock_t*)OFFSET2ADDR(diff, mca_btl_sm_component.fifo[j][my_smp_rank].head_lock);
|
2007-07-05 18:26:32 +04:00
|
|
|
}
|
2007-03-22 15:18:44 +03:00
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
/* Initialize fifo for use. Note that sender does initialization */
|
|
|
|
return_code = ompi_fifo_init(mca_btl_sm_component.size_of_cb_queue,
|
|
|
|
mca_btl_sm_component.cb_lazy_free_freq,
|
|
|
|
mca_btl_sm_component.cb_max_num,
|
|
|
|
0,0,0,
|
|
|
|
&mca_btl_sm_component.fifo[j][my_smp_rank],
|
|
|
|
mca_btl_sm_component.sm_offset[j],
|
|
|
|
mca_btl_sm_component.sm_mpool);
|
2007-03-22 15:18:44 +03:00
|
|
|
|
|
|
|
if(return_code != OMPI_SUCCESS)
|
|
|
|
goto CLEANUP;
|
2005-05-24 02:06:50 +04:00
|
|
|
}
|
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
/* update the local smp process count */
|
|
|
|
mca_btl_sm_component.num_smp_procs += n_local_procs;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2006-10-07 01:13:49 +04:00
|
|
|
/* make sure we have enough eager fragmnents for each process */
|
|
|
|
return_code = ompi_free_list_resize(&mca_btl_sm_component.sm_frags1,
|
2008-03-11 17:39:10 +03:00
|
|
|
mca_btl_sm_component.num_smp_procs * 2);
|
|
|
|
if (OMPI_SUCCESS != return_code)
|
2006-10-07 01:13:49 +04:00
|
|
|
goto CLEANUP;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
CLEANUP:
|
|
|
|
return return_code;
|
|
|
|
}
|
|
|
|
|
2005-06-30 09:50:55 +04:00
|
|
|
int mca_btl_sm_del_procs(
|
2008-03-09 16:17:13 +03:00
|
|
|
struct mca_btl_base_module_t* btl,
|
2005-05-24 02:06:50 +04:00
|
|
|
size_t nprocs,
|
2008-03-09 16:17:13 +03:00
|
|
|
struct ompi_proc_t **procs,
|
2005-06-30 09:50:55 +04:00
|
|
|
struct mca_btl_base_endpoint_t **peers)
|
2005-05-24 02:06:50 +04:00
|
|
|
{
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2005-06-30 09:50:55 +04:00
|
|
|
* MCA->BTL Clean up any resources held by BTL module
|
2005-05-24 02:06:50 +04:00
|
|
|
* before the module is unloaded.
|
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* @param btl (IN) BTL module.
|
2005-05-24 02:06:50 +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-05-24 02:06:50 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-06-30 09:50:55 +04:00
|
|
|
int mca_btl_sm_finalize(struct mca_btl_base_module_t* btl)
|
2005-05-24 02:06:50 +04:00
|
|
|
{
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-09 16:17:13 +03:00
|
|
|
/*
|
2007-02-13 15:01:36 +03:00
|
|
|
* Register callback function for error handling..
|
|
|
|
*/
|
|
|
|
int mca_btl_sm_register_error_cb(
|
|
|
|
struct mca_btl_base_module_t* btl,
|
|
|
|
mca_btl_base_module_error_cb_fn_t cbfunc)
|
|
|
|
{
|
|
|
|
mca_btl_sm_t *sm_btl = (mca_btl_sm_t *)btl;
|
|
|
|
sm_btl->error_cb = cbfunc;
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate a segment.
|
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* @param btl (IN) BTL module
|
2005-05-24 02:06:50 +04:00
|
|
|
* @param size (IN) Request segment size.
|
|
|
|
*/
|
2005-06-30 09:50:55 +04:00
|
|
|
extern mca_btl_base_descriptor_t* mca_btl_sm_alloc(
|
|
|
|
struct mca_btl_base_module_t* btl,
|
2007-12-09 17:00:42 +03:00
|
|
|
struct mca_btl_base_endpoint_t* endpoint,
|
2007-05-24 23:51:26 +04:00
|
|
|
uint8_t order,
|
2007-12-09 17:08:01 +03:00
|
|
|
size_t size,
|
|
|
|
uint32_t flags)
|
2005-05-24 02:06:50 +04:00
|
|
|
{
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_sm_frag_t* frag;
|
2005-05-24 02:06:50 +04:00
|
|
|
int rc;
|
2005-06-30 09:50:55 +04:00
|
|
|
if(size <= mca_btl_sm_component.eager_limit) {
|
|
|
|
MCA_BTL_SM_FRAG_ALLOC1(frag,rc);
|
2005-09-07 17:40:22 +04:00
|
|
|
} else if (size <= mca_btl_sm_component.max_frag_size) {
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SM_FRAG_ALLOC2(frag,rc);
|
2005-09-07 17:40:22 +04:00
|
|
|
} else {
|
|
|
|
return NULL;
|
2005-05-24 02:06:50 +04:00
|
|
|
}
|
2006-10-07 01:13:49 +04:00
|
|
|
|
|
|
|
if (frag != NULL) {
|
|
|
|
frag->segment.seg_len = size;
|
2008-02-18 20:39:30 +03:00
|
|
|
frag->base.des_flags = flags;
|
2006-10-07 01:13:49 +04:00
|
|
|
}
|
|
|
|
|
2005-06-30 09:50:55 +04:00
|
|
|
return (mca_btl_base_descriptor_t*)frag;
|
2005-05-24 02:06:50 +04:00
|
|
|
}
|
2006-10-07 01:13:49 +04:00
|
|
|
|
2005-05-24 02:06:50 +04:00
|
|
|
/**
|
2005-06-30 09:50:55 +04:00
|
|
|
* Return a segment allocated by this BTL.
|
2005-05-24 02:06:50 +04:00
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* @param btl (IN) BTL module
|
2005-05-24 02:06:50 +04:00
|
|
|
* @param segment (IN) Allocated segment.
|
|
|
|
*/
|
2005-06-30 09:50:55 +04:00
|
|
|
extern int mca_btl_sm_free(
|
|
|
|
struct mca_btl_base_module_t* btl,
|
|
|
|
mca_btl_base_descriptor_t* des)
|
2005-05-24 02:06:50 +04:00
|
|
|
{
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_sm_frag_t* frag = (mca_btl_sm_frag_t*)des;
|
2006-05-31 18:24:32 +04:00
|
|
|
MCA_BTL_SM_FRAG_RETURN(frag);
|
2008-03-09 16:17:13 +03:00
|
|
|
|
2005-05-24 02:06:50 +04:00
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pack data
|
|
|
|
*
|
2005-06-30 09:50:55 +04:00
|
|
|
* @param btl (IN) BTL module
|
2005-05-24 02:06:50 +04:00
|
|
|
*/
|
2005-06-30 09:50:55 +04:00
|
|
|
struct mca_btl_base_descriptor_t* mca_btl_sm_prepare_src(
|
|
|
|
struct mca_btl_base_module_t* btl,
|
|
|
|
struct mca_btl_base_endpoint_t* endpoint,
|
2005-06-25 01:12:38 +04:00
|
|
|
mca_mpool_base_registration_t* registration,
|
2005-05-24 02:06:50 +04:00
|
|
|
struct ompi_convertor_t* convertor,
|
2007-05-24 23:51:26 +04:00
|
|
|
uint8_t order,
|
2005-05-24 02:06:50 +04:00
|
|
|
size_t reserve,
|
2007-12-09 17:08:01 +03:00
|
|
|
size_t* size,
|
|
|
|
uint32_t flags)
|
2005-05-24 02:06:50 +04:00
|
|
|
{
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_sm_frag_t* frag;
|
2005-06-01 18:34:22 +04:00
|
|
|
struct iovec iov;
|
|
|
|
uint32_t iov_count = 1;
|
2005-06-08 23:13:28 +04:00
|
|
|
size_t max_data = *size;
|
2005-06-01 18:34:22 +04:00
|
|
|
int rc;
|
|
|
|
|
2005-06-30 09:50:55 +04:00
|
|
|
MCA_BTL_SM_FRAG_ALLOC2(frag, rc);
|
2005-06-01 18:34:22 +04:00
|
|
|
if(NULL == frag) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-06-09 00:38:03 +04:00
|
|
|
if(reserve + max_data > frag->size) {
|
2005-06-02 01:09:43 +04:00
|
|
|
max_data = frag->size - reserve;
|
2008-03-09 16:17:13 +03:00
|
|
|
}
|
2005-06-01 18:34:22 +04:00
|
|
|
iov.iov_len = max_data;
|
2007-03-05 17:17:50 +03:00
|
|
|
iov.iov_base =
|
|
|
|
(IOVBASE_TYPE*)(((unsigned char*)(frag->segment.seg_addr.pval)) +
|
|
|
|
reserve);
|
2005-06-01 18:34:22 +04:00
|
|
|
|
2006-10-27 03:11:26 +04:00
|
|
|
rc = ompi_convertor_pack(convertor, &iov, &iov_count, &max_data );
|
2005-06-01 18:34:22 +04:00
|
|
|
if(rc < 0) {
|
2006-05-31 18:24:32 +04:00
|
|
|
MCA_BTL_SM_FRAG_RETURN(frag);
|
2005-06-01 18:34:22 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2005-06-09 00:38:03 +04:00
|
|
|
frag->segment.seg_len = reserve + max_data;
|
2008-02-18 20:39:30 +03:00
|
|
|
frag->base.des_flags = flags;
|
2005-06-01 18:34:22 +04:00
|
|
|
*size = max_data;
|
|
|
|
return &frag->base;
|
2005-05-24 02:06:50 +04:00
|
|
|
}
|
|
|
|
|
2008-03-09 16:17:13 +03:00
|
|
|
|
2005-05-24 02:06:50 +04:00
|
|
|
/**
|
|
|
|
* 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-05-24 02:06:50 +04:00
|
|
|
*/
|
|
|
|
|
2005-06-30 09:50:55 +04:00
|
|
|
int mca_btl_sm_send(
|
|
|
|
struct mca_btl_base_module_t* btl,
|
|
|
|
struct mca_btl_base_endpoint_t* endpoint,
|
|
|
|
struct mca_btl_base_descriptor_t* descriptor,
|
|
|
|
mca_btl_base_tag_t tag)
|
2005-05-24 02:06:50 +04:00
|
|
|
{
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_sm_frag_t* frag = (mca_btl_sm_frag_t*)descriptor;
|
2007-10-22 16:07:22 +04:00
|
|
|
int rc;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2007-10-22 16:07:22 +04:00
|
|
|
/* available header space */
|
2007-03-05 17:24:09 +03:00
|
|
|
frag->hdr->len = frag->segment.seg_len;
|
2007-08-28 01:41:04 +04:00
|
|
|
/* type of message, pt-2-pt, one-sided, etc */
|
2007-03-05 17:24:09 +03:00
|
|
|
frag->hdr->tag = tag;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2007-10-22 16:07:22 +04:00
|
|
|
frag->endpoint = endpoint;
|
|
|
|
|
2008-03-09 16:17:13 +03:00
|
|
|
/*
|
2005-05-24 02:06:50 +04:00
|
|
|
* post the descriptor in the queue - post with the relative
|
2008-03-09 16:17:13 +03:00
|
|
|
* address
|
2005-05-24 02:06:50 +04:00
|
|
|
*/
|
2007-10-22 16:07:22 +04:00
|
|
|
MCA_BTL_SM_FIFO_WRITE(endpoint, endpoint->my_smp_rank,
|
|
|
|
endpoint->peer_smp_rank, frag->hdr, false, rc);
|
2007-08-30 17:21:52 +04:00
|
|
|
return OMPI_SUCCESS;
|
2005-05-24 02:06:50 +04:00
|
|
|
}
|
2007-03-17 02:11:45 +03:00
|
|
|
|
|
|
|
int mca_btl_sm_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;
|
|
|
|
}
|