⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gpr_proxy_arithmetic_ops.c

📁 MPI stands for the Message Passing Interface. Written by the MPI Forum (a large committee comprising
💻 C
字号:
/* -*- C -*- * * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana *                         University Research and Technology *                         Corporation.  All rights reserved. * Copyright (c) 2004-2005 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$ *//** @file: * * The Open MPI General Purpose Registry - Replica component * *//* * includes */#include "orte_config.h"#include "orte/orte_constants.h"#include "orte/dss/dss_types.h"#include "opal/util/output.h"#include "opal/util/trace.h"#include "orte/util/proc_info.h"#include "orte/mca/errmgr/errmgr.h"#include "orte/mca/ns/ns_types.h"#include "orte/mca/oob/oob_types.h"#include "orte/mca/rml/rml.h"#include "gpr_proxy.h"int orte_gpr_proxy_increment_value(orte_gpr_value_t *value){    orte_buffer_t *cmd, *answer;    int rc, ret;    OPAL_TRACE(1);    if (orte_gpr_proxy_globals.compound_cmd_mode) {        if (ORTE_SUCCESS != (rc = orte_gpr_base_pack_increment_value(                                    orte_gpr_proxy_globals.compound_cmd,                                   value))) {            ORTE_ERROR_LOG(rc);        }        return rc;    }    cmd = OBJ_NEW(orte_buffer_t);    if (NULL == cmd) {        ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);        return ORTE_ERR_OUT_OF_RESOURCE;    }    if (ORTE_SUCCESS != (rc = orte_gpr_base_pack_increment_value(cmd, value))) {        OBJ_RELEASE(cmd);        ORTE_ERROR_LOG(rc);        return rc;    }    if (0 > orte_rml.send_buffer(orte_process_info.gpr_replica, cmd, ORTE_RML_TAG_GPR, 0)) {        ORTE_ERROR_LOG(ORTE_ERR_COMM_FAILURE);        OBJ_RELEASE(cmd);        return ORTE_ERR_COMM_FAILURE;    }    OBJ_RELEASE(cmd);    answer = OBJ_NEW(orte_buffer_t);    if (NULL == answer) {        ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);        return ORTE_ERR_OUT_OF_RESOURCE;    }    if (0 > orte_rml.recv_buffer(orte_process_info.gpr_replica, answer, ORTE_RML_TAG_GPR)) {        ORTE_ERROR_LOG(ORTE_ERR_COMM_FAILURE);        OBJ_RELEASE(answer);        return ORTE_ERR_COMM_FAILURE;    }    if (ORTE_SUCCESS != (rc = orte_gpr_base_unpack_increment_value(answer, &ret))) {        ORTE_ERROR_LOG(rc);        OBJ_RELEASE(answer);        return rc;    }    OBJ_RELEASE(answer);    return ret;}int orte_gpr_proxy_decrement_value(orte_gpr_value_t *value){    orte_buffer_t *cmd, *answer;    int rc, ret;    OPAL_TRACE(1);    if (orte_gpr_proxy_globals.compound_cmd_mode) {        if (ORTE_SUCCESS != (rc = orte_gpr_base_pack_decrement_value(                                    orte_gpr_proxy_globals.compound_cmd,                                 value))) {            ORTE_ERROR_LOG(rc);        }        return rc;    }    cmd = OBJ_NEW(orte_buffer_t);    if (NULL == cmd) {        ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);        return ORTE_ERR_OUT_OF_RESOURCE;    }    if (ORTE_SUCCESS != (rc = orte_gpr_base_pack_decrement_value(cmd, value))) {      OBJ_RELEASE(cmd);        ORTE_ERROR_LOG(rc);        return rc;    }    if (0 > orte_rml.send_buffer(orte_process_info.gpr_replica, cmd, ORTE_RML_TAG_GPR, 0)) {        ORTE_ERROR_LOG(ORTE_ERR_COMM_FAILURE);        OBJ_RELEASE(cmd);       return ORTE_ERR_COMM_FAILURE;    }    OBJ_RELEASE(cmd);    answer = OBJ_NEW(orte_buffer_t);    if (NULL == answer) {        ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);        return ORTE_ERR_OUT_OF_RESOURCE;    }    if (0 > orte_rml.recv_buffer(orte_process_info.gpr_replica, answer, ORTE_RML_TAG_GPR)) {        ORTE_ERROR_LOG(ORTE_ERR_COMM_FAILURE);        OBJ_RELEASE(answer);        return ORTE_ERR_COMM_FAILURE;    }    if (ORTE_SUCCESS != (rc = orte_gpr_base_unpack_decrement_value(answer, &ret))) {        ORTE_ERROR_LOG(rc);        OBJ_RELEASE(answer);        return rc;    }    OBJ_RELEASE(answer);    return ret;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -