VaKeR CYBER ARMY
Logo of a company Server : Apache/2.4.41 (Ubuntu)
System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Directory :  /etc/alternatives/mpi/openmpi/orte/mca/rmaps/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //etc/alternatives/mpi/openmpi/orte/mca/rmaps/rmaps_types.h
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
 *                         University Research and Technology
 *                         Corporation.  All rights reserved.
 * Copyright (c) 2004-2008 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 (c) 2011-2017 Cisco Systems, Inc.  All rights reserved
 * Copyright (c) 2012-2015 Los Alamos National Security, LLC. All rights
 *                         reserved.
 * Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 */
/** @file:
 */

#ifndef ORTE_MCA_RMAPS_TYPES_H
#define ORTE_MCA_RMAPS_TYPES_H

#include "orte_config.h"
#include "orte/constants.h"

#include "opal/class/opal_pointer_array.h"
#include "opal/mca/hwloc/hwloc-internal.h"

#include "orte/runtime/orte_globals.h"

/*
 * General MAP types - instanced in runtime/orte_globals_class_instances.h
 */

BEGIN_C_DECLS

typedef uint16_t orte_mapping_policy_t;
#define ORTE_MAPPING_POLICY OPAL_UINT16
typedef uint16_t orte_ranking_policy_t;
#define ORTE_RANKING_POLICY OPAL_UINT16

/*
 * Structure that represents the mapping of a job to an
 * allocated set of resources.
 */
struct orte_job_map_t {
    opal_object_t super;
    /* user-specified mapping params */
    char *req_mapper;  /* requested mapper */
    char *last_mapper; /* last mapper used */
    orte_mapping_policy_t mapping;
    orte_ranking_policy_t ranking;
    opal_binding_policy_t binding;
    /* mapping options */
    char *ppr;
    int16_t cpus_per_rank;
    bool display_map;
    /* *** */
    /* number of new daemons required to be launched
     * to support this job map
     */
    orte_std_cntr_t num_new_daemons;
    /* starting vpid of the new daemons - they will
     * be sequential from that point
     */
    orte_vpid_t daemon_vpid_start;
    /* number of nodes participating in this job */
    orte_std_cntr_t num_nodes;
    /* array of pointers to nodes in this map for this job */
    opal_pointer_array_t *nodes;
};
typedef struct orte_job_map_t orte_job_map_t;
ORTE_DECLSPEC OBJ_CLASS_DECLARATION(orte_job_map_t);

/**
 * Macro for use in components that are of type rmaps
 */
#define ORTE_RMAPS_BASE_VERSION_2_0_0 \
    ORTE_MCA_BASE_VERSION_2_1_0("rmaps", 2, 0, 0)

/* define map-related directives */
#define ORTE_MAPPING_NO_USE_LOCAL      0x0100
#define ORTE_MAPPING_NO_OVERSUBSCRIBE  0x0200
#define ORTE_MAPPING_SUBSCRIBE_GIVEN   0x0400
#define ORTE_MAPPING_SPAN              0x0800
/* an error flag */
#define ORTE_MAPPING_CONFLICTED        0x1000
/* directives given */
#define ORTE_MAPPING_LOCAL_GIVEN       0x2000
#define ORTE_MAPPING_GIVEN             0x4000
/* mapping a debugger job */
#define ORTE_MAPPING_DEBUGGER          0x8000
#define ORTE_SET_MAPPING_DIRECTIVE(target, pol) \
    (target) |= (pol)
#define ORTE_UNSET_MAPPING_DIRECTIVE(target, pol) \
    (target) &= ~(pol)
#define ORTE_GET_MAPPING_DIRECTIVE(pol) \
    ((pol) & 0xff00)

/* round-robin policies */
/* start with hardware-based options
 * so the values match the corresponding
 * levels in opal/mca/hwloc/hwloc-internal.h
 */
#define ORTE_MAPPING_BYNODE            1
#define ORTE_MAPPING_BYBOARD           2
#define ORTE_MAPPING_BYNUMA            3
#define ORTE_MAPPING_BYSOCKET          4
#define ORTE_MAPPING_BYL3CACHE         5
#define ORTE_MAPPING_BYL2CACHE         6
#define ORTE_MAPPING_BYL1CACHE         7
#define ORTE_MAPPING_BYCORE            8
#define ORTE_MAPPING_BYHWTHREAD        9
/* now take the other round-robin options */
#define ORTE_MAPPING_BYSLOT            10
#define ORTE_MAPPING_BYDIST            11
/* convenience - declare anything <= 15 to be round-robin*/
#define ORTE_MAPPING_RR                0x000f

/* sequential policy */
#define ORTE_MAPPING_SEQ               20
/* staged execution mapping */
#define ORTE_MAPPING_STAGED            21
/* rank file and other user-defined mapping */
#define ORTE_MAPPING_BYUSER            22
/* pattern-based mapping */
#define ORTE_MAPPING_PPR               23
/* macro to separate out the mapping policy
 * from the directives
 */
#define ORTE_GET_MAPPING_POLICY(pol) \
    ((pol) & 0x00ff)
/* macro to determine if mapping policy is set */
#define ORTE_MAPPING_POLICY_IS_SET(pol) \
    ((pol) & 0x00ff)
#define ORTE_SET_MAPPING_POLICY(target, pol)     \
    (target) = (pol) | ((target) & 0xff00)

/* define ranking directives */
#define ORTE_RANKING_SPAN           0x1000
#define ORTE_RANKING_FILL           0x2000
#define ORTE_RANKING_GIVEN          0x4000
#define ORTE_SET_RANKING_DIRECTIVE(target, pol) \
    (target) |= (pol)
#define ORTE_UNSET_RANKING_DIRECTIVE(target, pol) \
    (target) &= ~(pol)
#define ORTE_GET_RANKING_DIRECTIVE(pol) \
    ((pol) & 0xf000)

/* define ranking policies */
#define ORTE_RANK_BY_NODE           1
#define ORTE_RANK_BY_BOARD          2
#define ORTE_RANK_BY_NUMA           3
#define ORTE_RANK_BY_SOCKET         4
#define ORTE_RANK_BY_L3CACHE        5
#define ORTE_RANK_BY_L2CACHE        6
#define ORTE_RANK_BY_L1CACHE        7
#define ORTE_RANK_BY_CORE           8
#define ORTE_RANK_BY_HWTHREAD       9
#define ORTE_RANK_BY_SLOT           10
#define ORTE_GET_RANKING_POLICY(pol) \
    ((pol) & 0x0fff)
/* macro to determine if ranking policy is set */
#define ORTE_RANKING_POLICY_IS_SET(pol) \
    ((pol) & 0x0fff)
#define ORTE_SET_RANKING_POLICY(target, pol)     \
    (target) = (pol) | ((target) & 0xf000)

END_C_DECLS

#endif

VaKeR 2022