Open MPI logo

Portable Hardware Locality (hwloc) Documentation: v1.10.1

  |   Home   |   Support   |   FAQ   |  
hwloc.h
1 /*
2  * Copyright © 2009 CNRS
3  * Copyright © 2009-2014 Inria. All rights reserved.
4  * Copyright © 2009-2012 Université Bordeaux 1
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  * https://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 
81 #define HWLOC_API_VERSION 0x00010a00
82 
84 HWLOC_DECLSPEC unsigned hwloc_get_api_version(void);
85 
87 #define HWLOC_COMPONENT_ABI 4
88 
125 
145 
160 typedef enum {
161  /* ***************************************************************
162  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
163 
164  If new enum values are added here, you MUST also go update the
165  obj_type_order[] and obj_order_type[] arrays in src/topology.c.
166 
167  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
168  *************************************************************** */
169 
241  /* ***************************************************************
242  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
243 
244  If new enum values are added here, you MUST also go update the
245  obj_type_order[] and obj_order_type[] arrays in src/topology.c.
246 
247  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
248  *************************************************************** */
250 
258 
264 
283 
301 HWLOC_DECLSPEC int hwloc_compare_types (hwloc_obj_type_t type1, hwloc_obj_type_t type2) __hwloc_attribute_const;
302 
305 };
306 
315 union hwloc_obj_attr_u;
316 
319  hwloc_uint64_t total_memory;
320  hwloc_uint64_t local_memory;
323  unsigned page_types_len;
330  hwloc_uint64_t size;
331  hwloc_uint64_t count;
332  } * page_types;
333 };
334 
339 struct hwloc_obj {
340  /* physical information */
342  unsigned os_index;
346  char *name;
353  /* global position */
354  unsigned depth;
359  unsigned logical_index;
363  signed os_level;
365  /* cousins are all objects of the same type (and depth) across the entire topology */
369  /* children of the same parent are siblings, even if they may have different type and depth */
370  struct hwloc_obj *parent;
371  unsigned sibling_rank;
375  /* children array below this object */
376  unsigned arity;
377  struct hwloc_obj **children;
381  /* misc */
382  void *userdata;
387  /* cpusets and nodesets */
388  hwloc_cpuset_t cpuset;
401  hwloc_cpuset_t complete_cpuset;
412  hwloc_cpuset_t online_cpuset;
420  hwloc_cpuset_t allowed_cpuset;
431  hwloc_nodeset_t nodeset;
448  hwloc_nodeset_t complete_nodeset;
462  hwloc_nodeset_t allowed_nodeset;
476  unsigned distances_count;
477 
479  unsigned infos_count;
486 };
490 typedef struct hwloc_obj * hwloc_obj_t;
491 
496  hwloc_uint64_t size;
497  unsigned depth;
498  unsigned linesize;
502  } cache;
505  unsigned depth;
506  } group;
509  unsigned short domain;
510  unsigned char bus, dev, func;
511  unsigned short class_id;
513  unsigned char revision;
514  float linkspeed; /* in GB/s */
515  } pcidev;
518  union {
520  } upstream;
522  union {
523  struct {
524  unsigned short domain;
526  } pci;
527  } downstream;
529  unsigned depth;
530  } bridge;
534  } osdev;
535 };
536 
551  unsigned relative_depth;
553  unsigned nbobjs;
558  float *latency;
570  float latency_max;
571  float latency_base;
575 };
576 
579  char *name;
580  char *value;
581 };
582 
591 struct hwloc_topology;
596 typedef struct hwloc_topology * hwloc_topology_t;
597 
604 HWLOC_DECLSPEC int hwloc_topology_init (hwloc_topology_t *topologyp);
605 
623 HWLOC_DECLSPEC int hwloc_topology_load(hwloc_topology_t topology);
624 
629 HWLOC_DECLSPEC void hwloc_topology_destroy (hwloc_topology_t topology);
630 
642 HWLOC_DECLSPEC void hwloc_topology_check(hwloc_topology_t topology);
643 
678 HWLOC_DECLSPEC int hwloc_topology_ignore_type(hwloc_topology_t topology, hwloc_obj_type_t type);
679 
688 HWLOC_DECLSPEC int hwloc_topology_ignore_type_keep_structure(hwloc_topology_t topology, hwloc_obj_type_t type);
689 
697 HWLOC_DECLSPEC int hwloc_topology_ignore_all_keep_structure(hwloc_topology_t topology);
698 
713 
733 
745 
754 
763 
771 };
772 
782 HWLOC_DECLSPEC int hwloc_topology_set_flags (hwloc_topology_t topology, unsigned long flags);
783 
790 HWLOC_DECLSPEC unsigned long hwloc_topology_get_flags (hwloc_topology_t topology);
791 
806 HWLOC_DECLSPEC int hwloc_topology_set_pid(hwloc_topology_t __hwloc_restrict topology, hwloc_pid_t pid);
807 
834 HWLOC_DECLSPEC int hwloc_topology_set_fsroot(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict fsroot_path);
835 
863 HWLOC_DECLSPEC int hwloc_topology_set_synthetic(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict description);
864 
891 HWLOC_DECLSPEC int hwloc_topology_set_xml(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict xmlpath);
892 
919 HWLOC_DECLSPEC int hwloc_topology_set_xmlbuffer(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict buffer, int size);
920 
940 HWLOC_DECLSPEC int hwloc_topology_set_custom(hwloc_topology_t topology);
941 
959 HWLOC_DECLSPEC int hwloc_topology_set_distance_matrix(hwloc_topology_t __hwloc_restrict topology,
960  hwloc_obj_type_t type, unsigned nbobjs,
961  unsigned *os_index, float *distances);
962 
970 HWLOC_DECLSPEC int hwloc_topology_is_thissystem(hwloc_topology_t __hwloc_restrict topology) __hwloc_attribute_pure;
971 
975  unsigned char pu;
976 };
977 
981  unsigned char set_thisproc_cpubind;
983  unsigned char get_thisproc_cpubind;
985  unsigned char set_proc_cpubind;
987  unsigned char get_proc_cpubind;
989  unsigned char set_thisthread_cpubind;
991  unsigned char get_thisthread_cpubind;
993  unsigned char set_thread_cpubind;
995  unsigned char get_thread_cpubind;
1002 };
1003 
1007  unsigned char set_thisproc_membind;
1009  unsigned char get_thisproc_membind;
1011  unsigned char set_proc_membind;
1013  unsigned char get_proc_membind;
1015  unsigned char set_thisthread_membind;
1017  unsigned char get_thisthread_membind;
1019  unsigned char set_area_membind;
1021  unsigned char get_area_membind;
1023  unsigned char alloc_membind;
1025  unsigned char firsttouch_membind;
1027  unsigned char bind_membind;
1029  unsigned char interleave_membind;
1031  unsigned char replicate_membind;
1033  unsigned char nexttouch_membind;
1034 
1036  unsigned char migrate_membind;
1037 };
1038 
1049 };
1050 
1052 HWLOC_DECLSPEC const struct hwloc_topology_support *hwloc_topology_get_support(hwloc_topology_t __hwloc_restrict topology);
1053 
1064 HWLOC_DECLSPEC void hwloc_topology_set_userdata(hwloc_topology_t topology, const void *userdata);
1065 
1071 HWLOC_DECLSPEC void * hwloc_topology_get_userdata(hwloc_topology_t topology);
1072 
1090 HWLOC_DECLSPEC unsigned hwloc_topology_get_depth(hwloc_topology_t __hwloc_restrict topology) __hwloc_attribute_pure;
1091 
1114 HWLOC_DECLSPEC int hwloc_get_type_depth (hwloc_topology_t topology, hwloc_obj_type_t type);
1115 
1122 };
1123 
1133 static __hwloc_inline int
1134 hwloc_get_type_or_below_depth (hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure;
1135 
1145 static __hwloc_inline int
1146 hwloc_get_type_or_above_depth (hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure;
1147 
1152 HWLOC_DECLSPEC hwloc_obj_type_t hwloc_get_depth_type (hwloc_topology_t topology, unsigned depth) __hwloc_attribute_pure;
1153 
1156 HWLOC_DECLSPEC unsigned hwloc_get_nbobjs_by_depth (hwloc_topology_t topology, unsigned depth) __hwloc_attribute_pure;
1157 
1163 static __hwloc_inline int
1164 hwloc_get_nbobjs_by_type (hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure;
1165 
1171 static __hwloc_inline hwloc_obj_t
1172 hwloc_get_root_obj (hwloc_topology_t topology) __hwloc_attribute_pure;
1173 
1175 HWLOC_DECLSPEC hwloc_obj_t hwloc_get_obj_by_depth (hwloc_topology_t topology, unsigned depth, unsigned idx) __hwloc_attribute_pure;
1176 
1183 static __hwloc_inline hwloc_obj_t
1184 hwloc_get_obj_by_type (hwloc_topology_t topology, hwloc_obj_type_t type, unsigned idx) __hwloc_attribute_pure;
1185 
1190 static __hwloc_inline hwloc_obj_t
1191 hwloc_get_next_obj_by_depth (hwloc_topology_t topology, unsigned depth, hwloc_obj_t prev);
1192 
1199 static __hwloc_inline hwloc_obj_t
1200 hwloc_get_next_obj_by_type (hwloc_topology_t topology, hwloc_obj_type_t type,
1201  hwloc_obj_t prev);
1202 
1212 HWLOC_DECLSPEC const char * hwloc_obj_type_string (hwloc_obj_type_t type) __hwloc_attribute_const;
1213 
1240 HWLOC_DECLSPEC int hwloc_obj_type_sscanf(const char *string,
1241  hwloc_obj_type_t *typep,
1242  int *depthattrp,
1243  void *typeattrp, size_t typeattrsize);
1244 
1255 HWLOC_DECLSPEC int hwloc_obj_type_snprintf(char * __hwloc_restrict string, size_t size, hwloc_obj_t obj,
1256  int verbose);
1257 
1269 HWLOC_DECLSPEC int hwloc_obj_attr_snprintf(char * __hwloc_restrict string, size_t size, hwloc_obj_t obj, const char * __hwloc_restrict separator,
1270  int verbose);
1271 
1279 HWLOC_DECLSPEC int hwloc_obj_cpuset_snprintf(char * __hwloc_restrict str, size_t size, size_t nobj, const hwloc_obj_t * __hwloc_restrict objs);
1280 
1287 static __hwloc_inline const char *
1288 hwloc_obj_get_info_by_name(hwloc_obj_t obj, const char *name) __hwloc_attribute_pure;
1289 
1304 HWLOC_DECLSPEC void hwloc_obj_add_info(hwloc_obj_t obj, const char *name, const char *value);
1305 
1374 typedef enum {
1378 
1382 
1407 
1425 
1431 HWLOC_DECLSPEC int hwloc_set_cpubind(hwloc_topology_t topology, hwloc_const_cpuset_t set, int flags);
1432 
1438 HWLOC_DECLSPEC int hwloc_get_cpubind(hwloc_topology_t topology, hwloc_cpuset_t set, int flags);
1439 
1451 HWLOC_DECLSPEC int hwloc_set_proc_cpubind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_cpuset_t set, int flags);
1452 
1464 HWLOC_DECLSPEC int hwloc_get_proc_cpubind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, int flags);
1465 
1466 #ifdef hwloc_thread_t
1467 
1474 HWLOC_DECLSPEC int hwloc_set_thread_cpubind(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_const_cpuset_t set, int flags);
1475 #endif
1476 
1477 #ifdef hwloc_thread_t
1478 
1485 HWLOC_DECLSPEC int hwloc_get_thread_cpubind(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_cpuset_t set, int flags);
1486 #endif
1487 
1501 HWLOC_DECLSPEC int hwloc_get_last_cpu_location(hwloc_topology_t topology, hwloc_cpuset_t set, int flags);
1502 
1519 HWLOC_DECLSPEC int hwloc_get_proc_last_cpu_location(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, int flags);
1520 
1597 typedef enum {
1601 
1611 
1615 
1624 
1637 
1644 
1651 
1665 typedef enum {
1671 
1676 
1684 
1690 
1704 
1717 HWLOC_DECLSPEC int hwloc_set_membind_nodeset(hwloc_topology_t topology, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags);
1718 
1732 HWLOC_DECLSPEC int hwloc_set_membind(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, hwloc_membind_policy_t policy, int flags);
1733 
1774 HWLOC_DECLSPEC int hwloc_get_membind_nodeset(hwloc_topology_t topology, hwloc_nodeset_t nodeset, hwloc_membind_policy_t * policy, int flags);
1775 
1821 HWLOC_DECLSPEC int hwloc_get_membind(hwloc_topology_t topology, hwloc_cpuset_t cpuset, hwloc_membind_policy_t * policy, int flags);
1822 
1832 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);
1833 
1843 HWLOC_DECLSPEC int hwloc_set_proc_membind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_cpuset_t cpuset, hwloc_membind_policy_t policy, int flags);
1844 
1881 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);
1882 
1922 HWLOC_DECLSPEC int hwloc_get_proc_membind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t cpuset, hwloc_membind_policy_t * policy, int flags);
1923 
1930 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);
1931 
1938 HWLOC_DECLSPEC int hwloc_set_area_membind(hwloc_topology_t topology, const void *addr, size_t len, hwloc_const_cpuset_t cpuset, hwloc_membind_policy_t policy, int flags);
1939 
1962 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);
1963 
1988 HWLOC_DECLSPEC int hwloc_get_area_membind(hwloc_topology_t topology, const void *addr, size_t len, hwloc_cpuset_t cpuset, hwloc_membind_policy_t * policy, int flags);
1989 
1997 HWLOC_DECLSPEC void *hwloc_alloc(hwloc_topology_t topology, size_t len);
1998 
2010 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;
2011 
2023 HWLOC_DECLSPEC void *hwloc_alloc_membind(hwloc_topology_t topology, size_t len, hwloc_const_cpuset_t cpuset, hwloc_membind_policy_t policy, int flags) __hwloc_attribute_malloc;
2024 
2031 static __hwloc_inline void *
2032 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;
2033 
2038 static __hwloc_inline void *
2039 hwloc_alloc_membind_policy(hwloc_topology_t topology, size_t len, hwloc_const_cpuset_t set, hwloc_membind_policy_t policy, int flags) __hwloc_attribute_malloc;
2040 
2044 HWLOC_DECLSPEC int hwloc_free(hwloc_topology_t topology, void *addr, size_t len);
2045 
2068 HWLOC_DECLSPEC hwloc_obj_t hwloc_topology_insert_misc_object_by_cpuset(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, const char *name);
2069 
2085 HWLOC_DECLSPEC hwloc_obj_t hwloc_topology_insert_misc_object_by_parent(hwloc_topology_t topology, hwloc_obj_t parent, const char *name);
2086 
2094 
2100 
2106 };
2107 
2129 HWLOC_DECLSPEC int hwloc_topology_restrict(hwloc_topology_t __hwloc_restrict topology, hwloc_const_cpuset_t cpuset, unsigned long flags);
2130 
2138 HWLOC_DECLSPEC int hwloc_topology_dup(hwloc_topology_t *newtopology, hwloc_topology_t oldtopology);
2139 
2173 HWLOC_DECLSPEC int hwloc_custom_insert_topology(hwloc_topology_t newtopology, hwloc_obj_t newparent, hwloc_topology_t oldtopology, hwloc_obj_t oldroot);
2174 
2196 HWLOC_DECLSPEC hwloc_obj_t hwloc_custom_insert_group_object_by_parent(hwloc_topology_t topology, hwloc_obj_t parent, int groupdepth);
2197 
2223 HWLOC_DECLSPEC int hwloc_topology_export_xml(hwloc_topology_t topology, const char *xmlpath);
2224 
2243 HWLOC_DECLSPEC int hwloc_topology_export_xmlbuffer(hwloc_topology_t topology, char **xmlbuffer, int *buflen);
2244 
2246 HWLOC_DECLSPEC void hwloc_free_xmlbuffer(hwloc_topology_t topology, char *xmlbuffer);
2247 
2266 HWLOC_DECLSPEC void hwloc_topology_set_userdata_export_callback(hwloc_topology_t topology,
2267  void (*export_cb)(void *reserved, hwloc_topology_t topology, hwloc_obj_t obj));
2268 
2294 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);
2295 
2309 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);
2310 
2333 HWLOC_DECLSPEC void hwloc_topology_set_userdata_import_callback(hwloc_topology_t topology,
2334  void (*import_cb)(hwloc_topology_t topology, hwloc_obj_t obj, const char *name, const void *buffer, size_t length));
2335 
2354 
2362 };
2363 
2382  HWLOC_DECLSPEC int hwloc_topology_export_synthetic(hwloc_topology_t topology, char *buffer, size_t buflen, unsigned long flags);
2383 
2388 #ifdef __cplusplus
2389 } /* extern "C" */
2390 #endif
2391 
2392 
2393 /* high-level helpers */
2394 #include <hwloc/helper.h>
2395 
2396 /* inline code of some functions above */
2397 #include <hwloc/inlines.h>
2398 
2399 /* topology diffs */
2400 #include <hwloc/diff.h>
2401 
2402 /* deprecated headers */
2403 #include <hwloc/deprecated.h>
2404 
2405 #endif /* HWLOC_H */
Structure of a topology object.
Definition: hwloc.h:339
int hwloc_topology_set_xml(hwloc_topology_t restrict topology, const char *restrict xmlpath)
Enable XML-file based topology.
Instruction cache. Only used when the HWLOC_TOPOLOGY_FLAG_ICACHES topology flag is set...
Definition: hwloc.h:255
unsigned arity
Number of children.
Definition: hwloc.h:376
struct hwloc_obj_memory_s::hwloc_obj_memory_page_type_s * page_types
hwloc_uint64_t size
Size of pages.
Definition: hwloc.h:330
unsigned linesize
Cache-line size in bytes. 0 if unknown.
Definition: hwloc.h:498
unsigned short domain
Definition: hwloc.h:509
Processing Unit, or (Logical) Processor. An execution unit (may share a core with some other logical ...
Definition: hwloc.h:195
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.
unsigned char get_proc_last_cpu_location
Definition: hwloc.h:999
Request for strict binding from the OS.
Definition: hwloc.h:1406
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.
void * hwloc_topology_get_userdata(hwloc_topology_t topology)
Retrieve the topology-specific userdata pointer.
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.
float latency_base
The multiplier that should be applied to latency matrix to retrieve the original OS-provided latencie...
Definition: hwloc.h:571
hwloc_const_bitmap_t hwloc_const_cpuset_t
A non-modifiable hwloc_cpuset_t.
Definition: hwloc.h:124
hwloc_obj_type_t
Type of topology object.
Definition: hwloc.h:160
unsigned char dev
Definition: hwloc.h:510
Avoid any effect on memory binding.
Definition: hwloc.h:1423
Bind current thread of current process.
Definition: hwloc.h:1381
struct hwloc_obj * prev_cousin
Previous object of same type and depth.
Definition: hwloc.h:367
unsigned distances_count
Definition: hwloc.h:476
struct hwloc_obj * hwloc_obj_t
Convenience typedef; a pointer to a struct hwloc_obj.
Definition: hwloc.h:490
char * name
Info name.
Definition: hwloc.h:579
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.
Do not export level attributes.
Definition: hwloc.h:2361
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.
Set policy for a specific thread of the current process. This flag is mutually exclusive with HWLOC_M...
Definition: hwloc.h:1675
void hwloc_topology_check(hwloc_topology_t topology)
Run internal checks on a topology structure.
Distances between objects.
Definition: hwloc.h:550
hwloc_obj_osdev_type_e
Type of a OS device.
Definition: hwloc.h:266
unsigned char get_thread_cpubind
Definition: hwloc.h:995
struct hwloc_obj_attr_u::hwloc_cache_attr_s cache
Flags describing actual memory binding support for this topology.
Definition: hwloc.h:1005
Allocate memory on the specified nodes.
Definition: hwloc.h:1614
unsigned char pu
Detecting the number of PU objects is supported.
Definition: hwloc.h:975
hwloc_get_type_depth_e
Definition: hwloc.h:1116
Operating system device. These objects have neither CPU sets nor node sets. They are not added to the...
Definition: hwloc.h:233
enum hwloc_obj_osdev_type_e hwloc_obj_osdev_type_t
Type of a OS device.
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.
Value returned by hwloc_compare_types when types can not be compared.
Definition: hwloc.h:304
struct hwloc_obj_memory_s memory
Memory attributes.
Definition: hwloc.h:348
int hwloc_topology_ignore_type(hwloc_topology_t topology, hwloc_obj_type_t type)
Ignore an object type.
Virtual depth for software device object level.
Definition: hwloc.h:1121
hwloc_uint64_t count
Number of pages of this size.
Definition: hwloc.h:331
unsigned depth
Depth of group object.
Definition: hwloc.h:505
PCI Device specific Object Attributes.
Definition: hwloc.h:508
Detect the whole system, ignore reservations and offline settings.
Definition: hwloc.h:712
unsigned hwloc_topology_get_depth(hwloc_topology_t restrict topology)
Get the depth of the hierarchical tree of objects.
unsigned char func
Definition: hwloc.h:510
unsigned char revision
Definition: hwloc.h:513
struct hwloc_obj_attr_u::hwloc_bridge_attr_s bridge
struct hwloc_obj * prev_sibling
Previous object below the same parent.
Definition: hwloc.h:373
void hwloc_topology_destroy(hwloc_topology_t topology)
Terminate and free a topology context.
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.
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 network device. For instance the "eth0" interface on Linux.
Definition: hwloc.h:272
struct hwloc_obj * parent
Parent, NULL if root (system object)
Definition: hwloc.h:370
Operating system co-processor device. For instance "mic0" for a Xeon Phi (MIC) on Linux...
Definition: hwloc.h:278
int hwloc_topology_init(hwloc_topology_t *topologyp)
Allocate a topology context.
Array of local memory page types, NULL if no local memory and page_types is 0.
Definition: hwloc.h:329
hwloc_nodeset_t allowed_nodeset
The set of allowed NUMA memory nodes.
Definition: hwloc.h:462
static hwloc_obj_t hwloc_get_root_obj(hwloc_topology_t topology)
Returns the top-object of the topology-tree.
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.
Definition: hwloc.h:239
PCI-side of a bridge.
Definition: hwloc.h:262
int hwloc_compare_types(hwloc_obj_type_t type1, hwloc_obj_type_t type2)
Compare the depth of two object types.
int hwloc_topology_ignore_all_keep_structure(hwloc_topology_t topology)
Ignore all objects that do not bring any structure.
unsigned char get_thisthread_cpubind
Definition: hwloc.h:991
hwloc_uint64_t size
Size of cache in bytes.
Definition: hwloc.h:496
unsigned char bind_membind
Definition: hwloc.h:1027
unsigned logical_index
Horizontal index in the whole list of similar objects, hence guaranteed unique across the entire mach...
Definition: hwloc.h:359
Object memory.
Definition: hwloc.h:318
char * value
Info value.
Definition: hwloc.h:580
unsigned depth
Vertical index in the hierarchy. If the topology is symmetric, this is equal to the parent depth plus...
Definition: hwloc.h:354
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.
Allocate memory but do not immediately bind it to a specific locality. Instead, each page in the allo...
Definition: hwloc.h:1610
unsigned page_types_len
Size of array page_types.
Definition: hwloc.h:323
enum hwloc_obj_bridge_type_e hwloc_obj_bridge_type_t
Type of one side (upstream or downstream) of an I/O bridge.
unsigned short domain
Definition: hwloc.h:524
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:342
unsigned char set_proc_membind
Definition: hwloc.h:1011
unsigned char firsttouch_membind
Definition: hwloc.h:1025
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 the given nodeset nodeset.
struct hwloc_distances_s ** distances
Distances between all objects at same depth below this object.
Definition: hwloc.h:475
Group objects. Objects which do not fit in the above but are detected by hwloc and are useful to take...
Definition: hwloc.h:204
Flags describing actual PU binding support for this topology.
Definition: hwloc.h:979
unsigned char set_thisproc_membind
Definition: hwloc.h:1007
hwloc_cpuset_t complete_cpuset
The complete CPU set of logical processors of this object,.
Definition: hwloc.h:401
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.
const struct hwloc_topology_support * hwloc_topology_get_support(hwloc_topology_t restrict topology)
Retrieve the topology support.
Object type-specific Attributes.
Definition: hwloc.h:493
Detect PCI bridges.
Definition: hwloc.h:753
unsigned char set_proc_cpubind
Definition: hwloc.h:985
Migrate existing allocated memory. If the memory cannot be migrated and the HWLOC_MEMBIND_STRICT flag...
Definition: hwloc.h:1689
unsigned char replicate_membind
Definition: hwloc.h:1031
int symmetric_subtree
Set if the subtree of objects below this object is symmetric, which means all children and their chil...
Definition: hwloc.h:481
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 the given physical nodeset nodeset.
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:141
Detect instruction caches.
Definition: hwloc.h:770
unsigned char get_thisthread_membind
Definition: hwloc.h:1017
Data cache.
Definition: hwloc.h:254
unsigned infos_count
Size of infos array.
Definition: hwloc.h:479
Detect the whole PCI hierarchy.
Definition: hwloc.h:762
hwloc_topology_flags_e
Flags to be set onto a topology context before load.
Definition: hwloc.h:704
unsigned char migrate_membind
Definition: hwloc.h:1036
unsigned char get_proc_cpubind
Definition: hwloc.h:987
Objects of given type exist at different depth in the topology.
Definition: hwloc.h:1118
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.
unsigned char interleave_membind
Definition: hwloc.h:1029
unsigned char subordinate_bus
Definition: hwloc.h:525
struct hwloc_topology_membind_support * membind
Definition: hwloc.h:1048
float latency_max
The maximal value in the latency matrix.
Definition: hwloc.h:570
struct hwloc_topology_cpubind_support * cpubind
Definition: hwloc.h:1047
unsigned sibling_rank
Index in parent's children[] array.
Definition: hwloc.h:371
Group-specific Object Attributes.
Definition: hwloc.h:504
int hwloc_topology_export_xmlbuffer(hwloc_topology_t topology, char **xmlbuffer, int *buflen)
Export the topology into a newly-allocated XML memory buffer.
unsigned char set_thisthread_cpubind
Definition: hwloc.h:989
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_last_cpu_location
Definition: hwloc.h:997
Operating system openfabrics device. For instance the "mlx4_0" InfiniBand HCA device on Linux...
Definition: hwloc.h:274
int hwloc_topology_export_synthetic(hwloc_topology_t topology, char *buffer, size_t buflen, unsigned long flags)
Export the topology as a synthetic string.
int hwloc_topology_dup(hwloc_topology_t *newtopology, hwloc_topology_t oldtopology)
Duplicate a topology.
unsigned long hwloc_topology_get_flags(hwloc_topology_t topology)
Get OR'ed flags of a topology.
Replicate memory on the given nodes; reads from this memory will attempt to be serviced from the NUMA...
Definition: hwloc.h:1636
struct hwloc_bitmap_s * hwloc_bitmap_t
Set of bits represented as an opaque pointer to an internal bitmap.
Definition: bitmap.h:50
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.
int hwloc_topology_export_xml(hwloc_topology_t topology, const char *xmlpath)
Export the topology into an XML file.
unsigned short device_id
Definition: hwloc.h:512
hwloc_obj_cache_type_t type
Cache type.
Definition: hwloc.h:501
Bridge specific Object Attribues.
Definition: hwloc.h:517
hwloc_obj_type_t type
Type of object.
Definition: hwloc.h:341
signed os_level
OS-provided physical level, -1 if unknown or meaningless.
Definition: hwloc.h:363
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_set_area_membind(hwloc_topology_t topology, const void *addr, size_t len, hwloc_const_cpuset_t cpuset, hwloc_membind_policy_t policy, int flags)
Bind the already-allocated memory identified by (addr, len) to the NUMA node(s) near physical cpuset...
hwloc_obj_cache_type_e
Cache type.
Definition: hwloc.h:252
hwloc_nodeset_t complete_nodeset
The complete NUMA node set of this object,.
Definition: hwloc.h:448
hwloc_compare_types_e
Definition: hwloc.h:303
hwloc_membind_flags_t
Memory binding flags.
Definition: hwloc.h:1665
Allocate memory on the given nodes in an interleaved / round-robin manner. The precise layout of the ...
Definition: hwloc.h:1623
int hwloc_topology_set_custom(hwloc_topology_t topology)
Prepare the topology for custom assembly.
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:122
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.
Reset the memory allocation policy to the system default.
Definition: hwloc.h:1600
NUMA node. A set of processors around memory which the processors can directly access.
Definition: hwloc.h:180
unsigned depth
Definition: hwloc.h:529
Set policy for all threads of the specified (possibly multithreaded) process. This flag is mutually e...
Definition: hwloc.h:1670
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...
void hwloc_topology_set_userdata(hwloc_topology_t topology, const void *userdata)
Set the topology-specific userdata pointer.
Machine. The typical root object type. A set of processors and memory with cache coherency.
Definition: hwloc.h:175
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...
enum hwloc_obj_cache_type_e hwloc_obj_cache_type_t
Cache type.
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.
Operating system GPU device. For instance ":0.0" for a GL display, "card0" for a Linux DRM device...
Definition: hwloc.h:269
Move Misc objects to ancestors if their parents are removed during restriction. If this flag is not s...
Definition: hwloc.h:2099
struct hwloc_obj * next_sibling
Next object below the same parent.
Definition: hwloc.h:372
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.
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.
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.
int hwloc_set_proc_membind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_cpuset_t cpuset, hwloc_membind_policy_t policy, int flags)
Set the default memory binding policy of the specified process to prefer the NUMA node(s) near the sp...
hwloc_uint64_t local_memory
Local memory (in bytes)
Definition: hwloc.h:320
hwloc_topology_export_synthetic_flags_e
Flags for exporting synthetic topologies.
Definition: hwloc.h:2347
unsigned short subdevice_id
Definition: hwloc.h:512
hwloc_nodeset_t nodeset
NUMA nodes covered by this object or containing this object.
Definition: hwloc.h:431
Host-side of a bridge, only possible upstream.
Definition: hwloc.h:261
int hwloc_get_membind(hwloc_topology_t topology, hwloc_cpuset_t cpuset, hwloc_membind_policy_t *policy, int flags)
Query the default memory binding policy and physical locality of the current process or thread (the l...
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.
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) in physical nodeset...
unsigned short subvendor_id
Definition: hwloc.h:512
unsigned char set_thisproc_cpubind
Definition: hwloc.h:981
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...
hwloc_obj_bridge_type_t downstream_type
Definition: hwloc.h:528
union hwloc_obj_attr_u * attr
Object type-specific Attributes, may be NULL if no attribute value was found.
Definition: hwloc.h:350
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.
hwloc_cpuset_t online_cpuset
The CPU set of online logical processors.
Definition: hwloc.h:412
unsigned short class_id
Definition: hwloc.h:511
struct hwloc_obj_attr_u::hwloc_osdev_attr_s osdev
hwloc_obj_osdev_type_t type
Definition: hwloc.h:533
unsigned char set_thread_cpubind
Definition: hwloc.h:993
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.
Detect PCI devices.
Definition: hwloc.h:744
unsigned char get_thisproc_membind
Definition: hwloc.h:1009
int hwloc_topology_set_flags(hwloc_topology_t topology, unsigned long flags)
Set OR'ed flags to non-yet-loaded topology.
unsigned char get_proc_membind
Definition: hwloc.h:1013
OS Device specific Object Attributes.
Definition: hwloc.h:532
unsigned depth
Depth of cache (e.g., L1, L2, ...etc.)
Definition: hwloc.h:497
Set of flags describing actual support for this topology.
Definition: hwloc.h:1045
float linkspeed
Definition: hwloc.h:514
struct hwloc_obj * first_child
First child.
Definition: hwloc.h:378
hwloc_const_bitmap_t hwloc_const_nodeset_t
A non-modifiable hwloc_nodeset_t.
Definition: hwloc.h:144
void * userdata
Application-given private data pointer, initialized to NULL, use it as you wish. See hwloc_topology_s...
Definition: hwloc.h:382
float * latency
Matrix of latencies between objects, stored as a one-dimension array. May be NULL if the distances co...
Definition: hwloc.h:558
Bind all threads of the current (possibly) multithreaded process.
Definition: hwloc.h:1377
int hwloc_topology_set_pid(hwloc_topology_t restrict topology, hwloc_pid_t pid)
Change which pid the topology is viewed from.
Virtual depth for bridge object level.
Definition: hwloc.h:1119
hwloc_membind_policy_t
Memory binding policy.
Definition: hwloc.h:1597
Adapt distance matrices according to objects being removed during restriction. If this flag is not se...
Definition: hwloc.h:2093
struct hwloc_obj_attr_u::hwloc_pcidev_attr_s pcidev
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())...
int hwloc_topology_load(hwloc_topology_t topology)
Build the actual topology.
struct hwloc_obj * next_cousin
Next object of same type and depth.
Definition: hwloc.h:366
Assume that the selected backend provides the topology for the system on which we are running...
Definition: hwloc.h:732
Avoid any effect on CPU binding.
Definition: hwloc.h:1702
unsigned char set_area_membind
Definition: hwloc.h:1019
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:1643
void hwloc_free_xmlbuffer(hwloc_topology_t topology, char *xmlbuffer)
Free a buffer allocated by hwloc_topology_export_xmlbuffer()
char * name
Object description if any.
Definition: hwloc.h:346
int hwloc_topology_is_thissystem(hwloc_topology_t restrict topology)
Does the topology context come from this system?
PCI device. These objects have neither CPU sets nor node sets. They are not added to the topology unl...
Definition: hwloc.h:228
hwloc_restrict_flags_e
Flags to be given to hwloc_topology_restrict().
Definition: hwloc.h:2088
Cache. Can be L1i, L1d, L2, L3, ...
Definition: hwloc.h:188
unsigned char alloc_membind
Definition: hwloc.h:1023
Virtual depth for PCI device object level.
Definition: hwloc.h:1120
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.
int hwloc_get_cpubind(hwloc_topology_t topology, hwloc_cpuset_t set, int flags)
Get current process or thread binding.
unsigned char secondary_bus
Definition: hwloc.h:525
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.
struct hwloc_pcidev_attr_s pci
Definition: hwloc.h:519
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 ).
void * hwloc_alloc(hwloc_topology_t topology, size_t len)
Allocate some memory.
No object of given type exists in the topology.
Definition: hwloc.h:1117
Export extended types such as L2dcache as basic types such as Cache.
Definition: hwloc.h:2353
unsigned char bus
Definition: hwloc.h:510
hwloc_uint64_t total_memory
Total memory (in bytes) in this object and its children.
Definition: hwloc.h:319
struct hwloc_obj ** children
Children, children[0 .. arity -1].
Definition: hwloc.h:377
Unified cache.
Definition: hwloc.h:253
Socket, physical package, or chip. In the physical meaning, i.e. that you can add or remove physicall...
Definition: hwloc.h:184
Whole system (may be a cluster of machines). The whole system that is accessible to hwloc...
Definition: hwloc.h:170
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.
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.
struct hwloc_topology * hwloc_topology_t
Topology context.
Definition: hwloc.h:596
Core. A computation unit (may be shared by several logical processors).
Definition: hwloc.h:191
hwloc_cpuset_t allowed_cpuset
The CPU set of allowed logical processors.
Definition: hwloc.h:420
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_area_membind
Definition: hwloc.h:1021
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.
struct hwloc_obj_attr_u::hwloc_group_attr_s group
unsigned char get_thisproc_cpubind
Definition: hwloc.h:983
hwloc_cpubind_flags_t
Process/Thread binding flags.
Definition: hwloc.h:1374
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.
Bridge. Any bridge that connects the host or an I/O bus, to another I/O bus. Bridge objects have neit...
Definition: hwloc.h:221
hwloc_cpuset_t cpuset
CPUs covered by this object.
Definition: hwloc.h:388
static void * hwloc_alloc_membind_policy(hwloc_topology_t topology, size_t len, hwloc_const_cpuset_t set, hwloc_membind_policy_t policy, int flags)
Allocate some memory on the memory nodes near given cpuset cpuset.
unsigned hwloc_get_nbobjs_by_depth(hwloc_topology_t topology, unsigned depth)
Returns the width of level at depth depth.
int hwloc_topology_set_synthetic(hwloc_topology_t restrict topology, const char *restrict description)
Enable synthetic topology.
Cache-specific Object Attributes.
Definition: hwloc.h:495
int hwloc_set_membind(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, 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) nea...
struct hwloc_topology_discovery_support * discovery
Definition: hwloc.h:1046
Object info.
Definition: hwloc.h:578
hwloc_obj_bridge_type_e
Type of one side (upstream or downstream) of an I/O bridge.
Definition: hwloc.h:260
unsigned char nexttouch_membind
Definition: hwloc.h:1033
Returned by get_membind() functions when multiple threads or parts of a memory area have differing me...
Definition: hwloc.h:1649
Definition: hwloc.h:1683
void * hwloc_alloc_membind(hwloc_topology_t topology, size_t len, hwloc_const_cpuset_t cpuset, hwloc_membind_policy_t policy, int flags)
Allocate some memory on memory nodes near the given physical cpuset cpuset.
const struct hwloc_bitmap_s * hwloc_const_bitmap_t
a non-modifiable hwloc_bitmap_t
Definition: bitmap.h:52
int hwloc_get_area_membind(hwloc_topology_t topology, const void *addr, size_t len, hwloc_cpuset_t cpuset, 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...
static int hwloc_get_nbobjs_by_type(hwloc_topology_t topology, hwloc_obj_type_t type)
Returns the width of level type type.
unsigned relative_depth
Relative depth of the considered objects below the object containing this distance information...
Definition: hwloc.h:551
unsigned char get_thisthread_last_cpu_location
Definition: hwloc.h:1001
union hwloc_obj_attr_u::hwloc_bridge_attr_s::@0 upstream
hwloc_obj_type_t hwloc_get_depth_type(hwloc_topology_t topology, unsigned depth)
Returns the type of objects at depth depth.
int hwloc_get_proc_membind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t cpuset, hwloc_membind_policy_t *policy, int flags)
Query the default memory binding policy and physical locality of the specified process (the locality ...
unsigned hwloc_get_api_version(void)
Indicate at runtime which hwloc API version was used at build time.
unsigned nbobjs
Number of objects considered in the matrix. It is the number of descendant objects at relative_depth ...
Definition: hwloc.h:553
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().
Miscellaneous objects. Objects without particular meaning, that can e.g. be added by the application ...
Definition: hwloc.h:216
Operating system block device. For instance "sda" on Linux.
Definition: hwloc.h:267
union hwloc_obj_attr_u::hwloc_bridge_attr_s::@1 downstream
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.
Operating system dma engine device. For instance the "dma0chan0" DMA channel on Linux.
Definition: hwloc.h:276
unsigned short vendor_id
Definition: hwloc.h:512
Move I/O objects to ancestors if their parents are removed during restriction. If this flag is not se...
Definition: hwloc.h:2105
const char * hwloc_obj_type_string(hwloc_obj_type_t type)
Return a stringified topology object type.
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.
struct hwloc_obj * last_child
Last child.
Definition: hwloc.h:379
Flags describing actual discovery support for this topology.
Definition: hwloc.h:973
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.
struct hwloc_obj_info_s * infos
Array of stringified info type=name.
Definition: hwloc.h:478
hwloc_obj_bridge_type_t upstream_type
Definition: hwloc.h:521
int associativity
Ways of associativity, -1 if fully associative, 0 if unknown.
Definition: hwloc.h:499
unsigned char set_thisthread_membind
Definition: hwloc.h:1015