/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */ /* * Copyright (c) 2014-2020 Intel, Inc. All rights reserved. * Copyright (c) 2014 Research Organization for Information Science * and Technology (RIST). All rights reserved. * Copyright (c) 2015 Los Alamos National Security, LLC. All rights * reserved. * Copyright (c) 2017 Amazon.com, Inc. or its affiliates. * All Rights reserved. * Copyright (c) 2020 Cisco Systems, Inc. All rights reserved * Copyright (c) 2021-2022 Nanook Consulting. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ * * These symbols are in a file by themselves to provide nice linker * semantics. Since linkers generally pull in symbols by object * files, keeping these symbols as the only symbols in this file * prevents utility programs such as "ompi_info" from having to import * entire components just to query their version and parameters. */ #include "prte_config.h" #include "reachable_weighted.h" #include "src/include/constants.h" #include "src/mca/prtereachable/prtereachable.h" #include "src/util/proc_info.h" /* * Public string showing the reachable weighted component version number */ const char *prte_prteeachable_weighted_component_version_string = "PRTE weighted reachable MCA component version " PRTE_VERSION; /* * Local function */ static int reachable_weighted_open(void); static int reachable_weighted_close(void); static int reachable_weighted_component_query(pmix_mca_base_module_t **module, int *priority); static int component_register(void); /* * Instantiate the public struct with all of our public information * and pointers to our public functions in it */ prte_mca_prtereachable_weighted_component_t prte_mca_prtereachable_weighted_component = { { /* First, the mca_component_t struct containing meta information about the component itself */ .base_version = { /* Indicate that we are a reachable v1.1.0 component (which also implies a specific MCA version) */ PRTE_REACHABLE_BASE_VERSION_2_0_0, /* Component name and version */ .pmix_mca_component_name = "weighted", PMIX_MCA_BASE_MAKE_VERSION(component, PRTE_MAJOR_VERSION, PRTE_MINOR_VERSION, PMIX_RELEASE_VERSION), /* Component open and close functions */ .pmix_mca_open_component = reachable_weighted_open, .pmix_mca_close_component = reachable_weighted_close, .pmix_mca_query_component = reachable_weighted_component_query, .pmix_mca_register_component_params = component_register, }, } }; static int reachable_weighted_open(void) { /* construct the component fields */ return PRTE_SUCCESS; } static int reachable_weighted_close(void) { return PRTE_SUCCESS; } static int component_register(void) { return PRTE_SUCCESS; } static int reachable_weighted_component_query(pmix_mca_base_module_t **module, int *priority) { *priority = 1; *module = (pmix_mca_base_module_t *) &prte_prtereachable_weighted_module; return PRTE_SUCCESS; }