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"
|
2008-06-09 18:53:58 +04:00
|
|
|
#include "orte/util/show_help.h"
|
2005-07-04 05:36:20 +04:00
|
|
|
#include "opal/util/if.h"
|
2008-06-15 17:43:28 +04:00
|
|
|
#include "opal/mca/carto/carto.h"
|
|
|
|
#include "opal/mca/carto/base/base.h"
|
|
|
|
#include "opal/mca/paffinity/base/base.h"
|
|
|
|
#include "opal/mca/maffinity/base/base.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"
|
|
|
|
#include "ompi/mca/common/sm/common_sm_mmap.h"
|
2008-06-15 17:43:28 +04:00
|
|
|
#include "ompi/mca/mpool/sm/mpool_sm.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,
|
2008-06-24 23:01:26 +04:00
|
|
|
NULL /*mca_btl_sm_sendi*/, /* send immediate */
|
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;
|
2008-06-15 17:43:28 +04:00
|
|
|
mca_mpool_base_module_t *mpool = mca_btl_sm_component.sm_mpool;
|
|
|
|
|
|
|
|
buf = mpool->mpool_alloc(mpool, bsize, CACHE_LINE_SIZE, 0, NULL);
|
2008-03-11 17:39:10 +03:00
|
|
|
|
|
|
|
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()) {
|
2008-09-08 19:39:30 +04:00
|
|
|
char *buf = (char *) mpool_calloc(2, CACHE_LINE_SIZE);
|
2008-03-11 17:39:10 +03:00
|
|
|
/* 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-06-15 17:43:28 +04:00
|
|
|
static void init_maffinity(int *my_mem_node, int *max_mem_node)
|
|
|
|
{
|
|
|
|
static opal_carto_graph_t *topo;
|
|
|
|
opal_value_array_t dists;
|
2008-08-23 07:13:29 +04:00
|
|
|
int i, num_core, socket;
|
2008-06-15 17:43:28 +04:00
|
|
|
opal_paffinity_base_cpu_set_t cpus;
|
|
|
|
char *myslot = NULL;
|
|
|
|
opal_carto_node_distance_t *dist;
|
|
|
|
opal_carto_base_node_t *slot_node;
|
|
|
|
|
|
|
|
*my_mem_node = 0;
|
|
|
|
*max_mem_node = 1;
|
|
|
|
|
|
|
|
if(opal_carto_base_get_host_graph(&topo, "Memory") != OMPI_SUCCESS)
|
|
|
|
return;
|
|
|
|
|
|
|
|
OBJ_CONSTRUCT(&dists, opal_value_array_t);
|
|
|
|
opal_value_array_init(&dists, sizeof(opal_carto_node_distance_t));
|
|
|
|
|
2008-08-21 23:21:28 +04:00
|
|
|
if(opal_paffinity_base_get_processor_info(&num_core) != OMPI_SUCCESS) {
|
|
|
|
num_core = 100; /* set something large */
|
|
|
|
}
|
2008-06-15 17:43:28 +04:00
|
|
|
|
|
|
|
OPAL_PAFFINITY_CPU_ZERO(cpus);
|
|
|
|
opal_paffinity_base_get(&cpus);
|
|
|
|
|
|
|
|
/* find core we are running on */
|
2008-08-21 23:21:28 +04:00
|
|
|
for(i = 0; i < num_core; i++)
|
2008-06-15 17:43:28 +04:00
|
|
|
if(OPAL_PAFFINITY_CPU_ISSET(i, cpus))
|
|
|
|
break;
|
|
|
|
|
2008-08-23 07:13:29 +04:00
|
|
|
if (OMPI_SUCCESS != opal_paffinity_base_get_map_to_socket_core(i, &socket, &i)) {
|
|
|
|
/* no topology info available */
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2008-06-15 17:43:28 +04:00
|
|
|
asprintf(&myslot, "slot%d", socket);
|
|
|
|
|
|
|
|
slot_node = opal_carto_base_find_node(topo, myslot);
|
|
|
|
|
|
|
|
if(NULL == slot_node)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
opal_carto_base_get_nodes_distance(topo, slot_node, "Memory", &dists);
|
|
|
|
if((*max_mem_node = opal_value_array_get_size(&dists)) < 2)
|
|
|
|
goto out;
|
|
|
|
|
2008-09-08 19:39:30 +04:00
|
|
|
dist = (opal_carto_node_distance_t *) opal_value_array_get_item(&dists, 0);
|
2008-06-15 17:43:28 +04:00
|
|
|
opal_maffinity_base_node_name_to_id(dist->node->node_name, my_mem_node);
|
|
|
|
out:
|
|
|
|
if(myslot) free(myslot);
|
|
|
|
OBJ_DESTRUCT(&dists);
|
|
|
|
opal_carto_base_free_graph(topo);
|
|
|
|
}
|
|
|
|
|
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;
|
2008-06-15 17:43:28 +04:00
|
|
|
int my_mem_node=-1, num_mem_nodes=-1, i;
|
|
|
|
|
|
|
|
init_maffinity(&my_mem_node, &num_mem_nodes);
|
|
|
|
mca_btl_sm_component.mem_node = my_mem_node;
|
|
|
|
mca_btl_sm_component.num_mem_nodes = num_mem_nodes;
|
2008-03-11 17:39:10 +03:00
|
|
|
|
|
|
|
/* lookup shared memory pool */
|
2008-09-08 19:39:30 +04:00
|
|
|
mca_btl_sm_component.sm_mpools = (mca_mpool_base_module_t **) calloc(num_mem_nodes,
|
2008-06-15 17:43:28 +04:00
|
|
|
sizeof(mca_mpool_base_module_t*));
|
|
|
|
|
|
|
|
/* create mpool for each memory node */
|
|
|
|
for(i = 0; i < num_mem_nodes; i++) {
|
|
|
|
mca_mpool_base_resources_t res;
|
|
|
|
/* disable memory binding if there is only one memory node */
|
|
|
|
res.mem_node = (num_mem_nodes == 1) ? -1 : i;
|
|
|
|
mca_btl_sm_component.sm_mpools[i] =
|
2008-03-11 17:39:10 +03:00
|
|
|
mca_mpool_base_module_create(mca_btl_sm_component.sm_mpool_name,
|
2008-06-15 17:43:28 +04:00
|
|
|
sm_btl, &res);
|
|
|
|
/* Sanity check to ensure that we found it */
|
|
|
|
if(NULL == mca_btl_sm_component.sm_mpools[i])
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
|
|
|
|
if(i == my_mem_node)
|
|
|
|
mca_btl_sm_component.sm_mpool = mca_btl_sm_component.sm_mpools[i];
|
2008-03-11 17:39:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
mca_btl_sm_component.sm_mpool_base =
|
2008-06-15 17:43:28 +04:00
|
|
|
mca_btl_sm_component.sm_mpools[0]->mpool_base(mca_btl_sm_component.sm_mpools[0]);
|
2008-03-11 17:39:10 +03:00
|
|
|
|
|
|
|
/* 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,
|
2008-03-24 02:10:15 +03:00
|
|
|
orte_process_info.nodename) < 0)
|
2008-03-11 17:39:10 +03:00
|
|
|
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) +
|
2008-06-15 17:43:28 +04:00
|
|
|
n * (sizeof(ompi_fifo_t*) + sizeof(char *) + sizeof(uint16_t)) + CACHE_LINE_SIZE;
|
2008-03-16 13:01:56 +03:00
|
|
|
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-06-09 18:53:58 +04:00
|
|
|
opal_output(0, "mca_btl_sm_add_procs: unable to create shared memory "
|
2008-03-11 17:39:10 +03:00
|
|
|
"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);
|
2008-06-15 17:43:28 +04:00
|
|
|
mca_btl_sm_component.shm_mem_nodes = (uint16_t*)(mca_btl_sm_component.shm_bases + n);
|
2008-03-16 13:01:56 +03:00
|
|
|
|
|
|
|
/* 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;
|
2008-06-15 17:43:28 +04:00
|
|
|
mca_btl_sm_component.shm_mem_nodes[mca_btl_sm_component.my_smp_rank] =
|
|
|
|
(uint16_t)my_mem_node;
|
2008-03-11 17:39:10 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
|
2008-09-08 19:39:30 +04:00
|
|
|
mca_btl_sm_component.mem_nodes = (uint16_t *) malloc(sizeof(uint16_t) * n);
|
2008-06-15 17:43:28 +04:00
|
|
|
if(NULL == mca_btl_sm_component.mem_nodes)
|
|
|
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
|
|
|
|
2008-03-11 17:39:10 +03:00
|
|
|
/* 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;
|
2008-05-30 07:58:39 +04:00
|
|
|
ompi_free_list_init_new(&mca_btl_sm_component.sm_frags_eager, length,
|
2008-03-11 17:39:10 +03:00
|
|
|
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;
|
2008-05-30 07:58:39 +04:00
|
|
|
ompi_free_list_init_new(&mca_btl_sm_component.sm_frags_max, length,
|
2008-03-11 17:39:10 +03:00
|
|
|
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);
|
|
|
|
|
|
|
|
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) {
|
2008-06-09 18:53:58 +04:00
|
|
|
opal_output(0, "mca_btl_sm_add_procs: open(%s) failed with errno=%d\n",
|
2008-03-11 17:39:10 +03:00
|
|
|
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;
|
2008-06-15 17:43:28 +04:00
|
|
|
int peer_mem_node;
|
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-06-15 17:43:28 +04:00
|
|
|
/* cache local copy of peer memory node number */
|
|
|
|
peer_mem_node = mca_btl_sm_component.mem_nodes[j] = mca_btl_sm_component.shm_mem_nodes[j];
|
|
|
|
|
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,
|
2008-06-15 17:43:28 +04:00
|
|
|
/* fifo mpool */
|
|
|
|
mca_btl_sm_component.sm_mpools[peer_mem_node],
|
|
|
|
/* head mpool */
|
|
|
|
mca_btl_sm_component.sm_mpool,
|
|
|
|
/* tail mpool */
|
|
|
|
mca_btl_sm_component.sm_mpools[peer_mem_node],
|
2008-03-11 17:39:10 +03:00
|
|
|
&mca_btl_sm_component.fifo[j][my_smp_rank],
|
2008-06-15 17:43:28 +04:00
|
|
|
mca_btl_sm_component.sm_offset[j]);
|
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 */
|
2008-05-30 07:58:39 +04:00
|
|
|
return_code = ompi_free_list_resize(&mca_btl_sm_component.sm_frags_eager,
|
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-05-30 07:58:39 +04:00
|
|
|
#if 0
|
|
|
|
#define MCA_BTL_SM_TOUCH_DATA_TILL_CACHELINE_BOUNDARY(sm_frag) \
|
|
|
|
do { \
|
|
|
|
char* _memory = (char*)(sm_frag)->segment.seg_addr.pval + \
|
|
|
|
(sm_frag)->segment.seg_len; \
|
|
|
|
int* _intmem; \
|
|
|
|
size_t align = (intptr_t)_memory & 0xFUL; \
|
|
|
|
switch( align & 0x3 ) { \
|
|
|
|
case 3: *_memory = 0; _memory++; \
|
|
|
|
case 2: *_memory = 0; _memory++; \
|
|
|
|
case 1: *_memory = 0; _memory++; \
|
|
|
|
} \
|
|
|
|
align >>= 2; \
|
|
|
|
_intmem = (int*)_memory; \
|
|
|
|
switch( align ) { \
|
|
|
|
case 3: *_intmem = 0; _intmem++; \
|
|
|
|
case 2: *_intmem = 0; _intmem++; \
|
|
|
|
case 1: *_intmem = 0; _intmem++; \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
#else
|
|
|
|
#define MCA_BTL_SM_TOUCH_DATA_TILL_CACHELINE_BOUNDARY(sm_frag)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
if( OPAL_LIKELY(align > 0) ) { \
|
|
|
|
align = 0xFUL - align; \
|
|
|
|
memset( _memory, 0, align ); \
|
|
|
|
} \
|
|
|
|
|
|
|
|
#endif
|
2008-03-09 16:17:13 +03:00
|
|
|
|
2005-05-24 02:06:50 +04:00
|
|
|
/**
|
2008-05-30 07:58:39 +04:00
|
|
|
* Initiate an inline send to the peer. If failure then return a descriptor.
|
2005-05-24 02:06:50 +04:00
|
|
|
*
|
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
|
|
|
*/
|
2008-05-30 07:58:39 +04:00
|
|
|
int mca_btl_sm_sendi( struct mca_btl_base_module_t* btl,
|
|
|
|
struct mca_btl_base_endpoint_t* endpoint,
|
|
|
|
struct ompi_convertor_t* convertor,
|
|
|
|
void* header,
|
|
|
|
size_t header_size,
|
|
|
|
size_t payload_size,
|
|
|
|
uint8_t order,
|
|
|
|
uint32_t flags,
|
|
|
|
mca_btl_base_tag_t tag,
|
|
|
|
mca_btl_base_descriptor_t** descriptor )
|
|
|
|
{
|
|
|
|
size_t max_data, length = (header_size + payload_size);
|
|
|
|
mca_btl_sm_frag_t* frag;
|
|
|
|
int rc;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2008-05-30 07:58:39 +04:00
|
|
|
if( length < mca_btl_sm_component.eager_limit ) {
|
|
|
|
MCA_BTL_SM_FRAG_ALLOC1(frag, rc);
|
|
|
|
if( OPAL_UNLIKELY(NULL == frag) ) {
|
|
|
|
*descriptor = NULL;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
frag->segment.seg_len = length;
|
|
|
|
frag->hdr->len = length;
|
|
|
|
assert( 0 == (flags & MCA_BTL_DES_SEND_ALWAYS_CALLBACK) );
|
|
|
|
frag->base.des_flags = flags | MCA_BTL_DES_FLAGS_BTL_OWNERSHIP;
|
|
|
|
frag->hdr->tag = tag;
|
|
|
|
frag->endpoint = endpoint;
|
|
|
|
|
|
|
|
memcpy( frag->segment.seg_addr.pval, header, header_size );
|
|
|
|
if( payload_size ) {
|
|
|
|
struct iovec iov;
|
2008-06-12 21:24:39 +04:00
|
|
|
uint32_t iov_count;
|
2008-05-30 07:58:39 +04:00
|
|
|
/* pack the data into the supplied buffer */
|
|
|
|
iov.iov_base = (IOVBASE_TYPE*)((unsigned char*)frag->segment.seg_addr.pval + header_size);
|
2008-06-12 21:24:39 +04:00
|
|
|
iov.iov_len = max_data = payload_size;
|
2008-05-30 07:58:39 +04:00
|
|
|
iov_count = 1;
|
|
|
|
|
|
|
|
(void)ompi_convertor_pack( convertor,
|
|
|
|
&iov, &iov_count, &max_data);
|
|
|
|
|
|
|
|
assert(max_data == payload_size);
|
|
|
|
}
|
|
|
|
MCA_BTL_SM_TOUCH_DATA_TILL_CACHELINE_BOUNDARY(frag);
|
|
|
|
/*
|
|
|
|
* post the descriptor in the queue - post with the relative
|
|
|
|
* address
|
|
|
|
*/
|
|
|
|
MCA_BTL_SM_FIFO_WRITE(endpoint, endpoint->my_smp_rank,
|
|
|
|
endpoint->peer_smp_rank, frag->hdr, false, rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
*descriptor = mca_btl_sm_alloc( btl, endpoint, order,
|
|
|
|
payload_size + header_size, flags);
|
|
|
|
return OMPI_ERR_RESOURCE_BUSY;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initiate a send to the peer.
|
|
|
|
*
|
|
|
|
* @param btl (IN) BTL module
|
|
|
|
* @param peer (IN) BTL peer addressing
|
|
|
|
*/
|
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
|
|
|
|
2008-05-30 07:58:39 +04:00
|
|
|
MCA_BTL_SM_TOUCH_DATA_TILL_CACHELINE_BOUNDARY(frag);
|
|
|
|
|
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,
|
2008-05-30 07:58:39 +04:00
|
|
|
endpoint->peer_smp_rank, frag->hdr, false, rc);
|
2008-08-17 23:00:50 +04:00
|
|
|
if( OPAL_LIKELY(0 == rc) ) {
|
|
|
|
return 1; /* the data is completely gone */
|
|
|
|
}
|
|
|
|
frag->base.des_flags |= MCA_BTL_DES_SEND_ALWAYS_CALLBACK;
|
2008-08-18 00:07:53 +04:00
|
|
|
/* not yet gone, but pending. Let the upper level knows that
|
|
|
|
* the callback will be triggered when the data will be sent.
|
|
|
|
*/
|
|
|
|
return 0;
|
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;
|
|
|
|
}
|