Open MPI logo

Portable Hardware Locality (hwloc) Documentation: v1.8.1

  |   Home   |   Support   |   FAQ   |  
hwloc.h
1 /*
2  * Copyright © 2009 CNRS
3  * Copyright © 2009-2013 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  *=====================================================================*/
38 
47 #ifndef HWLOC_H
48 #define HWLOC_H
49 
50 #include <hwloc/autogen/config.h>
51 #include <sys/types.h>
52 #include <stdio.h>
53 #include <string.h>
54 #include <limits.h>
55 
56 /*
57  * Symbol transforms
58  */
59 #include <hwloc/rename.h>
60 
61 /*
62  * Bitmap definitions
63  */
64 
65 #include <hwloc/bitmap.h>
66 
67 
68 #ifdef __cplusplus
69 extern "C" {
70 #endif
71 
72 
78 #define HWLOC_API_VERSION 0x00010800
79 
81 HWLOC_DECLSPEC unsigned hwloc_get_api_version(void);
82 
84 #define HWLOC_COMPONENT_ABI 3
85 
119 
137 
152 typedef enum {
153  /* ***************************************************************
154  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
155 
156  If new enum values are added here, you MUST also go update the
157  obj_type_order[] and obj_order_type[] arrays in src/topology.c.
158 
159  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
160  *************************************************************** */
161 
233  /* ***************************************************************
234  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
235 
236  If new enum values are added here, you MUST also go update the
237  obj_type_order[] and obj_order_type[] arrays in src/topology.c.
238 
239  WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
240  *************************************************************** */
242 
250 
256 
275 
293 HWLOC_DECLSPEC int hwloc_compare_types (hwloc_obj_type_t type1, hwloc_obj_type_t type2) __hwloc_attribute_const;
294 
297 };
298 
307 union hwloc_obj_attr_u;
308 
311  hwloc_uint64_t total_memory;
312  hwloc_uint64_t local_memory;
315  unsigned page_types_len;
322  hwloc_uint64_t size;
323  hwloc_uint64_t count;
324  } * page_types;
325 };
326 
331 struct hwloc_obj {
332  /* physical information */
334  unsigned os_index;
335  char *name;
342  /* global position */
343  unsigned depth;
348  unsigned logical_index;
350  signed os_level;
352  /* cousins are all objects of the same type (and depth) across the entire topology */
356  /* children of the same parent are siblings, even if they may have different type and depth */
357  struct hwloc_obj *parent;
358  unsigned sibling_rank;
362  /* children array below this object */
363  unsigned arity;
364  struct hwloc_obj **children;
368  /* misc */
369  void *userdata;
374  /* cpusets and nodesets */
375  hwloc_cpuset_t cpuset;
388  hwloc_cpuset_t complete_cpuset;
399  hwloc_cpuset_t online_cpuset;
407  hwloc_cpuset_t allowed_cpuset;
418  hwloc_nodeset_t nodeset;
435  hwloc_nodeset_t complete_nodeset;
449  hwloc_nodeset_t allowed_nodeset;
463  unsigned distances_count;
464 
466  unsigned infos_count;
473 };
477 typedef struct hwloc_obj * hwloc_obj_t;
478 
483  hwloc_uint64_t size;
484  unsigned depth;
485  unsigned linesize;
489  } cache;
492  unsigned depth;
493  } group;
496  unsigned short domain;
497  unsigned char bus, dev, func;
498  unsigned short class_id;
500  unsigned char revision;
501  float linkspeed; /* in GB/s */
502  } pcidev;
505  union {
507  } upstream;
509  union {
510  struct {
511  unsigned short domain;
513  } pci;
514  } downstream;
516  unsigned depth;
517  } bridge;
521  } osdev;
522 };
523 
539  unsigned relative_depth;
541  unsigned nbobjs;
546  float *latency;
551  float latency_max;
552  float latency_base;
556 };
557 
560  char *name;
561  char *value;
562 };
563 
572 struct hwloc_topology;
577 typedef struct hwloc_topology * hwloc_topology_t;
578 
585 HWLOC_DECLSPEC int hwloc_topology_init (hwloc_topology_t *topologyp);
586 
604 HWLOC_DECLSPEC int hwloc_topology_load(hwloc_topology_t topology);
605 
610 HWLOC_DECLSPEC void hwloc_topology_destroy (hwloc_topology_t topology);
611 
623 HWLOC_DECLSPEC void hwloc_topology_check(hwloc_topology_t topology);
624 
659 HWLOC_DECLSPEC int hwloc_topology_ignore_type(hwloc_topology_t topology, hwloc_obj_type_t type);
660 
669 HWLOC_DECLSPEC int hwloc_topology_ignore_type_keep_structure(hwloc_topology_t topology, hwloc_obj_type_t type);
670 
678 HWLOC_DECLSPEC int hwloc_topology_ignore_all_keep_structure(hwloc_topology_t topology);
679 
694 
714 
726 
735 
744 
752 };
753 
763 HWLOC_DECLSPEC int hwloc_topology_set_flags (hwloc_topology_t topology, unsigned long flags);
764 
771 HWLOC_DECLSPEC unsigned long hwloc_topology_get_flags (hwloc_topology_t topology);
772 
787 HWLOC_DECLSPEC int hwloc_topology_set_pid(hwloc_topology_t __hwloc_restrict topology, hwloc_pid_t pid);
788 
815 HWLOC_DECLSPEC int hwloc_topology_set_fsroot(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict fsroot_path);
816 
844 HWLOC_DECLSPEC int hwloc_topology_set_synthetic(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict description);
845 
872 HWLOC_DECLSPEC int hwloc_topology_set_xml(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict xmlpath);
873 
900 HWLOC_DECLSPEC int hwloc_topology_set_xmlbuffer(hwloc_topology_t __hwloc_restrict topology, const char * __hwloc_restrict buffer, int size);
901 
921 HWLOC_DECLSPEC int hwloc_topology_set_custom(hwloc_topology_t topology);
922 
940 HWLOC_DECLSPEC int hwloc_topology_set_distance_matrix(hwloc_topology_t __hwloc_restrict topology,
941  hwloc_obj_type_t type, unsigned nbobjs,
942  unsigned *os_index, float *distances);
943 
951 HWLOC_DECLSPEC int hwloc_topology_is_thissystem(hwloc_topology_t __hwloc_restrict topology) __hwloc_attribute_pure;
952 
956  unsigned char pu;
957 };
958 
962  unsigned char set_thisproc_cpubind;
964  unsigned char get_thisproc_cpubind;
966  unsigned char set_proc_cpubind;
968  unsigned char get_proc_cpubind;
970  unsigned char set_thisthread_cpubind;
972  unsigned char get_thisthread_cpubind;
974  unsigned char set_thread_cpubind;
976  unsigned char get_thread_cpubind;
983 };
984 
988  unsigned char set_thisproc_membind;
990  unsigned char get_thisproc_membind;
992  unsigned char set_proc_membind;
994  unsigned char get_proc_membind;
996  unsigned char set_thisthread_membind;
998  unsigned char get_thisthread_membind;
1000  unsigned char set_area_membind;
1002  unsigned char get_area_membind;
1004  unsigned char alloc_membind;
1006  unsigned char firsttouch_membind;
1008  unsigned char bind_membind;
1010  unsigned char interleave_membind;
1012  unsigned char replicate_membind;
1014  unsigned char nexttouch_membind;
1015 
1017  unsigned char migrate_membind;
1018 };
1019 
1030 };
1031 
1033 HWLOC_DECLSPEC const struct hwloc_topology_support *hwloc_topology_get_support(hwloc_topology_t __hwloc_restrict topology);
1034 
1052 HWLOC_DECLSPEC unsigned hwloc_topology_get_depth(hwloc_topology_t __hwloc_restrict topology) __hwloc_attribute_pure;
1053 
1076 HWLOC_DECLSPEC int hwloc_get_type_depth (hwloc_topology_t topology, hwloc_obj_type_t type);
1077 
1084 };
1085 
1095 static __hwloc_inline int
1096 hwloc_get_type_or_below_depth (hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure;
1097 
1107 static __hwloc_inline int
1108 hwloc_get_type_or_above_depth (hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure;
1109 
1114 HWLOC_DECLSPEC hwloc_obj_type_t hwloc_get_depth_type (hwloc_topology_t topology, unsigned depth) __hwloc_attribute_pure;
1115 
1118 HWLOC_DECLSPEC unsigned hwloc_get_nbobjs_by_depth (hwloc_topology_t topology, unsigned depth) __hwloc_attribute_pure;
1119 
1125 static __hwloc_inline int
1126 hwloc_get_nbobjs_by_type (hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure;
1127 
1133 static __hwloc_inline hwloc_obj_t
1134 hwloc_get_root_obj (hwloc_topology_t topology) __hwloc_attribute_pure;
1135 
1137 HWLOC_DECLSPEC hwloc_obj_t hwloc_get_obj_by_depth (hwloc_topology_t topology, unsigned depth, unsigned idx) __hwloc_attribute_pure;
1138 
1145 static __hwloc_inline hwloc_obj_t
1146 hwloc_get_obj_by_type (hwloc_topology_t topology, hwloc_obj_type_t type, unsigned idx) __hwloc_attribute_pure;
1147 
1152 static __hwloc_inline hwloc_obj_t
1153 hwloc_get_next_obj_by_depth (hwloc_topology_t topology, unsigned depth, hwloc_obj_t prev);
1154 
1161 static __hwloc_inline hwloc_obj_t
1162 hwloc_get_next_obj_by_type (hwloc_topology_t topology, hwloc_obj_type_t type,
1163  hwloc_obj_t prev);
1164 
1174 HWLOC_DECLSPEC const char * hwloc_obj_type_string (hwloc_obj_type_t type) __hwloc_attribute_const;
1175 
1180 HWLOC_DECLSPEC hwloc_obj_type_t hwloc_obj_type_of_string (const char * string) __hwloc_attribute_pure;
1181 
1192 HWLOC_DECLSPEC int hwloc_obj_type_snprintf(char * __hwloc_restrict string, size_t size, hwloc_obj_t obj,
1193  int verbose);
1194 
1206 HWLOC_DECLSPEC int hwloc_obj_attr_snprintf(char * __hwloc_restrict string, size_t size, hwloc_obj_t obj, const char * __hwloc_restrict separator,
1207  int verbose);
1208 
1216 HWLOC_DECLSPEC int hwloc_obj_cpuset_snprintf(char * __hwloc_restrict str, size_t size, size_t nobj, const hwloc_obj_t * __hwloc_restrict objs);
1217 
1224 static __hwloc_inline const char *
1225 hwloc_obj_get_info_by_name(hwloc_obj_t obj, const char *name) __hwloc_attribute_pure;
1226 
1241 HWLOC_DECLSPEC void hwloc_obj_add_info(hwloc_obj_t obj, const char *name, const char *value);
1242 
1300 typedef enum {
1304 
1308 
1333 
1351 
1357 HWLOC_DECLSPEC int hwloc_set_cpubind(hwloc_topology_t topology, hwloc_const_cpuset_t set, int flags);
1358 
1364 HWLOC_DECLSPEC int hwloc_get_cpubind(hwloc_topology_t topology, hwloc_cpuset_t set, int flags);
1365 
1377 HWLOC_DECLSPEC int hwloc_set_proc_cpubind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_cpuset_t set, int flags);
1378 
1390 HWLOC_DECLSPEC int hwloc_get_proc_cpubind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, int flags);
1391 
1392 #ifdef hwloc_thread_t
1393 
1400 HWLOC_DECLSPEC int hwloc_set_thread_cpubind(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_const_cpuset_t set, int flags);
1401 #endif
1402 
1403 #ifdef hwloc_thread_t
1404 
1411 HWLOC_DECLSPEC int hwloc_get_thread_cpubind(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_cpuset_t set, int flags);
1412 #endif
1413 
1427 HWLOC_DECLSPEC int hwloc_get_last_cpu_location(hwloc_topology_t topology, hwloc_cpuset_t set, int flags);
1428 
1445 HWLOC_DECLSPEC int hwloc_get_proc_last_cpu_location(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, int flags);
1446 
1514 typedef enum {
1518 
1528 
1532 
1541 
1554 
1561 
1568 
1580 typedef enum {
1586 
1591 
1599 
1605 
1619 
1632 HWLOC_DECLSPEC int hwloc_set_membind_nodeset(hwloc_topology_t topology, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags);
1633 
1647 HWLOC_DECLSPEC int hwloc_set_membind(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, hwloc_membind_policy_t policy, int flags);
1648 
1689 HWLOC_DECLSPEC int hwloc_get_membind_nodeset(hwloc_topology_t topology, hwloc_nodeset_t nodeset, hwloc_membind_policy_t * policy, int flags);
1690 
1736 HWLOC_DECLSPEC int hwloc_get_membind(hwloc_topology_t topology, hwloc_cpuset_t cpuset, hwloc_membind_policy_t * policy, int flags);
1737 
1747 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);
1748 
1758 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);
1759 
1796 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);
1797 
1837 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);
1838 
1845 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);
1846 
1853 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);
1854 
1877 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);
1878 
1903 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);
1904 
1912 HWLOC_DECLSPEC void *hwloc_alloc(hwloc_topology_t topology, size_t len);
1913 
1923 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;
1924 
1934 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;
1935 
1942 static __hwloc_inline void *
1943 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;
1944 
1949 static __hwloc_inline void *
1950 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;
1951 
1955 HWLOC_DECLSPEC int hwloc_free(hwloc_topology_t topology, void *addr, size_t len);
1956 
1979 HWLOC_DECLSPEC hwloc_obj_t hwloc_topology_insert_misc_object_by_cpuset(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, const char *name);
1980 
1996 HWLOC_DECLSPEC hwloc_obj_t hwloc_topology_insert_misc_object_by_parent(hwloc_topology_t topology, hwloc_obj_t parent, const char *name);
1997 
2005 
2011 
2017 };
2018 
2040 HWLOC_DECLSPEC int hwloc_topology_restrict(hwloc_topology_t __hwloc_restrict topology, hwloc_const_cpuset_t cpuset, unsigned long flags);
2041 
2049 HWLOC_DECLSPEC int hwloc_topology_dup(hwloc_topology_t *newtopology, hwloc_topology_t oldtopology);
2050 
2084 HWLOC_DECLSPEC int hwloc_custom_insert_topology(hwloc_topology_t newtopology, hwloc_obj_t newparent, hwloc_topology_t oldtopology, hwloc_obj_t oldroot);
2085 
2107 HWLOC_DECLSPEC hwloc_obj_t hwloc_custom_insert_group_object_by_parent(hwloc_topology_t topology, hwloc_obj_t parent, int groupdepth);
2108 
2130 HWLOC_DECLSPEC int hwloc_topology_export_xml(hwloc_topology_t topology, const char *xmlpath);
2131 
2148 HWLOC_DECLSPEC int hwloc_topology_export_xmlbuffer(hwloc_topology_t topology, char **xmlbuffer, int *buflen);
2149 
2151 HWLOC_DECLSPEC void hwloc_free_xmlbuffer(hwloc_topology_t topology, char *xmlbuffer);
2152 
2169 HWLOC_DECLSPEC void hwloc_topology_set_userdata_export_callback(hwloc_topology_t topology,
2170  void (*export_cb)(void *reserved, hwloc_topology_t topology, hwloc_obj_t obj));
2171 
2197 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);
2198 
2212 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);
2213 
2234 HWLOC_DECLSPEC void hwloc_topology_set_userdata_import_callback(hwloc_topology_t topology,
2235  void (*import_cb)(hwloc_topology_t topology, hwloc_obj_t obj, const char *name, const void *buffer, size_t length));
2236 
2241 #ifdef __cplusplus
2242 } /* extern "C" */
2243 #endif
2244 
2245 
2246 /* high-level helpers */
2247 #include <hwloc/helper.h>
2248 
2249 /* inline code of some functions above */
2250 #include <hwloc/inlines.h>
2251 
2252 /* topology diffs */
2253 #include <hwloc/diff.h>
2254 
2255 /* deprecated headers */
2256 #include <hwloc/deprecated.h>
2257 
2258 #endif /* HWLOC_H */
Structure of a topology object.
Definition: hwloc.h:331
HWLOC_DECLSPEC 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.
HWLOC_DECLSPEC int hwloc_topology_set_fsroot(hwloc_topology_t __hwloc_restrict topology, const char *__hwloc_restrict fsroot_path)
Change the file-system root path when building the topology from sysfs/procfs.
Instruction cache. Only used when the HWLOC_TOPOLOGY_FLAG_ICACHES topology flag is set...
Definition: hwloc.h:247
unsigned arity
Number of children.
Definition: hwloc.h:363
struct hwloc_obj_memory_s::hwloc_obj_memory_page_type_s * page_types
hwloc_uint64_t size
Size of pages.
Definition: hwloc.h:322
unsigned linesize
Cache-line size in bytes. 0 if unknown.
Definition: hwloc.h:485
unsigned short domain
Definition: hwloc.h:496
Processing Unit, or (Logical) Processor. An execution unit (may share a core with some other logical ...
Definition: hwloc.h:187
unsigned char get_proc_last_cpu_location
Definition: hwloc.h:980
Request for strict binding from the OS.
Definition: hwloc.h:1332
HWLOC_DECLSPEC int hwloc_topology_init(hwloc_topology_t *topologyp)
Allocate a topology context.
float latency_base
The multiplier that should be applied to latency matrix to retrieve the original OS-provided latencie...
Definition: hwloc.h:552
hwloc_const_bitmap_t hwloc_const_cpuset_t
A non-modifiable hwloc_cpuset_t.
Definition: hwloc.h:118
hwloc_obj_type_t
Type of topology object.
Definition: hwloc.h:152
unsigned char dev
Definition: hwloc.h:497
Avoid any effect on memory binding.
Definition: hwloc.h:1349
Bind current thread of current process.
Definition: hwloc.h:1307
struct hwloc_obj * prev_cousin
Previous object of same type and depth.
Definition: hwloc.h:354
HWLOC_DECLSPEC 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.
unsigned distances_count
Definition: hwloc.h:463
struct hwloc_obj * hwloc_obj_t
Convenience typedef; a pointer to a struct hwloc_obj.
Definition: hwloc.h:477
char * name
Info name.
Definition: hwloc.h:560
HWLOC_DECLSPEC 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.
Set policy for a specific thread of the current process. This flag is mutually exclusive with HWLOC_M...
Definition: hwloc.h:1590
Distances between objects.
Definition: hwloc.h:538
hwloc_obj_osdev_type_e
Type of a OS device.
Definition: hwloc.h:258
HWLOC_DECLSPEC int hwloc_topology_set_pid(hwloc_topology_t __hwloc_restrict topology, hwloc_pid_t pid)
Change which pid the topology is viewed from.
unsigned char get_thread_cpubind
Definition: hwloc.h:976
static __hwloc_inline int hwloc_get_type_or_above_depth(hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure
Returns the depth of objects of type type or above.
HWLOC_DECLSPEC int hwloc_topology_dup(hwloc_topology_t *newtopology, hwloc_topology_t oldtopology)
Duplicate a topology.
HWLOC_DECLSPEC 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.
struct hwloc_obj_attr_u::hwloc_cache_attr_s cache
Flags describing actual memory binding support for this topology.
Definition: hwloc.h:986
HWLOC_DECLSPEC 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.
Allocate memory on the specified nodes.
Definition: hwloc.h:1531
unsigned char pu
Detecting the number of PU objects is supported.
Definition: hwloc.h:956
hwloc_get_type_depth_e
Definition: hwloc.h:1078
Operating system device. These objects have neither CPU sets nor node sets. They are not added to the...
Definition: hwloc.h:225
enum hwloc_obj_osdev_type_e hwloc_obj_osdev_type_t
Type of a OS device.
HWLOC_DECLSPEC int hwloc_topology_export_xml(hwloc_topology_t topology, const char *xmlpath)
Export the topology into an XML file.
HWLOC_DECLSPEC int hwloc_obj_attr_snprintf(char *__hwloc_restrict string, size_t size, hwloc_obj_t obj, const char *__hwloc_restrict separator, int verbose)
Stringify the attributes of a given topology object into a human-readable form.
HWLOC_DECLSPEC int hwloc_get_type_depth(hwloc_topology_t topology, hwloc_obj_type_t type)
Returns the depth of objects of type type.
Value returned by hwloc_compare_types when types can not be compared.
Definition: hwloc.h:296
struct hwloc_obj_memory_s memory
Memory attributes.
Definition: hwloc.h:337
Virtual depth for software device object level.
Definition: hwloc.h:1083
hwloc_uint64_t count
Number of pages of this size.
Definition: hwloc.h:323
HWLOC_DECLSPEC int hwloc_obj_type_snprintf(char *__hwloc_restrict string, size_t size, hwloc_obj_t obj, int verbose)
Stringify the type of a given topology object into a human-readable form.
unsigned depth
Depth of group object.
Definition: hwloc.h:492
PCI Device specific Object Attributes.
Definition: hwloc.h:495
Detect the whole system, ignore reservations and offline settings.
Definition: hwloc.h:693
static __hwloc_inline 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) __hwloc_attribute_malloc
Allocate some memory on the given nodeset nodeset.
static __hwloc_inline void * 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
Allocate some memory on the memory nodes near given cpuset cpuset.
unsigned char func
Definition: hwloc.h:497
unsigned char revision
Definition: hwloc.h:500
struct hwloc_obj_attr_u::hwloc_bridge_attr_s bridge
HWLOC_DECLSPEC int hwloc_obj_cpuset_snprintf(char *__hwloc_restrict str, size_t size, size_t nobj, const hwloc_obj_t *__hwloc_restrict objs)
Stringify the cpuset containing a set of objects.
struct hwloc_obj * prev_sibling
Previous object below the same parent.
Definition: hwloc.h:360
static __hwloc_inline const char * hwloc_obj_get_info_by_name(hwloc_obj_t obj, const char *name) __hwloc_attribute_pure
Search the given key name in object infos and return the corresponding value.
HWLOC_DECLSPEC hwloc_obj_type_t hwloc_get_depth_type(hwloc_topology_t topology, unsigned depth) __hwloc_attribute_pure
Returns the type of objects at depth depth.
Operating system network device. For instance the "eth0" interface on Linux.
Definition: hwloc.h:264
struct hwloc_obj * parent
Parent, NULL if root (system object)
Definition: hwloc.h:357
Operating system co-processor device. For instance "mic0" for a Xeon Phi (MIC) on Linux...
Definition: hwloc.h:270
Array of local memory page types, NULL if no local memory and page_types is 0.
Definition: hwloc.h:321
hwloc_nodeset_t allowed_nodeset
The set of allowed NUMA memory nodes.
Definition: hwloc.h:449
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)
Query the default memory binding policy and physical locality of the specified process (the locality ...
HWLOC_DECLSPEC void hwloc_topology_destroy(hwloc_topology_t topology)
Terminate and free a topology context.
Definition: hwloc.h:231
PCI-side of a bridge.
Definition: hwloc.h:254
unsigned char get_thisthread_cpubind
Definition: hwloc.h:972
hwloc_uint64_t size
Size of cache in bytes.
Definition: hwloc.h:483
unsigned char bind_membind
Definition: hwloc.h:1008
unsigned logical_index
Horizontal index in the whole list of similar objects, could be a "cousin_rank" since it's the rank...
Definition: hwloc.h:348
Object memory.
Definition: hwloc.h:310
char * value
Info value.
Definition: hwloc.h:561
unsigned depth
Vertical index in the hierarchy. If the topology is symmetric, this is equal to the parent depth plus...
Definition: hwloc.h:343
Allocate memory but do not immediately bind it to a specific locality. Instead, each page in the allo...
Definition: hwloc.h:1527
unsigned page_types_len
Size of array page_types.
Definition: hwloc.h:315
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:511
unsigned os_index
OS-provided physical index number.
Definition: hwloc.h:334
unsigned char set_proc_membind
Definition: hwloc.h:992
HWLOC_DECLSPEC int hwloc_topology_is_thissystem(hwloc_topology_t __hwloc_restrict topology) __hwloc_attribute_pure
Does the topology context come from this system?
unsigned char firsttouch_membind
Definition: hwloc.h:1006
struct hwloc_distances_s ** distances
Distances between all objects at same depth below this object.
Definition: hwloc.h:462
Group objects. Objects which do not fit in the above but are detected by hwloc and are useful to take...
Definition: hwloc.h:196
HWLOC_DECLSPEC const struct hwloc_topology_support * hwloc_topology_get_support(hwloc_topology_t __hwloc_restrict topology)
Retrieve the topology support.
Flags describing actual PU binding support for this topology.
Definition: hwloc.h:960
unsigned char set_thisproc_membind
Definition: hwloc.h:988
hwloc_cpuset_t complete_cpuset
The complete CPU set of logical processors of this object,.
Definition: hwloc.h:388
Object type-specific Attributes.
Definition: hwloc.h:480
HWLOC_DECLSPEC unsigned hwloc_get_nbobjs_by_depth(hwloc_topology_t topology, unsigned depth) __hwloc_attribute_pure
Returns the width of level at depth depth.
Detect PCI bridges.
Definition: hwloc.h:734
unsigned char set_proc_cpubind
Definition: hwloc.h:966
Migrate existing allocated memory. If the memory cannot be migrated and the HWLOC_MEMBIND_STRICT flag...
Definition: hwloc.h:1604
unsigned char replicate_membind
Definition: hwloc.h:1012
HWLOC_DECLSPEC 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 symmetric_subtree
Set if the subtree of objects below this object is symmetric, which means all children and their chil...
Definition: hwloc.h:468
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:133
Detect instruction caches.
Definition: hwloc.h:751
unsigned char get_thisthread_membind
Definition: hwloc.h:998
HWLOC_DECLSPEC 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.
Data cache.
Definition: hwloc.h:246
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)
Query the default memory binding policy and physical locality of the specified process.
unsigned infos_count
Size of infos array.
Definition: hwloc.h:466
Detect the whole PCI hierarchy.
Definition: hwloc.h:743
hwloc_topology_flags_e
Flags to be set onto a topology context before load.
Definition: hwloc.h:685
unsigned char migrate_membind
Definition: hwloc.h:1017
unsigned char get_proc_cpubind
Definition: hwloc.h:968
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)
Bind the already-allocated memory identified by (addr, len) to the NUMA node(s) in physical nodeset...
HWLOC_DECLSPEC int hwloc_get_cpubind(hwloc_topology_t topology, hwloc_cpuset_t set, int flags)
Get current process or thread binding.
HWLOC_DECLSPEC int hwloc_topology_set_xml(hwloc_topology_t __hwloc_restrict topology, const char *__hwloc_restrict xmlpath)
Enable XML-file based topology.
Objects of given type exist at different depth in the topology.
Definition: hwloc.h:1080
HWLOC_DECLSPEC unsigned hwloc_get_api_version(void)
Indicate at runtime which hwloc API version was used at build time.
HWLOC_DECLSPEC 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.
HWLOC_DECLSPEC 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_DECLSPEC hwloc_obj_type_t hwloc_obj_type_of_string(const char *string) __hwloc_attribute_pure
Return an object type from the string.
unsigned char interleave_membind
Definition: hwloc.h:1010
unsigned char subordinate_bus
Definition: hwloc.h:512
struct hwloc_topology_membind_support * membind
Definition: hwloc.h:1029
float latency_max
The maximal value in the latency matrix.
Definition: hwloc.h:551
struct hwloc_topology_cpubind_support * cpubind
Definition: hwloc.h:1028
unsigned sibling_rank
Index in parent's children[] array.
Definition: hwloc.h:358
Group-specific Object Attributes.
Definition: hwloc.h:491
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
Allocate some memory on the given physical nodeset nodeset.
unsigned char set_thisthread_cpubind
Definition: hwloc.h:970
unsigned char get_thisproc_last_cpu_location
Definition: hwloc.h:978
Operating system openfabrics device. For instance the "mlx4_0" InfiniBand HCA device on Linux...
Definition: hwloc.h:266
HWLOC_DECLSPEC int hwloc_topology_set_flags(hwloc_topology_t topology, unsigned long flags)
Set OR'ed flags to non-yet-loaded topology.
HWLOC_DECLSPEC 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.
Replicate memory on the given nodes; reads from this memory will attempt to be serviced from the NUMA...
Definition: hwloc.h:1553
unsigned short device_id
Definition: hwloc.h:499
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)
Encode and export some object userdata to XML.
hwloc_obj_cache_type_t type
Cache type.
Definition: hwloc.h:488
Bridge specific Object Attribues.
Definition: hwloc.h:504
hwloc_obj_type_t type
Type of object.
Definition: hwloc.h:333
signed os_level
OS-provided physical level, -1 if unknown or meaningless.
Definition: hwloc.h:350
hwloc_obj_cache_type_e
Cache type.
Definition: hwloc.h:244
hwloc_nodeset_t complete_nodeset
The complete NUMA node set of this object,.
Definition: hwloc.h:435
hwloc_compare_types_e
Definition: hwloc.h:295
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
Allocate some memory on memory nodes near the given physical cpuset cpuset.
hwloc_membind_flags_t
Memory binding flags.
Definition: hwloc.h:1580
Allocate memory on the given nodes in an interleaved / round-robin manner. The precise layout of the ...
Definition: hwloc.h:1540
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:116
Reset the memory allocation policy to the system default.
Definition: hwloc.h:1517
NUMA node. A set of processors around memory which the processors can directly access.
Definition: hwloc.h:172
unsigned depth
Definition: hwloc.h:516
Set policy for all threads of the specified (possibly multithreaded) process. This flag is mutually e...
Definition: hwloc.h:1585
HWLOC_DECLSPEC int hwloc_topology_export_xmlbuffer(hwloc_topology_t topology, char **xmlbuffer, int *buflen)
Export the topology into a newly-allocated XML memory buffer.
Machine. The typical root object type. A set of processors and memory with cache coherency.
Definition: hwloc.h:167
enum hwloc_obj_cache_type_e hwloc_obj_cache_type_t
Cache type.
Operating system GPU device. For instance ":0.0" for a GL display, "card0" for a Linux DRM device...
Definition: hwloc.h:261
Move Misc objects to ancestors if their parents are removed during restriction. If this flag is not s...
Definition: hwloc.h:2010
struct hwloc_obj * next_sibling
Next object below the same parent.
Definition: hwloc.h:359
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)
Query the physical NUMA node(s) and binding policy of the memory identified by (addr, len ).
HWLOC_DECLSPEC 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_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)
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:312
unsigned short subdevice_id
Definition: hwloc.h:499
hwloc_nodeset_t nodeset
NUMA nodes covered by this object or containing this object.
Definition: hwloc.h:418
Host-side of a bridge, only possible upstream.
Definition: hwloc.h:253
unsigned short subvendor_id
Definition: hwloc.h:499
unsigned char set_thisproc_cpubind
Definition: hwloc.h:962
hwloc_obj_bridge_type_t downstream_type
Definition: hwloc.h:515
union hwloc_obj_attr_u * attr
Object type-specific Attributes, may be NULL if no attribute value was found.
Definition: hwloc.h:339
hwloc_cpuset_t online_cpuset
The CPU set of online logical processors.
Definition: hwloc.h:399
unsigned short class_id
Definition: hwloc.h:498
struct hwloc_obj_attr_u::hwloc_osdev_attr_s osdev
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)
Set the default memory binding policy of the specified process to prefer the NUMA node(s) specified b...
HWLOC_DECLSPEC hwloc_obj_t hwloc_get_obj_by_depth(hwloc_topology_t topology, unsigned depth, unsigned idx) __hwloc_attribute_pure
Returns the topology object at logical index idx from depth depth.
hwloc_obj_osdev_type_t type
Definition: hwloc.h:520
unsigned char set_thread_cpubind
Definition: hwloc.h:974
Detect PCI devices.
Definition: hwloc.h:725
unsigned char get_thisproc_membind
Definition: hwloc.h:990
unsigned char get_proc_membind
Definition: hwloc.h:994
OS Device specific Object Attributes.
Definition: hwloc.h:519
unsigned depth
Depth of cache (e.g., L1, L2, ...etc.)
Definition: hwloc.h:484
Set of flags describing actual support for this topology.
Definition: hwloc.h:1026
float linkspeed
Definition: hwloc.h:501
HWLOC_DECLSPEC int hwloc_topology_restrict(hwloc_topology_t __hwloc_restrict topology, hwloc_const_cpuset_t cpuset, unsigned long flags)
Restrict the topology to the given CPU set.
HWLOC_DECLSPEC unsigned hwloc_topology_get_depth(hwloc_topology_t __hwloc_restrict topology) __hwloc_attribute_pure
Get the depth of the hierarchical tree of objects.
struct hwloc_obj * first_child
First child.
Definition: hwloc.h:365
HWLOC_DECLSPEC const char * hwloc_obj_type_string(hwloc_obj_type_t type) __hwloc_attribute_const
Return a stringified topology object type.
hwloc_const_bitmap_t hwloc_const_nodeset_t
A non-modifiable hwloc_nodeset_t.
Definition: hwloc.h:136
HWLOC_DECLSPEC void * hwloc_alloc(hwloc_topology_t topology, size_t len)
Allocate some memory.
HWLOC_DECLSPEC int hwloc_topology_ignore_type(hwloc_topology_t topology, hwloc_obj_type_t type)
Ignore an object type.
void * userdata
Application-given private data pointer, initialized to NULL, use it as you wish. See hwloc_topology_s...
Definition: hwloc.h:369
float * latency
Matrix of latencies between objects, stored as a one-dimension array. May be NULL if the distances co...
Definition: hwloc.h:546
Bind all threads of the current (possibly) multithreaded process.
Definition: hwloc.h:1303
Virtual depth for bridge object level.
Definition: hwloc.h:1081
hwloc_membind_policy_t
Memory binding policy.
Definition: hwloc.h:1514
Adapt distance matrices according to objects being removed during restriction. If this flag is not se...
Definition: hwloc.h:2004
const struct hwloc_bitmap_s * hwloc_const_bitmap_t
a non-modifiable hwloc_bitmap_t
Definition: bitmap.h:47
struct hwloc_obj_attr_u::hwloc_pcidev_attr_s pcidev
HWLOC_DECLSPEC 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...
struct hwloc_obj * next_cousin
Next object of same type and depth.
Definition: hwloc.h:353
struct hwloc_bitmap_s * hwloc_bitmap_t
Set of bits represented as an opaque pointer to an internal bitmap.
Definition: bitmap.h:45
static __hwloc_inline hwloc_obj_t hwloc_get_root_obj(hwloc_topology_t topology) __hwloc_attribute_pure
Returns the top-object of the topology-tree.
Assume that the selected backend provides the topology for the system on which we are running...
Definition: hwloc.h:713
Avoid any effect on CPU binding.
Definition: hwloc.h:1617
unsigned char set_area_membind
Definition: hwloc.h:1000
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:1560
HWLOC_DECLSPEC int hwloc_topology_load(hwloc_topology_t topology)
Build the actual topology.
static __hwloc_inline 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.
static __hwloc_inline 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.
HWLOC_DECLSPEC unsigned long hwloc_topology_get_flags(hwloc_topology_t topology)
Get OR'ed flags of a topology.
char * name
Object description if any.
Definition: hwloc.h:335
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)
Bind the already-allocated memory identified by (addr, len) to the NUMA node(s) near physical cpuset...
PCI device. These objects have neither CPU sets nor node sets. They are not added to the topology unl...
Definition: hwloc.h:220
hwloc_restrict_flags_e
Flags to be given to hwloc_topology_restrict().
Definition: hwloc.h:1999
Cache. Can be L1i, L1d, L2, L3, ...
Definition: hwloc.h:180
unsigned char alloc_membind
Definition: hwloc.h:1004
Virtual depth for PCI device object level.
Definition: hwloc.h:1082
unsigned char secondary_bus
Definition: hwloc.h:512
static __hwloc_inline hwloc_obj_t hwloc_get_obj_by_type(hwloc_topology_t topology, hwloc_obj_type_t type, unsigned idx) __hwloc_attribute_pure
Returns the topology object at logical index idx with type type.
struct hwloc_pcidev_attr_s pci
Definition: hwloc.h:506
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)
Export some object userdata to XML.
static __hwloc_inline int hwloc_get_nbobjs_by_type(hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure
Returns the width of level type type.
No object of given type exists in the topology.
Definition: hwloc.h:1079
HWLOC_DECLSPEC int hwloc_compare_types(hwloc_obj_type_t type1, hwloc_obj_type_t type2) __hwloc_attribute_const
Compare the depth of two object types.
unsigned char bus
Definition: hwloc.h:497
hwloc_uint64_t total_memory
Total memory (in bytes) in this object and its children.
Definition: hwloc.h:311
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)
Query the CPUs near the physical NUMA node(s) and binding policy of the memory identified by (addr...
struct hwloc_obj ** children
Children, children[0 .. arity -1].
Definition: hwloc.h:364
Unified cache.
Definition: hwloc.h:245
Socket, physical package, or chip. In the physical meaning, i.e. that you can add or remove physicall...
Definition: hwloc.h:176
static __hwloc_inline int hwloc_get_type_or_below_depth(hwloc_topology_t topology, hwloc_obj_type_t type) __hwloc_attribute_pure
Returns the depth of objects of type type or below.
Whole system (may be a cluster of machines). The whole system that is accessible to hwloc...
Definition: hwloc.h:162
HWLOC_DECLSPEC int hwloc_topology_set_custom(hwloc_topology_t topology)
Prepare the topology for custom assembly.
struct hwloc_topology * hwloc_topology_t
Topology context.
Definition: hwloc.h:577
Core. A computation unit (may be shared by several logical processors).
Definition: hwloc.h:183
hwloc_cpuset_t allowed_cpuset
The CPU set of allowed logical processors.
Definition: hwloc.h:407
HWLOC_DECLSPEC 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...
unsigned char get_area_membind
Definition: hwloc.h:1002
HWLOC_DECLSPEC 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().
HWLOC_DECLSPEC int hwloc_topology_set_distance_matrix(hwloc_topology_t __hwloc_restrict topology, hwloc_obj_type_t type, unsigned nbobjs, unsigned *os_index, float *distances)
Provide a distance matrix.
struct hwloc_obj_attr_u::hwloc_group_attr_s group
unsigned char get_thisproc_cpubind
Definition: hwloc.h:964
hwloc_cpubind_flags_t
Process/Thread binding flags.
Definition: hwloc.h:1300
Bridge. Any bridge that connects the host or an I/O bus, to another I/O bus. Bridge objects have neit...
Definition: hwloc.h:213
hwloc_cpuset_t cpuset
CPUs covered by this object.
Definition: hwloc.h:375
Cache-specific Object Attributes.
Definition: hwloc.h:482
HWLOC_DECLSPEC 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.
HWLOC_DECLSPEC 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 userdata.
HWLOC_DECLSPEC void hwloc_topology_check(hwloc_topology_t topology)
Run internal checks on a topology structure.
HWLOC_DECLSPEC 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.
struct hwloc_topology_discovery_support * discovery
Definition: hwloc.h:1027
Object info.
Definition: hwloc.h:559
hwloc_obj_bridge_type_e
Type of one side (upstream or downstream) of an I/O bridge.
Definition: hwloc.h:252
unsigned char nexttouch_membind
Definition: hwloc.h:1014
Returned by hwloc_get_membind*() functions when multiple threads or parts of a memory area have diffe...
Definition: hwloc.h:1566
Definition: hwloc.h:1598
HWLOC_DECLSPEC void hwloc_free_xmlbuffer(hwloc_topology_t topology, char *xmlbuffer)
Free a buffer allocated by hwloc_topology_export_xmlbuffer()
unsigned relative_depth
Relative depth of the considered objects below the object containing this distance information...
Definition: hwloc.h:539
unsigned char get_thisthread_last_cpu_location
Definition: hwloc.h:982
union hwloc_obj_attr_u::hwloc_bridge_attr_s::@0 upstream
unsigned nbobjs
Number of objects considered in the matrix. It is the number of descendant objects at relative_depth ...
Definition: hwloc.h:541
Miscellaneous objects. Objects without particular meaning, that can e.g. be added by the application ...
Definition: hwloc.h:208
HWLOC_DECLSPEC int hwloc_topology_ignore_all_keep_structure(hwloc_topology_t topology)
Ignore all objects that do not bring any structure.
Operating system block device. For instance "sda" on Linux.
Definition: hwloc.h:259
HWLOC_DECLSPEC 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.
union hwloc_obj_attr_u::hwloc_bridge_attr_s::@1 downstream
Operating system dma engine device. For instance the "dma0chan0" DMA channel on Linux.
Definition: hwloc.h:268
unsigned short vendor_id
Definition: hwloc.h:499
HWLOC_DECLSPEC 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.
Move I/O objects to ancestors if their parents are removed during restriction. If this flag is not se...
Definition: hwloc.h:2016
HWLOC_DECLSPEC int hwloc_topology_set_xmlbuffer(hwloc_topology_t __hwloc_restrict topology, const char *__hwloc_restrict buffer, int size)
Enable XML based topology using a memory buffer (instead of a file, as with hwloc_topology_set_xml())...
struct hwloc_obj * last_child
Last child.
Definition: hwloc.h:366
Flags describing actual discovery support for this topology.
Definition: hwloc.h:954
HWLOC_DECLSPEC int hwloc_topology_set_synthetic(hwloc_topology_t __hwloc_restrict topology, const char *__hwloc_restrict description)
Enable synthetic topology.
struct hwloc_obj_info_s * infos
Array of stringified info type=name.
Definition: hwloc.h:465
hwloc_obj_bridge_type_t upstream_type
Definition: hwloc.h:508
int associativity
Ways of associativity, -1 if fully associative, 0 if unknown.
Definition: hwloc.h:486
unsigned char set_thisthread_membind
Definition: hwloc.h:996
HWLOC_DECLSPEC 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...