File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (c) 2014-2016 Intel, Inc. All rights reserved
3
- * Copyright (c) 2014 Research Organization for Information Science
3
+ * Copyright (c) 2014-2016 Research Organization for Information Science
4
4
* and Technology (RIST). All rights reserved.
5
5
* $COPYRIGHT$
6
6
*
@@ -173,6 +173,8 @@ const char *orte_attr_key_to_str(orte_attribute_key_t key)
173
173
174
174
case ORTE_NODE_USERNAME :
175
175
return "NODE-USERNAME" ;
176
+ case ORTE_NODE_PORT :
177
+ return "NODE-PORT" ;
176
178
case ORTE_NODE_LAUNCH_ID :
177
179
return "NODE-LAUNCHID" ;
178
180
case ORTE_NODE_HOSTID :
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (c) 2014-2016 Intel, Inc. All rights reserved
3
+ * Copyright (c) 2016 Research Organization for Information Science
4
+ * and Technology (RIST). All rights reserved.
3
5
* $COPYRIGHT$
4
6
*
5
7
* Additional copyrights may follow
@@ -68,6 +70,7 @@ typedef uint8_t orte_node_flags_t;
68
70
// we need to know the id of our "host" to help any procs on us to determine locality
69
71
#define ORTE_NODE_ALIAS (ORTE_NODE_START_KEY + 4) // comma-separate list of alternate names for the node
70
72
#define ORTE_NODE_SERIAL_NUMBER (ORTE_NODE_START_KEY + 5) // string - serial number: used if node is a coprocessor
73
+ #define ORTE_NODE_PORT (ORTE_NODE_START_KEY + 6) // int32 - Alternate port to be passed to plm
71
74
72
75
#define ORTE_NODE_MAX_KEY 200
73
76
You can’t perform that action at this time.
0 commit comments