|
||||
File indexing completed on 2025-01-17 09:55:56
0001 /* 0002 * Copyright (c) 2016 Mellanox Technologies, Inc. 0003 * All rights reserved. 0004 * Copyright (c) 2018 IBM Corporation. All rights reserved. 0005 * Copyright (c) 2018 Intel, Inc. All rights reserved. 0006 * Copyright (c) 2019 Research Organization for Information Science 0007 * and Technology (RIST). All rights reserved. 0008 * Copyright (c) 2023 Nanook Consulting. All rights reserved. 0009 * $COPYRIGHT$ 0010 * 0011 * Additional copyrights may follow 0012 * 0013 * $HEADER$ 0014 */ 0015 0016 0017 #ifndef PMIx_VERSION_H 0018 #define PMIx_VERSION_H 0019 0020 /* define PMIx version */ 0021 #define PMIX_VERSION_MAJOR 5L 0022 #define PMIX_VERSION_MINOR 0L 0023 #define PMIX_VERSION_RELEASE 3L 0024 0025 #define PMIX_NUMERIC_VERSION 0x00050003 0026 0027 0028 /* Define a mechanism by which we can flag PMIx versions 0029 * with "capabilities" - this allows consumers of the library 0030 * to differentiate based on capabilities instead of release 0031 * numbers. Note that this differs from the Standard version 0032 * and ABI version numbers for the release as the capabilities 0033 * refer to internal behaviors - e.g., how the cmd line parser 0034 * is operating. So someone who uses the cmd line parser might 0035 * compensate for some difference that occurs during/between 0036 * a PMIx release series 0037 */ 0038 0039 /* Individual capability flags */ 0040 #define PMIX_CAP_BASE 1 0041 0042 /* These are the capabilities that this version of OpenPMIx has. 0043 * For now, we just define/use a "base" marker as a starting 0044 * point 0045 */ 0046 #define PMIX_CAPABILITIES \ 0047 (PMIX_CAP_BASE) 0048 0049 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |