1
1
openmpi/opal/dss/dss_copy.c
Ralph Castain d565a76814 Do some cleanup of the way we handle modex data. Identify data that needs to be shared with peers in my job vs data that needs to be shared with non-peers - no point in sharing extra data. When we share data with some process(es) from another job, we cannot know in advance what info they have or lack, so we have to share everything just in case. This limits the optimization we can do for things like comm_spawn.
Create a new required key in the OMPI layer for retrieving a "node id" from the database. ALL RTE'S MUST DEFINE THIS KEY. This allows us to compute locality in the MPI layer, which is necessary when we do things like intercomm_create.

cmr:v1.7.4:reviewer=rhc:subject=Cleanup handling of modex data

This commit was SVN r29274.
2013-09-27 00:37:49 +00:00

331 строка
8.0 KiB
C

/*
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2006 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* 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 "opal_config.h"
#include "opal/util/output.h"
#include "opal/dss/dss_internal.h"
int opal_dss_copy(void **dest, void *src, opal_data_type_t type)
{
opal_dss_type_info_t *info;
/* check for error */
if (NULL == dest) {
return OPAL_ERR_BAD_PARAM;
}
if (NULL == src && (OPAL_NULL != type && OPAL_STRING != type)) {
return OPAL_ERR_BAD_PARAM;
}
/* Lookup the copy function for this type and call it */
if (NULL == (info = (opal_dss_type_info_t*)opal_pointer_array_get_item(&opal_dss_types, type))) {
return OPAL_ERR_UNKNOWN_DATA_TYPE;
}
return info->odti_copy_fn(dest, src, type);
}
/*
* STANDARD COPY FUNCTION - WORKS FOR EVERYTHING NON-STRUCTURED
*/
int opal_dss_std_copy(void **dest, void *src, opal_data_type_t type)
{
size_t datasize;
uint8_t *val = NULL;
switch(type) {
case OPAL_BOOL:
datasize = sizeof(bool);
break;
case OPAL_INT:
case OPAL_UINT:
datasize = sizeof(int);
break;
case OPAL_SIZE:
datasize = sizeof(size_t);
break;
case OPAL_PID:
datasize = sizeof(pid_t);
break;
case OPAL_BYTE:
case OPAL_INT8:
case OPAL_UINT8:
datasize = 1;
break;
case OPAL_INT16:
case OPAL_UINT16:
datasize = 2;
break;
case OPAL_INT32:
case OPAL_UINT32:
datasize = 4;
break;
case OPAL_INT64:
case OPAL_UINT64:
datasize = 8;
break;
case OPAL_DATA_TYPE:
datasize = sizeof(opal_data_type_t);
break;
case OPAL_FLOAT:
datasize = sizeof(float);
break;
case OPAL_TIMEVAL:
datasize = sizeof(struct timeval);
break;
default:
return OPAL_ERR_UNKNOWN_DATA_TYPE;
}
val = (uint8_t*)malloc(datasize);
if (NULL == val) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
memcpy(val, src, datasize);
*dest = val;
return OPAL_SUCCESS;
}
/* COPY FUNCTIONS FOR NON-STANDARD SYSTEM TYPES */
/*
* NULL
*/
int opal_dss_copy_null(char **dest, char *src, opal_data_type_t type)
{
char *val;
*dest = (char*)malloc(sizeof(char*));
if (NULL == *dest) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
val = *dest; /* save the address of the value */
/* set the dest to null */
*val = 0x00;
return OPAL_SUCCESS;
}
/*
* STRING
*/
int opal_dss_copy_string(char **dest, char *src, opal_data_type_t type)
{
if (NULL == src) { /* got zero-length string/NULL pointer - store NULL */
*dest = NULL;
} else {
*dest = strdup(src);
}
return OPAL_SUCCESS;
}
/* COPY FUNCTIONS FOR GENERIC OPAL TYPES */
/*
* OPAL_BYTE_OBJECT
*/
int opal_dss_copy_byte_object(opal_byte_object_t **dest, opal_byte_object_t *src,
opal_data_type_t type)
{
/* allocate space for the new object */
*dest = (opal_byte_object_t*)malloc(sizeof(opal_byte_object_t));
if (NULL == *dest) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
(*dest)->size = src->size;
/* allocate the required space for the bytes */
if (NULL == src->bytes) {
(*dest)->bytes = NULL;
} else {
(*dest)->bytes = (uint8_t*)malloc(src->size);
if (NULL == (*dest)->bytes) {
OBJ_RELEASE(*dest);
return OPAL_ERR_OUT_OF_RESOURCE;
}
/* copy the data across */
memcpy((*dest)->bytes, src->bytes, src->size);
}
return OPAL_SUCCESS;
}
/* OPAL_PSTAT */
int opal_dss_copy_pstat(opal_pstats_t **dest, opal_pstats_t *src,
opal_data_type_t type)
{
opal_pstats_t *p;
/* create the new object */
*dest = OBJ_NEW(opal_pstats_t);
if (NULL == *dest) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
p = *dest;
/* copy the individual fields */
memcpy(p->node, src->node, sizeof(src->node));
p->rank = src->rank;
p->pid = src->pid;
memcpy(p->cmd, src->cmd, sizeof(src->cmd));
p->state[0] = src->state[0];
p->time = src->time;
p->priority = src->priority;
p->num_threads = src->num_threads;
p->vsize = src->vsize;
p->rss = src->rss;
p->peak_vsize = src->peak_vsize;
p->processor = src->processor;
p->sample_time.tv_sec = src->sample_time.tv_sec;
p->sample_time.tv_usec = src->sample_time.tv_usec;
return OPAL_SUCCESS;
}
/* OPAL_NODE_STAT */
int opal_dss_copy_node_stat(opal_node_stats_t **dest, opal_node_stats_t *src,
opal_data_type_t type)
{
opal_node_stats_t *p;
/* create the new object */
*dest = OBJ_NEW(opal_node_stats_t);
if (NULL == *dest) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
p = *dest;
/* copy the individual fields */
p->la = src->la;
p->la5 = src->la5;
p->la15 = src->la15;
p->total_mem = src->total_mem;
p->free_mem = src->free_mem;
p->sample_time.tv_sec = src->sample_time.tv_sec;
p->sample_time.tv_usec = src->sample_time.tv_usec;
return OPAL_SUCCESS;
}
/* OPAL_VALUE */
int opal_dss_copy_value(opal_value_t **dest, opal_value_t *src,
opal_data_type_t type)
{
opal_value_t *p;
/* create the new object */
*dest = OBJ_NEW(opal_value_t);
if (NULL == *dest) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
p = *dest;
/* copy the type and key */
if (NULL != src->key) {
p->key = strdup(src->key);
}
p->scope = src->scope;
p->type = src->type;
/* copy the right field */
switch (src->type) {
case OPAL_BYTE:
p->data.byte = src->data.byte;
break;
case OPAL_STRING:
if (NULL != src->data.string) {
p->data.string = strdup(src->data.string);
} else {
p->data.string = NULL;
}
break;
case OPAL_PID:
p->data.pid = src->data.pid;
break;
case OPAL_INT:
p->data.integer = src->data.integer;
break;
case OPAL_INT8:
p->data.int8 = src->data.int8;
break;
case OPAL_INT16:
p->data.int16 = src->data.int16;
break;
case OPAL_INT32:
p->data.int32 = src->data.int32;
break;
case OPAL_INT64:
p->data.int64 = src->data.int64;
break;
case OPAL_UINT:
p->data.uint = src->data.uint;
break;
case OPAL_UINT8:
p->data.uint8 = src->data.uint8;
break;
case OPAL_UINT16:
p->data.uint16 = src->data.uint16;
break;
case OPAL_UINT32:
p->data.uint32 = src->data.uint32;
break;
case OPAL_UINT64:
p->data.uint64 = src->data.uint64;
break;
case OPAL_BYTE_OBJECT:
if (NULL != src->data.bo.bytes && 0 < src->data.bo.size) {
p->data.bo.bytes = malloc(src->data.bo.size);
memcpy(p->data.bo.bytes, src->data.bo.bytes, src->data.bo.size);
p->data.bo.size = src->data.bo.size;
} else {
p->data.bo.bytes = NULL;
p->data.bo.size = 0;
}
break;
default:
opal_output(0, "COPY-OPAL-VALUE: UNSUPPORTED TYPE %d", (int)src->type);
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
int opal_dss_copy_buffer_contents(opal_buffer_t **dest, opal_buffer_t *src,
opal_data_type_t type)
{
return OPAL_SUCCESS;
}