1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006-2007 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2007 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2006 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2010-2012 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2013-2021 Sandia National Laboratories. All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "ompi_config.h"
#include "ompi/mca/part/persist/part_persist.h"
#include "ompi/mca/part/persist/part_persist_sendreq.h"
#include "ompi/mca/part/persist/part_persist_recvreq.h"
#include "ompi/mca/part/persist/part_persist_component.h"
static int mca_part_persist_component_register(void);
static int mca_part_persist_component_open(void);
static int mca_part_persist_component_close(void);
static mca_part_base_module_t* mca_part_persist_component_init( int* priority,
bool enable_progress_threads, bool enable_mpi_threads);
static int mca_part_persist_component_fini(void);
mca_part_base_component_4_0_0_t mca_part_persist_component = {
/* First, the mca_base_component_t struct containing meta
* information about the component itself */
.partm_version = {
MCA_PART_BASE_VERSION_2_0_0,
.mca_component_name = "persist",
MCA_BASE_MAKE_VERSION(component, OMPI_MAJOR_VERSION, OMPI_MINOR_VERSION,
OMPI_RELEASE_VERSION),
.mca_open_component = mca_part_persist_component_open,
.mca_close_component = mca_part_persist_component_close,
.mca_register_component_params = mca_part_persist_component_register,
},
.partm_data = {
/* This component is not checkpoint ready */
MCA_BASE_METADATA_PARAM_NONE
},
.partm_init = mca_part_persist_component_init,
.partm_finalize = mca_part_persist_component_fini,
};
static int
mca_part_persist_component_register(void)
{
ompi_part_persist.free_list_num = 4;
(void) mca_base_component_var_register(&mca_part_persist_component.partm_version, "free_list_num",
"Initial size of request free lists",
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
OPAL_INFO_LVL_9,
MCA_BASE_VAR_SCOPE_READONLY,
&ompi_part_persist.free_list_num);
ompi_part_persist.free_list_max = -1;
(void) mca_base_component_var_register(&mca_part_persist_component.partm_version, "free_list_max",
"Maximum size of request free lists",
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
OPAL_INFO_LVL_9,
MCA_BASE_VAR_SCOPE_READONLY,
&ompi_part_persist.free_list_max);
ompi_part_persist.free_list_inc = 64;
(void) mca_base_component_var_register(&mca_part_persist_component.partm_version, "free_list_inc",
"Number of elements to add when growing request free lists",
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
OPAL_INFO_LVL_9,
MCA_BASE_VAR_SCOPE_READONLY,
&ompi_part_persist.free_list_inc);
return OPAL_SUCCESS;
}
static int
mca_part_persist_component_open(void)
{
OBJ_CONSTRUCT(&ompi_part_persist.lock, opal_mutex_t);
ompi_part_persist.next_send_tag = 0; /**< This is a counter for send tags for the actual data transfer. */
ompi_part_persist.next_recv_tag = 0;
mca_part_persist_init_lists();
ompi_part_persist.init_comms = 0;
ompi_part_persist.init_world = -1;
ompi_part_persist.part_comm_ready = 0;
ompi_part_persist.part_comm_ready = 0;
ompi_part_persist.block_entry = 0;
return OMPI_SUCCESS;
}
static int
mca_part_persist_component_close(void)
{
OBJ_DESTRUCT(&ompi_part_persist.lock);
return OMPI_SUCCESS;
}
static mca_part_base_module_t*
mca_part_persist_component_init(int* priority,
bool enable_progress_threads,
bool enable_mpi_threads)
{
*priority = 1;
opal_output_verbose( 10, 0,
"in persist part priority is %d\n", *priority);
return &ompi_part_persist.super;
}
static int
mca_part_persist_component_fini(void)
{
return OMPI_SUCCESS;
}
|