Hardware Locality (hwloc)  1.11.11
hwloc.h
1 /*
2  * Copyright © 2009 CNRS
3  * Copyright © 2009-2018 Inria. All rights reserved.
4  * Copyright © 2009-2012 Université Bordeaux
5  * Copyright © 2009-2011 Cisco Systems, Inc. All rights reserved.
6  * See COPYING in top-level directory.
7  */
8 
9 /*=====================================================================
10  * PLEASE GO READ THE DOCUMENTATION!
11  * ------------------------------------------------
12  * $tarball_directory/doc/doxygen-doc/
13  * or
14  * http://www.open-mpi.org/projects/hwloc/doc/
15  *=====================================================================
16  *
17  * FAIR WARNING: Do NOT expect to be able to figure out all the
18  * subtleties of hwloc by simply reading function prototypes and
19  * constant descrptions here in this file.
20  *
21  * Hwloc has wonderful documentation in both PDF and HTML formats for
22  * your reading pleasure. The formal documentation explains a LOT of
23  * hwloc-specific concepts, provides definitions, and discusses the
24  * "big picture" for many of the things that you'll find here in this
25  * header file.
26  *
27  * The PDF/HTML documentation was generated via Doxygen; much of what
28  * you'll see in there is also here in this file. BUT THERE IS A LOT
29  * THAT IS IN THE PDF/HTML THAT IS ***NOT*** IN hwloc.h!
30  *
31  * There are entire paragraph-length descriptions, discussions, and
32  * pretty prictures to explain subtle corner cases, provide concrete
33  * examples, etc.
34  *
35  * Please, go read the documentation. :-)
36  *
37  * Moreover there are several examples of hwloc use under doc/examples
38  * in the source tree.
39  *
40  *=====================================================================*/
41 
50 #ifndef HWLOC_H
51 #define HWLOC_H
52 
53 #include <hwloc/autogen/config.h>
54 #include <sys/types.h>
55 #include <stdio.h>
56 #include <string.h>
57 #include <limits.h>
58 
59 /*
60  * Symbol transforms
61  */
62 #include <hwloc/rename.h>
63 
64 /*
65  * Bitmap definitions
66  */
67 
68 #include <hwloc/bitmap.h>
69 
70 
71 #ifdef __cplusplus
72 extern "C" {
73 #endif
74 
75 
88 #define HWLOC_API_VERSION 0x00010b06
89 
94 HWLOC_DECLSPEC unsigned hwloc_get_api_version(void);
95 
97 #define HWLOC_COMPONENT_ABI 4
98 
135 
155 
170 typedef enum {
171  /* ***************************************************************
172  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
173 
174  If new enum values are added here, you MUST also go update the
175  obj_type_order[] and obj_order_type[] arrays in src/topology.c.
176 
177  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
178  *************************************************************** */
179 
257  HWLOC_OBJ_TYPE_MAX
259  /* ***************************************************************
260  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
261 
262  If new enum values are added here, you MUST also go update the
263  obj_type_order[] and obj_order_type[] arrays in src/topology.c.
264 
265  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
266  *************************************************************** */
268 
276 
282 
302 
320 HWLOC_DECLSPEC int hwloc_compare_types (hwloc_obj_type_t type1, hwloc_obj_type_t type2) __hwloc_attribute_const;
321 
324 };
325 
334 union hwloc_obj_attr_u;
335 
338  hwloc_uint64_t total_memory;
339  hwloc_uint64_t local_memory;
342  unsigned page_types_len;
349  hwloc_uint64_t size;
350  hwloc_uint64_t count;
351  } * page_types;
352 };
353 
358 struct hwloc_obj {
359  /* physical information */
360  hwloc_obj_type_t type;
362  unsigned os_index;
366  char *name;
371  struct hwloc_obj_memory_s memory;
376  /* global position */
377  unsigned depth;
392  unsigned logical_index;
396  signed os_level;
398  /* cousins are all objects of the same type (and depth) across the entire topology */
402  /* children of the same parent are siblings, even if they may have different type and depth */
403  struct hwloc_obj *parent;
404  unsigned sibling_rank;
408  /* children array below this object */
409  unsigned arity;
410  struct hwloc_obj **children;
414  /* misc */
415  void *userdata;
420  /* cpusets and nodesets */
421  hwloc_cpuset_t cpuset;
434  hwloc_cpuset_t complete_cpuset;
445  hwloc_cpuset_t online_cpuset;
453  hwloc_cpuset_t allowed_cpuset;
464  hwloc_nodeset_t nodeset;
481  hwloc_nodeset_t complete_nodeset;
495  hwloc_nodeset_t allowed_nodeset;
509  unsigned distances_count;
510 
512  unsigned infos_count;
519 };
523 typedef struct hwloc_obj * hwloc_obj_t;
524 
529  hwloc_uint64_t size;
530  unsigned depth;
531  unsigned linesize;
534  hwloc_obj_cache_type_t type;
535  } cache;
538  unsigned depth;
539  } group;
542  unsigned short domain;
543  unsigned char bus, dev, func;
544  unsigned short class_id;
545  unsigned short vendor_id, device_id, subvendor_id, subdevice_id;
546  unsigned char revision;
547  float linkspeed; /* in GB/s */
548  } pcidev;
551  union {
553  } upstream;
554  hwloc_obj_bridge_type_t upstream_type;
555  union {
556  struct {
557  unsigned short domain;
558  unsigned char secondary_bus, subordinate_bus;
559  } pci;
560  } downstream;
561  hwloc_obj_bridge_type_t downstream_type;
562  unsigned depth;
563  } bridge;
566  hwloc_obj_osdev_type_t type;
567  } osdev;
568 };
569 
584  unsigned relative_depth;
586  unsigned nbobjs;
591  float *latency;
603  float latency_max;
604  float latency_base;
608 };
609 
615  char *name;
616  char *value;
617 };
618 
627 struct hwloc_topology;
632 typedef struct hwloc_topology * hwloc_topology_t;
633 
640 HWLOC_DECLSPEC int hwloc_topology_init (hwloc_topology_t *topologyp);
641 
662 HWLOC_DECLSPEC int hwloc_topology_load(hwloc_topology_t topology);
663 
668 HWLOC_DECLSPEC void hwloc_topology_destroy (hwloc_topology_t topology);
669 
680 HWLOC_DECLSPEC int hwloc_topology_dup(hwloc_topology_t *newtopology, hwloc_topology_t oldtopology);
681 
693 HWLOC_DECLSPEC void hwloc_topology_check(hwloc_topology_t topology);
694 
731 HWLOC_DECLSPEC int hwloc_topology_ignore_type(hwloc_topology_t topology, hwloc_obj_type_t type);
732 
741 HWLOC_DECLSPEC int hwloc_topology_ignore_type_keep_structure(hwloc_topology_t topology, hwloc_obj_type_t type);
742 
749 HWLOC_DECLSPEC int hwloc_topology_ignore_all_keep_structure(hwloc_topology_t topology);
750 
773 
793 
806 
815 
825 
833 
854 };
855 
865 HWLOC_DECLSPEC int hwloc_topology_set_flags (hwloc_topology_t topology, unsigned long flags);
866 
873 HWLOC_DECLSPEC unsigned long hwloc_topology_get_flags (hwloc_topology_t topology);
874 
889 HWLOC_DECLSPEC int hwloc_topology_set_pid(hwloc_topology_t __hwloc_restrict topology, hwloc_pid_t pid);
890 
917 HWLOC_DECLSPEC int hwloc_topology_set_fsroot(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict fsroot_path);
918 
946 HWLOC_DECLSPEC int hwloc_topology_set_synthetic(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict description);
947 
974 HWLOC_DECLSPEC int hwloc_topology_set_xml(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict xmlpath);
975 
1002 HWLOC_DECLSPEC int hwloc_topology_set_xmlbuffer(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict buffer, int size);
1003 
1023 HWLOC_DECLSPEC int hwloc_topology_set_custom(hwloc_topology_t topology);
1024 
1043 HWLOC_DECLSPEC int hwloc_topology_set_distance_matrix(hwloc_topology_t __hwloc_restrict topology,
1044  hwloc_obj_type_t type, unsigned nbobjs,
1045  unsigned *os_index, float *distances);
1046 
1054 HWLOC_DECLSPEC int hwloc_topology_is_thissystem(hwloc_topology_t __hwloc_restrict topology) __hwloc_attribute_pure;
1055 
1059  unsigned char pu;
1060 };
1061 
1069  unsigned char set_thisproc_cpubind;
1071  unsigned char get_thisproc_cpubind;
1073  unsigned char set_proc_cpubind;
1075  unsigned char get_proc_cpubind;
1077  unsigned char set_thisthread_cpubind;
1079  unsigned char get_thisthread_cpubind;
1081  unsigned char set_thread_cpubind;
1083  unsigned char get_thread_cpubind;
1090 };
1091 
1099  unsigned char set_thisproc_membind;
1101  unsigned char get_thisproc_membind;
1103  unsigned char set_proc_membind;
1105  unsigned char get_proc_membind;
1107  unsigned char set_thisthread_membind;
1109  unsigned char get_thisthread_membind;
1111  unsigned char set_area_membind;
1113  unsigned char get_area_membind;
1115  unsigned char alloc_membind;
1117  unsigned char firsttouch_membind;
1119  unsigned char bind_membind;
1121  unsigned char interleave_membind;
1123  unsigned char replicate_membind;
1125  unsigned char nexttouch_membind;
1127  unsigned char migrate_membind;
1129  unsigned char get_area_memlocation;
1130 };
1131 
1142 };
1143 
1153 HWLOC_DECLSPEC const struct hwloc_topology_support *hwloc_topology_get_support(hwloc_topology_t __hwloc_restrict topology);
1154 
1165 HWLOC_DECLSPEC void hwloc_topology_set_userdata(hwloc_topology_t topology, const void *userdata);
1166 
1172 HWLOC_DECLSPEC void * hwloc_topology_get_userdata(hwloc_topology_t topology);
1173 
1194 HWLOC_DECLSPEC unsigned hwloc_topology_get_depth(hwloc_topology_t __hwloc_restrict topology) __hwloc_attribute_pure;
1195 
1220 HWLOC_DECLSPEC int hwloc_get_type_depth (hwloc_topology_t topology, hwloc_obj_type_t type);
1221 
1228 };
1229 
1244 static __hwloc_inline int
1245 hwloc_get_type_or_below_depth (hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure;
1246 
1261 static __hwloc_inline int
1262 hwloc_get_type_or_above_depth (hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure;
1263 
1270 HWLOC_DECLSPEC hwloc_obj_type_t hwloc_get_depth_type (hwloc_topology_t topology, unsigned depth) __hwloc_attribute_pure;
1271 
1274 HWLOC_DECLSPEC unsigned hwloc_get_nbobjs_by_depth (hwloc_topology_t topology, unsigned depth) __hwloc_attribute_pure;
1275 
1281 static __hwloc_inline int
1282 hwloc_get_nbobjs_by_type (hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure;
1283 
1289 static __hwloc_inline hwloc_obj_t
1290 hwloc_get_root_obj (hwloc_topology_t topology) __hwloc_attribute_pure;
1291 
1293 HWLOC_DECLSPEC hwloc_obj_t hwloc_get_obj_by_depth (hwloc_topology_t topology, unsigned depth, unsigned idx) __hwloc_attribute_pure;
1294 
1301 static __hwloc_inline hwloc_obj_t
1302 hwloc_get_obj_by_type (hwloc_topology_t topology, hwloc_obj_type_t type, unsigned idx) __hwloc_attribute_pure;
1303 
1308 static __hwloc_inline hwloc_obj_t
1309 hwloc_get_next_obj_by_depth (hwloc_topology_t topology, unsigned depth, hwloc_obj_t prev);
1310 
1317 static __hwloc_inline hwloc_obj_t
1318 hwloc_get_next_obj_by_type (hwloc_topology_t topology, hwloc_obj_type_t type,
1319  hwloc_obj_t prev);
1320 
1336 HWLOC_DECLSPEC const char * hwloc_obj_type_string (hwloc_obj_type_t type) __hwloc_attribute_const;
1337 
1351 HWLOC_DECLSPEC int hwloc_obj_type_snprintf(char * __hwloc_restrict string, size_t size, hwloc_obj_t obj,
1352  int verbose);
1353 
1365 HWLOC_DECLSPEC int hwloc_obj_attr_snprintf(char * __hwloc_restrict string, size_t size, hwloc_obj_t obj, const char * __hwloc_restrict separator,
1366  int verbose);
1367 
1375 HWLOC_DECLSPEC int hwloc_obj_cpuset_snprintf(char * __hwloc_restrict str, size_t size, size_t nobj, const hwloc_obj_t * __hwloc_restrict objs);
1376 
1406 HWLOC_DECLSPEC int hwloc_obj_type_sscanf(const char *string,
1407  hwloc_obj_type_t *typep,
1408  int *depthattrp,
1409  void *typeattrp, size_t typeattrsize);
1410 
1426 static __hwloc_inline const char *
1427 hwloc_obj_get_info_by_name(hwloc_obj_t obj, const char *name) __hwloc_attribute_pure;
1428 
1443 HWLOC_DECLSPEC void hwloc_obj_add_info(hwloc_obj_t obj, const char *name, const char *value);
1444 
1516 typedef enum {
1520 
1524 
1549 
1567 
1573 HWLOC_DECLSPEC int hwloc_set_cpubind(hwloc_topology_t topology, hwloc_const_cpuset_t set, int flags);
1574 
1580 HWLOC_DECLSPEC int hwloc_get_cpubind(hwloc_topology_t topology, hwloc_cpuset_t set, int flags);
1581 
1593 HWLOC_DECLSPEC int hwloc_set_proc_cpubind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_cpuset_t set, int flags);
1594 
1606 HWLOC_DECLSPEC int hwloc_get_proc_cpubind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, int flags);
1607 
1608 #ifdef hwloc_thread_t
1609 
1616 HWLOC_DECLSPEC int hwloc_set_thread_cpubind(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_const_cpuset_t set, int flags);
1617 #endif
1618 
1619 #ifdef hwloc_thread_t
1620 
1627 HWLOC_DECLSPEC int hwloc_get_thread_cpubind(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_cpuset_t set, int flags);
1628 #endif
1629 
1643 HWLOC_DECLSPEC int hwloc_get_last_cpu_location(hwloc_topology_t topology, hwloc_cpuset_t set, int flags);
1644 
1661 HWLOC_DECLSPEC int hwloc_get_proc_last_cpu_location(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, int flags);
1662 
1744 typedef enum {
1755 
1765 
1769 
1778 
1791 
1798 
1805 
1819 typedef enum {
1825 
1830 
1838 
1844 
1857 
1870 
1883 HWLOC_DECLSPEC int hwloc_set_membind_nodeset(hwloc_topology_t topology, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags);
1884 
1900 HWLOC_DECLSPEC int hwloc_set_membind(hwloc_topology_t topology, hwloc_const_bitmap_t set, hwloc_membind_policy_t policy, int flags);
1901 
1943 HWLOC_DECLSPEC int hwloc_get_membind_nodeset(hwloc_topology_t topology, hwloc_nodeset_t nodeset, hwloc_membind_policy_t * policy, int flags);
1944 
1989 HWLOC_DECLSPEC int hwloc_get_membind(hwloc_topology_t topology, hwloc_bitmap_t set, hwloc_membind_policy_t * policy, int flags);
1990 
2000 HWLOC_DECLSPEC int hwloc_set_proc_membind_nodeset(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags);
2001 
2014 HWLOC_DECLSPEC int hwloc_set_proc_membind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_bitmap_t set, hwloc_membind_policy_t policy, int flags);
2015 
2052 HWLOC_DECLSPEC int hwloc_get_proc_membind_nodeset(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_nodeset_t nodeset, hwloc_membind_policy_t * policy, int flags);
2053 
2093 HWLOC_DECLSPEC int hwloc_get_proc_membind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_bitmap_t set, hwloc_membind_policy_t * policy, int flags);
2094 
2102 HWLOC_DECLSPEC int hwloc_set_area_membind_nodeset(hwloc_topology_t topology, const void *addr, size_t len, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags);
2103 
2114 HWLOC_DECLSPEC int hwloc_set_area_membind(hwloc_topology_t topology, const void *addr, size_t len, hwloc_const_bitmap_t set, hwloc_membind_policy_t policy, int flags);
2115 
2140 HWLOC_DECLSPEC int hwloc_get_area_membind_nodeset(hwloc_topology_t topology, const void *addr, size_t len, hwloc_nodeset_t nodeset, hwloc_membind_policy_t * policy, int flags);
2141 
2169 HWLOC_DECLSPEC int hwloc_get_area_membind(hwloc_topology_t topology, const void *addr, size_t len, hwloc_bitmap_t set, hwloc_membind_policy_t * policy, int flags);
2170 
2190 HWLOC_DECLSPEC int hwloc_get_area_memlocation(hwloc_topology_t topology, const void *addr, size_t len, hwloc_bitmap_t set, int flags);
2191 
2199 HWLOC_DECLSPEC void *hwloc_alloc(hwloc_topology_t topology, size_t len);
2200 
2212 HWLOC_DECLSPEC void *hwloc_alloc_membind_nodeset(hwloc_topology_t topology, size_t len, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags) __hwloc_attribute_malloc;
2213 
2228 HWLOC_DECLSPEC void *hwloc_alloc_membind(hwloc_topology_t topology, size_t len, hwloc_const_bitmap_t set, hwloc_membind_policy_t policy, int flags) __hwloc_attribute_malloc;
2229 
2236 static __hwloc_inline void *
2237 hwloc_alloc_membind_policy_nodeset(hwloc_topology_t topology, size_t len, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags) __hwloc_attribute_malloc;
2238 
2248 static __hwloc_inline void *
2249 hwloc_alloc_membind_policy(hwloc_topology_t topology, size_t len, hwloc_const_bitmap_t set, hwloc_membind_policy_t policy, int flags) __hwloc_attribute_malloc;
2250 
2254 HWLOC_DECLSPEC int hwloc_free(hwloc_topology_t topology, void *addr, size_t len);
2255 
2278 HWLOC_DECLSPEC hwloc_obj_t hwloc_topology_insert_misc_object_by_cpuset(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, const char *name);
2279 
2295 HWLOC_DECLSPEC hwloc_obj_t hwloc_topology_insert_misc_object_by_parent(hwloc_topology_t topology, hwloc_obj_t parent, const char *name);
2296 
2304 
2310 
2316 };
2317 
2339 HWLOC_DECLSPEC int hwloc_topology_restrict(hwloc_topology_t __hwloc_restrict topology, hwloc_const_cpuset_t cpuset, unsigned long flags);
2340 
2374 HWLOC_DECLSPEC int hwloc_custom_insert_topology(hwloc_topology_t newtopology, hwloc_obj_t newparent, hwloc_topology_t oldtopology, hwloc_obj_t oldroot);
2375 
2397 HWLOC_DECLSPEC hwloc_obj_t hwloc_custom_insert_group_object_by_parent(hwloc_topology_t topology, hwloc_obj_t parent, int groupdepth);
2398 
2424 HWLOC_DECLSPEC int hwloc_topology_export_xml(hwloc_topology_t topology, const char *xmlpath);
2425 
2444 HWLOC_DECLSPEC int hwloc_topology_export_xmlbuffer(hwloc_topology_t topology, char **xmlbuffer, int *buflen);
2445 
2447 HWLOC_DECLSPEC void hwloc_free_xmlbuffer(hwloc_topology_t topology, char *xmlbuffer);
2448 
2467 HWLOC_DECLSPEC void hwloc_topology_set_userdata_export_callback(hwloc_topology_t topology,
2468  void (*export_cb)(void *reserved, hwloc_topology_t topology, hwloc_obj_t obj));
2469 
2495 HWLOC_DECLSPEC int hwloc_export_obj_userdata(void *reserved, hwloc_topology_t topology, hwloc_obj_t obj, const char *name, const void *buffer, size_t length);
2496 
2510 HWLOC_DECLSPEC int hwloc_export_obj_userdata_base64(void *reserved, hwloc_topology_t topology, hwloc_obj_t obj, const char *name, const void *buffer, size_t length);
2511 
2534 HWLOC_DECLSPEC void hwloc_topology_set_userdata_import_callback(hwloc_topology_t topology,
2535  void (*import_cb)(hwloc_topology_t topology, hwloc_obj_t obj, const char *name, const void *buffer, size_t length));
2536 
2555 
2563 };
2564 
2583  HWLOC_DECLSPEC int hwloc_topology_export_synthetic(hwloc_topology_t topology, char *buffer, size_t buflen, unsigned long flags);
2584 
2589 #ifdef __cplusplus
2590 } /* extern "C" */
2591 #endif
2592 
2593 
2594 /* high-level helpers */
2595 #include <hwloc/helper.h>
2596 
2597 /* inline code of some functions above */
2598 #include <hwloc/inlines.h>
2599 
2600 /* topology diffs */
2601 #include <hwloc/diff.h>
2602 
2603 /* deprecated headers */
2604 #include <hwloc/deprecated.h>
2605 
2606 #endif /* HWLOC_H */
int hwloc_export_obj_userdata_base64(void *reserved, hwloc_topology_t topology, hwloc_obj_t obj, const char *name, const void *buffer, size_t length)
Encode and export some object userdata to XML.
Definition: hwloc.h:1837
Operating system device. These objects have neither CPU sets nor node sets. They are not added to the...
Definition: hwloc.h:251
enum hwloc_obj_bridge_type_e hwloc_obj_bridge_type_t
Type of one side (upstream or downstream) of an I/O bridge.
void * hwloc_alloc(hwloc_topology_t topology, size_t len)
Allocate some memory.
Bridge specific Object Attribues.
Definition: hwloc.h:550
Detect PCI devices.
Definition: hwloc.h:805
Processing Unit, or (Logical) Processor. An execution unit (may share a core with some other logical ...
Definition: hwloc.h:211
int hwloc_set_proc_membind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_bitmap_t set, hwloc_membind_policy_t policy, int flags)
Set the default memory binding policy of the specified process to prefer the NUMA node(s) specified b...
unsigned linesize
Cache-line size in bytes. 0 if unknown.
Definition: hwloc.h:531
Avoid any effect on memory binding.
Definition: hwloc.h:1565
hwloc_topology_flags_e
Flags to be set onto a topology context before load.
Definition: hwloc.h:756
Export extended types such as L2dcache as basic types such as Cache.
Definition: hwloc.h:2554
Virtual depth for bridge object level.
Definition: hwloc.h:1225
static hwloc_obj_t hwloc_get_obj_by_type(hwloc_topology_t topology, hwloc_obj_type_t type, unsigned idx)
Returns the topology object at logical index idx with type type.
unsigned char set_thisthread_cpubind
Definition: hwloc.h:1077
Miscellaneous objects. Objects without particular meaning, that can e.g. be added by the application ...
Definition: hwloc.h:233
const struct hwloc_topology_support * hwloc_topology_get_support(hwloc_topology_t restrict topology)
Retrieve the topology support.
Set policy for all threads of the specified (possibly multithreaded) process. This flag is mutually e...
Definition: hwloc.h:1824
void hwloc_obj_add_info(hwloc_obj_t obj, const char *name, const char *value)
Add the given info name and value pair to the given object.
Objects of given type exist at different depth in the topology.
Definition: hwloc.h:1224
Group objects. Objects which do not fit in the above but are detected by hwloc and are useful to take...
Definition: hwloc.h:220
struct hwloc_obj * parent
Parent, NULL if root (system object)
Definition: hwloc.h:403
static hwloc_obj_t hwloc_get_next_obj_by_type(hwloc_topology_t topology, hwloc_obj_type_t type, hwloc_obj_t prev)
Returns the next object of type type.
unsigned depth
Vertical index in the hierarchy.
Definition: hwloc.h:377
Flags describing actual PU binding support for this topology.
Definition: hwloc.h:1067
hwloc_obj_cache_type_e
Cache type.
Definition: hwloc.h:270
Data cache.
Definition: hwloc.h:272
PCI device. These objects have neither CPU sets nor node sets. They are not added to the topology unl...
Definition: hwloc.h:246
int hwloc_topology_set_synthetic(hwloc_topology_t restrict topology, const char *restrict description)
Enable synthetic topology.
Distances between objects.
Definition: hwloc.h:583
Bridge. Any bridge that connects the host or an I/O bus, to another I/O bus. Bridge objects have neit...
Definition: hwloc.h:239
float latency_base
The multiplier that should be applied to latency matrix to retrieve the original OS-provided latencie...
Definition: hwloc.h:604
No object of given type exists in the topology.
Definition: hwloc.h:1223
int hwloc_export_obj_userdata(void *reserved, hwloc_topology_t topology, hwloc_obj_t obj, const char *name, const void *buffer, size_t length)
Export some object userdata to XML.
unsigned long hwloc_topology_get_flags(hwloc_topology_t topology)
Get OR&#39;ed flags of a topology.
int hwloc_get_proc_last_cpu_location(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, int flags)
Get the last physical CPU where a process ran.
int hwloc_get_membind(hwloc_topology_t topology, hwloc_bitmap_t set, hwloc_membind_policy_t *policy, int flags)
Query the default memory binding policy and physical locality of the current process or thread...
Host-side of a bridge, only possible upstream.
Definition: hwloc.h:279
struct hwloc_topology_discovery_support * discovery
Definition: hwloc.h:1139
Allocate memory on the given nodes in an interleaved / round-robin manner. The precise layout of the ...
Definition: hwloc.h:1777
hwloc_cpubind_flags_t
Process/Thread binding flags.
Definition: hwloc.h:1516
Unified cache.
Definition: hwloc.h:271
static int hwloc_get_type_or_below_depth(hwloc_topology_t topology, hwloc_obj_type_t type)
Returns the depth of objects of type type or below.
unsigned char subordinate_bus
Definition: hwloc.h:558
int hwloc_obj_type_sscanf(const char *string, hwloc_obj_type_t *typep, int *depthattrp, void *typeattrp, size_t typeattrsize)
Return an object type and attributes from a type string.
struct hwloc_obj * next_cousin
Next object of same type and depth.
Definition: hwloc.h:399
Allocate memory on the specified nodes.
Definition: hwloc.h:1768
hwloc_nodeset_t allowed_nodeset
The set of allowed NUMA memory nodes.
Definition: hwloc.h:495
union hwloc_obj_attr_u * attr
Object type-specific Attributes, may be NULL if no attribute value was found.
Definition: hwloc.h:373
struct hwloc_distances_s ** distances
Distances between all objects at same depth below this object.
Definition: hwloc.h:508
Set of flags describing actual support for this topology.
Definition: hwloc.h:1138
int hwloc_topology_set_distance_matrix(hwloc_topology_t restrict topology, hwloc_obj_type_t type, unsigned nbobjs, unsigned *os_index, float *distances)
Provide a distance matrix.
static int hwloc_get_type_or_above_depth(hwloc_topology_t topology, hwloc_obj_type_t type)
Returns the depth of objects of type type or above.
hwloc_obj_t hwloc_topology_insert_misc_object_by_cpuset(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, const char *name)
Add a MISC object to the topology.
hwloc_obj_t hwloc_topology_insert_misc_object_by_parent(hwloc_topology_t topology, hwloc_obj_t parent, const char *name)
Add a MISC object as a leaf of the topology.
Operating system block device. For instance "sda" on Linux.
Definition: hwloc.h:285
unsigned logical_index
Horizontal index in the whole list of similar objects, hence guaranteed unique across the entire mach...
Definition: hwloc.h:392
Detect PCI bridges.
Definition: hwloc.h:814
struct hwloc_obj * prev_cousin
Previous object of same type and depth.
Definition: hwloc.h:400
unsigned char set_area_membind
Definition: hwloc.h:1111
int hwloc_set_thread_cpubind(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_const_cpuset_t set, int flags)
Bind a thread thread on cpus given in physical bitmap set.
Virtual depth for software device object level.
Definition: hwloc.h:1227
int hwloc_set_membind_nodeset(hwloc_topology_t topology, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags)
Set the default memory binding policy of the current process or thread to prefer the NUMA node(s) spe...
hwloc_const_bitmap_t hwloc_const_cpuset_t
A non-modifiable hwloc_cpuset_t.
Definition: hwloc.h:134
Detect instruction caches.
Definition: hwloc.h:832
float latency_max
The maximal value in the latency matrix.
Definition: hwloc.h:603
hwloc_uint64_t size
Size of cache in bytes.
Definition: hwloc.h:529
hwloc_membind_flags_t
Memory binding flags.
Definition: hwloc.h:1819
void hwloc_topology_set_userdata_import_callback(hwloc_topology_t topology, void(*import_cb)(hwloc_topology_t topology, hwloc_obj_t obj, const char *name, const void *buffer, size_t length))
Set the application-specific callback for importing userdata.
int hwloc_set_membind(hwloc_topology_t topology, hwloc_const_bitmap_t set, hwloc_membind_policy_t policy, int flags)
Set the default memory binding policy of the current process or thread to prefer the NUMA node(s) spe...
signed os_level
OS-provided physical level, -1 if unknown or meaningless.
Definition: hwloc.h:396
Replicate memory on the given nodes; reads from this memory will attempt to be serviced from the NUMA...
Definition: hwloc.h:1790
unsigned char firsttouch_membind
Definition: hwloc.h:1117
int hwloc_topology_ignore_type(hwloc_topology_t topology, hwloc_obj_type_t type)
Ignore an object type.
Object memory.
Definition: hwloc.h:337
Move Misc objects to ancestors if their parents are removed during restriction. If this flag is not s...
Definition: hwloc.h:2309
unsigned nbobjs
Number of objects considered in the matrix. It is the number of descendant objects at relative_depth ...
Definition: hwloc.h:586
hwloc_uint64_t local_memory
Local memory (in bytes)
Definition: hwloc.h:339
unsigned arity
Number of children.
Definition: hwloc.h:409
int hwloc_get_last_cpu_location(hwloc_topology_t topology, hwloc_cpuset_t set, int flags)
Get the last physical CPU where the current process or thread ran.
int hwloc_topology_restrict(hwloc_topology_t restrict topology, hwloc_const_cpuset_t cpuset, unsigned long flags)
Restrict the topology to the given CPU set.
static hwloc_obj_t hwloc_get_next_obj_by_depth(hwloc_topology_t topology, unsigned depth, hwloc_obj_t prev)
Returns the next object at depth depth.
struct hwloc_topology * hwloc_topology_t
Topology context.
Definition: hwloc.h:632
static const char * hwloc_obj_get_info_by_name(hwloc_obj_t obj, const char *name)
Search the given key name in object infos and return the corresponding value.
int hwloc_get_thread_cpubind(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_cpuset_t set, int flags)
Get the current physical binding of thread tid.
hwloc_get_type_depth_e
Definition: hwloc.h:1222
hwloc_obj_osdev_type_t type
Definition: hwloc.h:566
void * hwloc_alloc_membind_nodeset(hwloc_topology_t topology, size_t len, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags)
Allocate some memory on NUMA memory nodes specified by nodeset.
unsigned char func
Definition: hwloc.h:543
int hwloc_set_area_membind_nodeset(hwloc_topology_t topology, const void *addr, size_t len, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags)
Bind the already-allocated memory identified by (addr, len) to the NUMA node(s) specified by nodeset...
hwloc_bitmap_t hwloc_cpuset_t
A CPU set is a bitmap whose bits are set according to CPU physical OS indexes.
Definition: hwloc.h:132
char * name
Object-specific name if any. Mostly used for identifying OS devices and Misc objects where a name str...
Definition: hwloc.h:366
unsigned depth
Definition: hwloc.h:562
unsigned depth
Depth of group object.
Definition: hwloc.h:538
Instruction cache. Only used when the HWLOC_TOPOLOGY_FLAG_ICACHES topology flag is set...
Definition: hwloc.h:273
struct hwloc_obj_memory_s::hwloc_obj_memory_page_type_s * page_types
hwloc_obj_cache_type_t type
Cache type.
Definition: hwloc.h:534
unsigned char set_thread_cpubind
Definition: hwloc.h:1081
unsigned char get_proc_membind
Definition: hwloc.h:1105
Operating system dma engine device. For instance the "dma0chan0" DMA channel on Linux.
Definition: hwloc.h:295
int hwloc_get_proc_membind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_bitmap_t set, hwloc_membind_policy_t *policy, int flags)
Query the default memory binding policy and physical locality of the specified process.
unsigned char get_thread_cpubind
Definition: hwloc.h:1083
Bind all threads of the current (possibly) multithreaded process.
Definition: hwloc.h:1519
unsigned distances_count
Definition: hwloc.h:509
int hwloc_topology_export_xml(hwloc_topology_t topology, const char *xmlpath)
Export the topology into an XML file.
unsigned short domain
Definition: hwloc.h:542
static hwloc_obj_t hwloc_get_root_obj(hwloc_topology_t topology)
Returns the top-object of the topology-tree.
Operating system GPU device. For instance ":0.0" for a GL display, "card0" for a Linux DRM device...
Definition: hwloc.h:287
Detect the whole PCI hierarchy.
Definition: hwloc.h:824
Operating system network device. For instance the "eth0" interface on Linux.
Definition: hwloc.h:290
Reset the memory allocation policy to the system default. Depending on the operating system...
Definition: hwloc.h:1754
unsigned hwloc_get_api_version(void)
Indicate at runtime which hwloc API version was used at build time.
hwloc_uint64_t count
Number of pages of this size.
Definition: hwloc.h:350
Request for strict binding from the OS.
Definition: hwloc.h:1548
hwloc_cpuset_t cpuset
CPUs covered by this object.
Definition: hwloc.h:421
hwloc_cpuset_t allowed_cpuset
The CPU set of allowed logical processors.
Definition: hwloc.h:453
struct hwloc_topology_membind_support * membind
Definition: hwloc.h:1141
hwloc_cpuset_t complete_cpuset
The complete CPU set of logical processors of this object,.
Definition: hwloc.h:434
struct hwloc_obj_info_s * infos
Array of stringified info type=name.
Definition: hwloc.h:511
char * name
Info name.
Definition: hwloc.h:615
Core. A computation unit (may be shared by several logical processors).
Definition: hwloc.h:207
int hwloc_topology_set_flags(hwloc_topology_t topology, unsigned long flags)
Set OR&#39;ed flags to non-yet-loaded topology.
unsigned sibling_rank
Index in parent&#39;s children[] array.
Definition: hwloc.h:404
unsigned char set_proc_membind
Definition: hwloc.h:1103
struct hwloc_obj * last_child
Last child.
Definition: hwloc.h:412
int hwloc_obj_attr_snprintf(char *restrict string, size_t size, hwloc_obj_t obj, const char *restrict separator, int verbose)
Stringify the attributes of a given topology object into a human-readable form.
unsigned os_index
OS-provided physical index number. It is not guaranteed unique across the entire machine, except for PUs and NUMA nodes.
Definition: hwloc.h:362
Returned by get_membind() functions when multiple threads or parts of a memory area have differing me...
Definition: hwloc.h:1803
Cache-specific Object Attributes.
Definition: hwloc.h:528
int hwloc_get_membind_nodeset(hwloc_topology_t topology, hwloc_nodeset_t nodeset, hwloc_membind_policy_t *policy, int flags)
Query the default memory binding policy and physical locality of the current process or thread...
Value returned by hwloc_compare_types() when types can not be compared.
Definition: hwloc.h:323
unsigned char get_thisproc_last_cpu_location
Definition: hwloc.h:1085
Array of local memory page types, NULL if no local memory and page_types is 0.
Definition: hwloc.h:348
hwloc_obj_bridge_type_t upstream_type
Definition: hwloc.h:554
int hwloc_get_area_membind_nodeset(hwloc_topology_t topology, const void *addr, size_t len, hwloc_nodeset_t nodeset, hwloc_membind_policy_t *policy, int flags)
Query the physical NUMA node(s) and binding policy of the memory identified by (addr, len ).
Cache. Can be L1i, L1d, L2, L3, ...
Definition: hwloc.h:204
void hwloc_topology_destroy(hwloc_topology_t topology)
Terminate and free a topology context.
hwloc_nodeset_t complete_nodeset
The complete NUMA node set of this object,.
Definition: hwloc.h:481
hwloc_obj_type_t
Type of topology object.
Definition: hwloc.h:170
Migrate existing allocated memory. If the memory cannot be migrated and the HWLOC_MEMBIND_STRICT flag...
Definition: hwloc.h:1843
int hwloc_get_proc_membind_nodeset(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_nodeset_t nodeset, hwloc_membind_policy_t *policy, int flags)
Query the default memory binding policy and physical locality of the specified process.
unsigned char get_thisproc_membind
Definition: hwloc.h:1101
Physical package. The physical package that usually gets inserted into a socket on the motherboard...
Definition: hwloc.h:199
hwloc_const_bitmap_t hwloc_const_nodeset_t
A non-modifiable hwloc_nodeset_t.
Definition: hwloc.h:154
hwloc_obj_bridge_type_t downstream_type
Definition: hwloc.h:561
unsigned char get_proc_cpubind
Definition: hwloc.h:1075
unsigned hwloc_get_nbobjs_by_depth(hwloc_topology_t topology, unsigned depth)
Returns the width of level at depth depth.
char * value
Info value.
Definition: hwloc.h:616
unsigned char migrate_membind
Definition: hwloc.h:1127
Get the set of allowed resources from the local operating system even if the topology was loaded from...
Definition: hwloc.h:853
hwloc_topology_export_synthetic_flags_e
Flags for exporting synthetic topologies.
Definition: hwloc.h:2548
int hwloc_get_type_depth(hwloc_topology_t topology, hwloc_obj_type_t type)
Returns the depth of objects of type type.
unsigned char get_thisthread_cpubind
Definition: hwloc.h:1079
PCI Device specific Object Attributes.
Definition: hwloc.h:541
hwloc_restrict_flags_e
Flags to be given to hwloc_topology_restrict().
Definition: hwloc.h:2298
int hwloc_get_cpubind(hwloc_topology_t topology, hwloc_cpuset_t set, int flags)
Get current process or thread binding.
unsigned char get_proc_last_cpu_location
Definition: hwloc.h:1087
unsigned short class_id
Definition: hwloc.h:544
unsigned char get_thisthread_last_cpu_location
Definition: hwloc.h:1089
int hwloc_topology_export_xmlbuffer(hwloc_topology_t topology, char **xmlbuffer, int *buflen)
Export the topology into a newly-allocated XML memory buffer.
hwloc_uint64_t total_memory
Total memory (in bytes) in this object and its children.
Definition: hwloc.h:338
Detect the whole system, ignore reservations and offline settings.
Definition: hwloc.h:772
int hwloc_topology_set_xmlbuffer(hwloc_topology_t restrict topology, const char *restrict buffer, int size)
Enable XML based topology using a memory buffer (instead of a file, as with hwloc_topology_set_xml())...
unsigned char pu
Detecting the number of PU objects is supported.
Definition: hwloc.h:1059
Consider the bitmap argument as a nodeset.
Definition: hwloc.h:1868
hwloc_cpuset_t online_cpuset
The CPU set of online logical processors.
Definition: hwloc.h:445
int hwloc_get_area_memlocation(hwloc_topology_t topology, const void *addr, size_t len, hwloc_bitmap_t set, int flags)
Get the NUMA nodes where memory identified by (addr, len ) is physically allocated.
static void * hwloc_alloc_membind_policy(hwloc_topology_t topology, size_t len, hwloc_const_bitmap_t set, hwloc_membind_policy_t policy, int flags)
Allocate some memory on NUMA memory nodes specified by set.
void * hwloc_alloc_membind(hwloc_topology_t topology, size_t len, hwloc_const_bitmap_t set, hwloc_membind_policy_t policy, int flags)
Allocate some memory on NUMA memory nodes specified by set.
void hwloc_topology_set_userdata(hwloc_topology_t topology, const void *userdata)
Set the topology-specific userdata pointer.
unsigned infos_count
Size of infos array.
Definition: hwloc.h:512
Flags describing actual discovery support for this topology.
Definition: hwloc.h:1057
struct hwloc_obj * hwloc_obj_t
Convenience typedef; a pointer to a struct hwloc_obj.
Definition: hwloc.h:523
float * latency
Matrix of latencies between objects, stored as a one-dimension array. May be NULL if the distances co...
Definition: hwloc.h:591
Do not export level attributes.
Definition: hwloc.h:2562
OS Device specific Object Attributes.
Definition: hwloc.h:565
void hwloc_free_xmlbuffer(hwloc_topology_t topology, char *xmlbuffer)
Free a buffer allocated by hwloc_topology_export_xmlbuffer()
static int hwloc_get_nbobjs_by_type(hwloc_topology_t topology, hwloc_obj_type_t type)
Returns the width of level type type.
unsigned page_types_len
Size of array page_types.
Definition: hwloc.h:342
int hwloc_set_cpubind(hwloc_topology_t topology, hwloc_const_cpuset_t set, int flags)
Bind current process or thread on cpus given in physical bitmap set.
PCI-side of a bridge.
Definition: hwloc.h:280
int hwloc_custom_insert_topology(hwloc_topology_t newtopology, hwloc_obj_t newparent, hwloc_topology_t oldtopology, hwloc_obj_t oldroot)
Insert an existing topology inside a custom topology.
struct hwloc_obj * next_sibling
Next object below the same parent.
Definition: hwloc.h:405
hwloc_obj_t hwloc_get_obj_by_depth(hwloc_topology_t topology, unsigned depth, unsigned idx)
Returns the topology object at logical index idx from depth depth.
int symmetric_subtree
Set if the subtree of objects below this object is symmetric, which means all children and their chil...
Definition: hwloc.h:514
int hwloc_topology_ignore_all_keep_structure(hwloc_topology_t topology)
Ignore all objects that do not bring any structure.
const struct hwloc_bitmap_s * hwloc_const_bitmap_t
a non-modifiable hwloc_bitmap_t
Definition: bitmap.h:65
unsigned char set_thisproc_cpubind
Definition: hwloc.h:1069
hwloc_obj_osdev_type_e
Type of a OS device.
Definition: hwloc.h:284
Operating system co-processor device. For instance "mic0" for a Xeon Phi (MIC) on Linux...
Definition: hwloc.h:297
float linkspeed
Definition: hwloc.h:547
void * userdata
Application-given private data pointer, initialized to NULL, use it as you wish. See hwloc_topology_s...
Definition: hwloc.h:415
unsigned char bind_membind
Definition: hwloc.h:1119
For each page bound with this policy, by next time it is touched (and next time only), it is moved from its current location to the local NUMA node of the thread where the memory reference occurred (if it needs to be moved at all).
Definition: hwloc.h:1797
struct hwloc_obj * prev_sibling
Previous object below the same parent.
Definition: hwloc.h:406
unsigned char get_area_memlocation
Definition: hwloc.h:1129
Object type-specific Attributes.
Definition: hwloc.h:526
int hwloc_topology_ignore_type_keep_structure(hwloc_topology_t topology, hwloc_obj_type_t type)
Ignore an object type if it does not bring any structure.
void hwloc_topology_check(hwloc_topology_t topology)
Run internal checks on a topology structure.
int hwloc_free(hwloc_topology_t topology, void *addr, size_t len)
Free memory that was previously allocated by hwloc_alloc() or hwloc_alloc_membind().
Flags describing actual memory binding support for this topology.
Definition: hwloc.h:1097
unsigned char set_thisthread_membind
Definition: hwloc.h:1107
hwloc_obj_type_t type
Type of object.
Definition: hwloc.h:360
Avoid any effect on CPU binding.
Definition: hwloc.h:1856
int hwloc_topology_set_xml(hwloc_topology_t restrict topology, const char *restrict xmlpath)
Enable XML-file based topology.
int hwloc_topology_set_custom(hwloc_topology_t topology)
Prepare the topology for custom assembly.
Virtual depth for PCI device object level.
Definition: hwloc.h:1226
unsigned char revision
Definition: hwloc.h:546
unsigned char set_thisproc_membind
Definition: hwloc.h:1099
hwloc_obj_type_t hwloc_get_depth_type(hwloc_topology_t topology, unsigned depth)
Returns the type of objects at depth depth.
Allocate memory but do not immediately bind it to a specific locality. Instead, each page in the allo...
Definition: hwloc.h:1764
int hwloc_get_proc_cpubind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, int flags)
Get the current physical binding of process pid.
unsigned char nexttouch_membind
Definition: hwloc.h:1125
enum hwloc_obj_cache_type_e hwloc_obj_cache_type_t
Cache type.
NUMA node. An object that contains memory that is directly and byte-accessible to the host processors...
Definition: hwloc.h:190
hwloc_nodeset_t nodeset
NUMA nodes covered by this object or containing this object.
Definition: hwloc.h:464
hwloc_membind_policy_t
Memory binding policy.
Definition: hwloc.h:1744
int hwloc_obj_cpuset_snprintf(char *restrict str, size_t size, size_t nobj, const hwloc_obj_t *restrict objs)
Stringify the cpuset containing a set of objects.
struct hwloc_obj * first_child
First child.
Definition: hwloc.h:411
Machine. The typical root object type. A set of processors and memory with cache coherency.
Definition: hwloc.h:185
int hwloc_topology_load(hwloc_topology_t topology)
Build the actual topology.
int hwloc_obj_type_snprintf(char *restrict string, size_t size, hwloc_obj_t obj, int verbose)
Stringify the type of a given topology object into a human-readable form.
Operating system openfabrics device. For instance the "mlx4_0" InfiniBand HCA, or "hfi1_0" Omni-Path ...
Definition: hwloc.h:292
unsigned depth
Depth of cache (e.g., L1, L2, ...etc.)
Definition: hwloc.h:530
unsigned short domain
Definition: hwloc.h:557
Move I/O objects to ancestors if their parents are removed during restriction. If this flag is not se...
Definition: hwloc.h:2315
int hwloc_topology_export_synthetic(hwloc_topology_t topology, char *buffer, size_t buflen, unsigned long flags)
Export the topology as a synthetic string.
hwloc_uint64_t size
Size of pages.
Definition: hwloc.h:349
hwloc_bitmap_t hwloc_nodeset_t
A node set is a bitmap whose bits are set according to NUMA memory node physical OS indexes...
Definition: hwloc.h:151
enum hwloc_obj_osdev_type_e hwloc_obj_osdev_type_t
Type of a OS device.
void hwloc_topology_set_userdata_export_callback(hwloc_topology_t topology, void(*export_cb)(void *reserved, hwloc_topology_t topology, hwloc_obj_t obj))
Set the application-specific callback for exporting object userdata.
Set policy for a specific thread of the current process. This flag is mutually exclusive with HWLOC_M...
Definition: hwloc.h:1829
int hwloc_set_area_membind(hwloc_topology_t topology, const void *addr, size_t len, hwloc_const_bitmap_t set, hwloc_membind_policy_t policy, int flags)
Bind the already-allocated memory identified by (addr, len) to the NUMA node(s) specified by set...
unsigned hwloc_topology_get_depth(hwloc_topology_t restrict topology)
Get the depth of the hierarchical tree of objects.
Whole system (may be a cluster of machines). The whole system that is accessible to hwloc...
Definition: hwloc.h:180
struct hwloc_topology_cpubind_support * cpubind
Definition: hwloc.h:1140
int hwloc_topology_init(hwloc_topology_t *topologyp)
Allocate a topology context.
const char * hwloc_obj_type_string(hwloc_obj_type_t type)
Return a constant stringified object type.
Assume that the selected backend provides the topology for the system on which we are running...
Definition: hwloc.h:792
hwloc_obj_bridge_type_e
Type of one side (upstream or downstream) of an I/O bridge.
Definition: hwloc.h:278
unsigned char alloc_membind
Definition: hwloc.h:1115
Group-specific Object Attributes.
Definition: hwloc.h:537
unsigned char get_thisproc_cpubind
Definition: hwloc.h:1071
Structure of a topology object.
Definition: hwloc.h:358
hwloc_compare_types_e
Definition: hwloc.h:322
static void * hwloc_alloc_membind_policy_nodeset(hwloc_topology_t topology, size_t len, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags)
Allocate some memory on NUMA memory nodes specified by nodeset.
hwloc_obj_t hwloc_custom_insert_group_object_by_parent(hwloc_topology_t topology, hwloc_obj_t parent, int groupdepth)
Insert a new group object inside a custom topology.
int hwloc_set_proc_cpubind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_cpuset_t set, int flags)
Bind a process pid on cpus given in physical bitmap set.
int hwloc_compare_types(hwloc_obj_type_t type1, hwloc_obj_type_t type2)
Compare the depth of two object types.
struct hwloc_obj ** children
Children, children[0 .. arity -1].
Definition: hwloc.h:410
int hwloc_topology_is_thissystem(hwloc_topology_t restrict topology)
Does the topology context come from this system?
unsigned char interleave_membind
Definition: hwloc.h:1121
unsigned short vendor_id
Definition: hwloc.h:545
int hwloc_topology_dup(hwloc_topology_t *newtopology, hwloc_topology_t oldtopology)
Duplicate a topology.
unsigned char set_proc_cpubind
Definition: hwloc.h:1073
void * hwloc_topology_get_userdata(hwloc_topology_t topology)
Retrieve the topology-specific userdata pointer.
unsigned char replicate_membind
Definition: hwloc.h:1123
Adapt distance matrices according to objects being removed during restriction. If this flag is not se...
Definition: hwloc.h:2303
int hwloc_topology_set_fsroot(hwloc_topology_t restrict topology, const char *restrict fsroot_path)
Change the file-system root path when building the topology from sysfs/procfs.
int hwloc_topology_set_pid(hwloc_topology_t restrict topology, hwloc_pid_t pid)
Change which process the topology is viewed from.
int hwloc_get_area_membind(hwloc_topology_t topology, const void *addr, size_t len, hwloc_bitmap_t set, hwloc_membind_policy_t *policy, int flags)
Query the CPUs near the physical NUMA node(s) and binding policy of the memory identified by (addr...
int hwloc_set_proc_membind_nodeset(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags)
Set the default memory binding policy of the specified process to prefer the NUMA node(s) specified b...
unsigned char get_area_membind
Definition: hwloc.h:1113
Object info.
Definition: hwloc.h:614
Bind current thread of current process.
Definition: hwloc.h:1523
struct hwloc_bitmap_s * hwloc_bitmap_t
Set of bits represented as an opaque pointer to an internal bitmap.
Definition: bitmap.h:63
unsigned relative_depth
Relative depth of the considered objects below the object containing this distance information...
Definition: hwloc.h:584
unsigned char get_thisthread_membind
Definition: hwloc.h:1109
int associativity
Ways of associativity, -1 if fully associative, 0 if unknown.
Definition: hwloc.h:532