File indexing completed on 2025-01-18 10:01:17
0001
0002
0003
0004
0005
0006
0007 #ifndef HWLOC_RENAME_H
0008 #define HWLOC_RENAME_H
0009
0010 #include "hwloc/autogen/config.h"
0011
0012
0013 #ifdef __cplusplus
0014 extern "C" {
0015 #endif
0016
0017
0018
0019
0020
0021
0022 #if HWLOC_SYM_TRANSFORM
0023
0024
0025
0026
0027
0028 #define HWLOC_MUNGE_NAME(a, b) HWLOC_MUNGE_NAME2(a, b)
0029 #define HWLOC_MUNGE_NAME2(a, b) a ## b
0030 #define HWLOC_NAME(name) HWLOC_MUNGE_NAME(HWLOC_SYM_PREFIX, hwloc_ ## name)
0031
0032 #define HWLOC_NAME_CAPS(name) HWLOC_MUNGE_NAME(HWLOC_SYM_PREFIX_CAPS, hwloc_ ## name)
0033
0034
0035
0036
0037
0038
0039
0040
0041 #define hwloc_get_api_version HWLOC_NAME(get_api_version)
0042
0043 #define hwloc_topology HWLOC_NAME(topology)
0044 #define hwloc_topology_t HWLOC_NAME(topology_t)
0045
0046 #define hwloc_cpuset_t HWLOC_NAME(cpuset_t)
0047 #define hwloc_const_cpuset_t HWLOC_NAME(const_cpuset_t)
0048 #define hwloc_nodeset_t HWLOC_NAME(nodeset_t)
0049 #define hwloc_const_nodeset_t HWLOC_NAME(const_nodeset_t)
0050
0051 #define HWLOC_OBJ_MACHINE HWLOC_NAME_CAPS(OBJ_MACHINE)
0052 #define HWLOC_OBJ_NUMANODE HWLOC_NAME_CAPS(OBJ_NUMANODE)
0053 #define HWLOC_OBJ_MEMCACHE HWLOC_NAME_CAPS(OBJ_MEMCACHE)
0054 #define HWLOC_OBJ_PACKAGE HWLOC_NAME_CAPS(OBJ_PACKAGE)
0055 #define HWLOC_OBJ_DIE HWLOC_NAME_CAPS(OBJ_DIE)
0056 #define HWLOC_OBJ_CORE HWLOC_NAME_CAPS(OBJ_CORE)
0057 #define HWLOC_OBJ_PU HWLOC_NAME_CAPS(OBJ_PU)
0058 #define HWLOC_OBJ_L1CACHE HWLOC_NAME_CAPS(OBJ_L1CACHE)
0059 #define HWLOC_OBJ_L2CACHE HWLOC_NAME_CAPS(OBJ_L2CACHE)
0060 #define HWLOC_OBJ_L3CACHE HWLOC_NAME_CAPS(OBJ_L3CACHE)
0061 #define HWLOC_OBJ_L4CACHE HWLOC_NAME_CAPS(OBJ_L4CACHE)
0062 #define HWLOC_OBJ_L5CACHE HWLOC_NAME_CAPS(OBJ_L5CACHE)
0063 #define HWLOC_OBJ_L1ICACHE HWLOC_NAME_CAPS(OBJ_L1ICACHE)
0064 #define HWLOC_OBJ_L2ICACHE HWLOC_NAME_CAPS(OBJ_L2ICACHE)
0065 #define HWLOC_OBJ_L3ICACHE HWLOC_NAME_CAPS(OBJ_L3ICACHE)
0066 #define HWLOC_OBJ_MISC HWLOC_NAME_CAPS(OBJ_MISC)
0067 #define HWLOC_OBJ_GROUP HWLOC_NAME_CAPS(OBJ_GROUP)
0068 #define HWLOC_OBJ_BRIDGE HWLOC_NAME_CAPS(OBJ_BRIDGE)
0069 #define HWLOC_OBJ_PCI_DEVICE HWLOC_NAME_CAPS(OBJ_PCI_DEVICE)
0070 #define HWLOC_OBJ_OS_DEVICE HWLOC_NAME_CAPS(OBJ_OS_DEVICE)
0071 #define HWLOC_OBJ_TYPE_MAX HWLOC_NAME_CAPS(OBJ_TYPE_MAX)
0072 #define hwloc_obj_type_t HWLOC_NAME(obj_type_t)
0073
0074 #define hwloc_obj_cache_type_e HWLOC_NAME(obj_cache_type_e)
0075 #define hwloc_obj_cache_type_t HWLOC_NAME(obj_cache_type_t)
0076 #define HWLOC_OBJ_CACHE_UNIFIED HWLOC_NAME_CAPS(OBJ_CACHE_UNIFIED)
0077 #define HWLOC_OBJ_CACHE_DATA HWLOC_NAME_CAPS(OBJ_CACHE_DATA)
0078 #define HWLOC_OBJ_CACHE_INSTRUCTION HWLOC_NAME_CAPS(OBJ_CACHE_INSTRUCTION)
0079
0080 #define hwloc_obj_bridge_type_e HWLOC_NAME(obj_bridge_type_e)
0081 #define hwloc_obj_bridge_type_t HWLOC_NAME(obj_bridge_type_t)
0082 #define HWLOC_OBJ_BRIDGE_HOST HWLOC_NAME_CAPS(OBJ_BRIDGE_HOST)
0083 #define HWLOC_OBJ_BRIDGE_PCI HWLOC_NAME_CAPS(OBJ_BRIDGE_PCI)
0084
0085 #define hwloc_obj_osdev_type_e HWLOC_NAME(obj_osdev_type_e)
0086 #define hwloc_obj_osdev_type_t HWLOC_NAME(obj_osdev_type_t)
0087 #define HWLOC_OBJ_OSDEV_BLOCK HWLOC_NAME_CAPS(OBJ_OSDEV_BLOCK)
0088 #define HWLOC_OBJ_OSDEV_GPU HWLOC_NAME_CAPS(OBJ_OSDEV_GPU)
0089 #define HWLOC_OBJ_OSDEV_NETWORK HWLOC_NAME_CAPS(OBJ_OSDEV_NETWORK)
0090 #define HWLOC_OBJ_OSDEV_OPENFABRICS HWLOC_NAME_CAPS(OBJ_OSDEV_OPENFABRICS)
0091 #define HWLOC_OBJ_OSDEV_DMA HWLOC_NAME_CAPS(OBJ_OSDEV_DMA)
0092 #define HWLOC_OBJ_OSDEV_COPROC HWLOC_NAME_CAPS(OBJ_OSDEV_COPROC)
0093
0094 #define hwloc_compare_types HWLOC_NAME(compare_types)
0095
0096 #define hwloc_obj HWLOC_NAME(obj)
0097 #define hwloc_obj_t HWLOC_NAME(obj_t)
0098
0099 #define hwloc_info_s HWLOC_NAME(info_s)
0100
0101 #define hwloc_obj_attr_u HWLOC_NAME(obj_attr_u)
0102 #define hwloc_numanode_attr_s HWLOC_NAME(numanode_attr_s)
0103 #define hwloc_memory_page_type_s HWLOC_NAME(memory_page_type_s)
0104 #define hwloc_cache_attr_s HWLOC_NAME(cache_attr_s)
0105 #define hwloc_group_attr_s HWLOC_NAME(group_attr_s)
0106 #define hwloc_pcidev_attr_s HWLOC_NAME(pcidev_attr_s)
0107 #define hwloc_bridge_attr_s HWLOC_NAME(bridge_attr_s)
0108 #define hwloc_osdev_attr_s HWLOC_NAME(osdev_attr_s)
0109
0110 #define hwloc_topology_init HWLOC_NAME(topology_init)
0111 #define hwloc_topology_load HWLOC_NAME(topology_load)
0112 #define hwloc_topology_destroy HWLOC_NAME(topology_destroy)
0113 #define hwloc_topology_dup HWLOC_NAME(topology_dup)
0114 #define hwloc_topology_abi_check HWLOC_NAME(topology_abi_check)
0115 #define hwloc_topology_check HWLOC_NAME(topology_check)
0116
0117 #define hwloc_topology_flags_e HWLOC_NAME(topology_flags_e)
0118
0119 #define HWLOC_TOPOLOGY_FLAG_INCLUDE_DISALLOWED HWLOC_NAME_CAPS(TOPOLOGY_FLAG_WITH_DISALLOWED)
0120 #define HWLOC_TOPOLOGY_FLAG_IS_THISSYSTEM HWLOC_NAME_CAPS(TOPOLOGY_FLAG_IS_THISSYSTEM)
0121 #define HWLOC_TOPOLOGY_FLAG_THISSYSTEM_ALLOWED_RESOURCES HWLOC_NAME_CAPS(TOPOLOGY_FLAG_THISSYSTEM_ALLOWED_RESOURCES)
0122 #define HWLOC_TOPOLOGY_FLAG_IMPORT_SUPPORT HWLOC_NAME_CAPS(TOPOLOGY_FLAG_IMPORT_SUPPORT)
0123 #define HWLOC_TOPOLOGY_FLAG_RESTRICT_TO_CPUBINDING HWLOC_NAME_CAPS(TOPOLOGY_FLAG_RESTRICT_TO_CPUBINDING)
0124 #define HWLOC_TOPOLOGY_FLAG_RESTRICT_TO_MEMBINDING HWLOC_NAME_CAPS(TOPOLOGY_FLAG_RESTRICT_TO_MEMBINDING)
0125 #define HWLOC_TOPOLOGY_FLAG_DONT_CHANGE_BINDING HWLOC_NAME_CAPS(TOPOLOGY_FLAG_DONT_CHANGE_BINDING)
0126 #define HWLOC_TOPOLOGY_FLAG_NO_DISTANCES HWLOC_NAME_CAPS(TOPOLOGY_FLAG_NO_DISTANCES)
0127 #define HWLOC_TOPOLOGY_FLAG_NO_MEMATTRS HWLOC_NAME_CAPS(TOPOLOGY_FLAG_NO_MEMATTRS)
0128 #define HWLOC_TOPOLOGY_FLAG_NO_CPUKINDS HWLOC_NAME_CAPS(TOPOLOGY_FLAG_NO_CPUKINDS)
0129
0130 #define hwloc_topology_set_pid HWLOC_NAME(topology_set_pid)
0131 #define hwloc_topology_set_synthetic HWLOC_NAME(topology_set_synthetic)
0132 #define hwloc_topology_set_xml HWLOC_NAME(topology_set_xml)
0133 #define hwloc_topology_set_xmlbuffer HWLOC_NAME(topology_set_xmlbuffer)
0134 #define hwloc_topology_components_flag_e HWLOC_NAME(hwloc_topology_components_flag_e)
0135 #define HWLOC_TOPOLOGY_COMPONENTS_FLAG_BLACKLIST HWLOC_NAME_CAPS(TOPOLOGY_COMPONENTS_FLAG_BLACKLIST)
0136 #define hwloc_topology_set_components HWLOC_NAME(topology_set_components)
0137
0138 #define hwloc_topology_set_flags HWLOC_NAME(topology_set_flags)
0139 #define hwloc_topology_is_thissystem HWLOC_NAME(topology_is_thissystem)
0140 #define hwloc_topology_get_flags HWLOC_NAME(topology_get_flags)
0141 #define hwloc_topology_discovery_support HWLOC_NAME(topology_discovery_support)
0142 #define hwloc_topology_cpubind_support HWLOC_NAME(topology_cpubind_support)
0143 #define hwloc_topology_membind_support HWLOC_NAME(topology_membind_support)
0144 #define hwloc_topology_misc_support HWLOC_NAME(topology_misc_support)
0145 #define hwloc_topology_support HWLOC_NAME(topology_support)
0146 #define hwloc_topology_get_support HWLOC_NAME(topology_get_support)
0147
0148 #define hwloc_type_filter_e HWLOC_NAME(type_filter_e)
0149 #define HWLOC_TYPE_FILTER_KEEP_ALL HWLOC_NAME_CAPS(TYPE_FILTER_KEEP_ALL)
0150 #define HWLOC_TYPE_FILTER_KEEP_NONE HWLOC_NAME_CAPS(TYPE_FILTER_KEEP_NONE)
0151 #define HWLOC_TYPE_FILTER_KEEP_STRUCTURE HWLOC_NAME_CAPS(TYPE_FILTER_KEEP_STRUCTURE)
0152 #define HWLOC_TYPE_FILTER_KEEP_IMPORTANT HWLOC_NAME_CAPS(TYPE_FILTER_KEEP_IMPORTANT)
0153 #define hwloc_topology_set_type_filter HWLOC_NAME(topology_set_type_filter)
0154 #define hwloc_topology_get_type_filter HWLOC_NAME(topology_get_type_filter)
0155 #define hwloc_topology_set_all_types_filter HWLOC_NAME(topology_set_all_types_filter)
0156 #define hwloc_topology_set_cache_types_filter HWLOC_NAME(topology_set_cache_types_filter)
0157 #define hwloc_topology_set_icache_types_filter HWLOC_NAME(topology_set_icache_types_filter)
0158 #define hwloc_topology_set_io_types_filter HWLOC_NAME(topology_set_io_types_filter)
0159
0160 #define hwloc_topology_set_userdata HWLOC_NAME(topology_set_userdata)
0161 #define hwloc_topology_get_userdata HWLOC_NAME(topology_get_userdata)
0162
0163 #define hwloc_restrict_flags_e HWLOC_NAME(restrict_flags_e)
0164 #define HWLOC_RESTRICT_FLAG_REMOVE_CPULESS HWLOC_NAME_CAPS(RESTRICT_FLAG_REMOVE_CPULESS)
0165 #define HWLOC_RESTRICT_FLAG_BYNODESET HWLOC_NAME_CAPS(RESTRICT_FLAG_BYNODESET)
0166 #define HWLOC_RESTRICT_FLAG_REMOVE_MEMLESS HWLOC_NAME_CAPS(RESTRICT_FLAG_REMOVE_MEMLESS)
0167 #define HWLOC_RESTRICT_FLAG_ADAPT_MISC HWLOC_NAME_CAPS(RESTRICT_FLAG_ADAPT_MISC)
0168 #define HWLOC_RESTRICT_FLAG_ADAPT_IO HWLOC_NAME_CAPS(RESTRICT_FLAG_ADAPT_IO)
0169 #define hwloc_topology_restrict HWLOC_NAME(topology_restrict)
0170
0171 #define hwloc_allow_flags_e HWLOC_NAME(allow_flags_e)
0172 #define HWLOC_ALLOW_FLAG_ALL HWLOC_NAME_CAPS(ALLOW_FLAG_ALL)
0173 #define HWLOC_ALLOW_FLAG_LOCAL_RESTRICTIONS HWLOC_NAME_CAPS(ALLOW_FLAG_LOCAL_RESTRICTIONS)
0174 #define HWLOC_ALLOW_FLAG_CUSTOM HWLOC_NAME_CAPS(ALLOW_FLAG_CUSTOM)
0175 #define hwloc_topology_allow HWLOC_NAME(topology_allow)
0176
0177 #define hwloc_topology_insert_misc_object HWLOC_NAME(topology_insert_misc_object)
0178 #define hwloc_topology_alloc_group_object HWLOC_NAME(topology_alloc_group_object)
0179 #define hwloc_topology_free_group_object HWLOC_NAME(topology_free_group_object)
0180 #define hwloc_topology_insert_group_object HWLOC_NAME(topology_insert_group_object)
0181 #define hwloc_obj_add_other_obj_sets HWLOC_NAME(obj_add_other_obj_sets)
0182 #define hwloc_topology_refresh HWLOC_NAME(topology_refresh)
0183
0184 #define hwloc_topology_get_depth HWLOC_NAME(topology_get_depth)
0185 #define hwloc_get_type_depth HWLOC_NAME(get_type_depth)
0186 #define hwloc_get_memory_parents_depth HWLOC_NAME(get_memory_parents_depth)
0187
0188 #define hwloc_get_type_depth_e HWLOC_NAME(get_type_depth_e)
0189 #define HWLOC_TYPE_DEPTH_UNKNOWN HWLOC_NAME_CAPS(TYPE_DEPTH_UNKNOWN)
0190 #define HWLOC_TYPE_DEPTH_MULTIPLE HWLOC_NAME_CAPS(TYPE_DEPTH_MULTIPLE)
0191 #define HWLOC_TYPE_DEPTH_BRIDGE HWLOC_NAME_CAPS(TYPE_DEPTH_BRIDGE)
0192 #define HWLOC_TYPE_DEPTH_PCI_DEVICE HWLOC_NAME_CAPS(TYPE_DEPTH_PCI_DEVICE)
0193 #define HWLOC_TYPE_DEPTH_OS_DEVICE HWLOC_NAME_CAPS(TYPE_DEPTH_OS_DEVICE)
0194 #define HWLOC_TYPE_DEPTH_MISC HWLOC_NAME_CAPS(TYPE_DEPTH_MISC)
0195 #define HWLOC_TYPE_DEPTH_NUMANODE HWLOC_NAME_CAPS(TYPE_DEPTH_NUMANODE)
0196 #define HWLOC_TYPE_DEPTH_MEMCACHE HWLOC_NAME_CAPS(TYPE_DEPTH_MEMCACHE)
0197
0198 #define hwloc_get_depth_type HWLOC_NAME(get_depth_type)
0199 #define hwloc_get_nbobjs_by_depth HWLOC_NAME(get_nbobjs_by_depth)
0200 #define hwloc_get_nbobjs_by_type HWLOC_NAME(get_nbobjs_by_type)
0201
0202 #define hwloc_get_obj_by_depth HWLOC_NAME(get_obj_by_depth )
0203 #define hwloc_get_obj_by_type HWLOC_NAME(get_obj_by_type )
0204
0205 #define hwloc_obj_type_string HWLOC_NAME(obj_type_string )
0206 #define hwloc_obj_type_snprintf HWLOC_NAME(obj_type_snprintf )
0207 #define hwloc_obj_attr_snprintf HWLOC_NAME(obj_attr_snprintf )
0208 #define hwloc_type_sscanf HWLOC_NAME(type_sscanf)
0209 #define hwloc_type_sscanf_as_depth HWLOC_NAME(type_sscanf_as_depth)
0210
0211 #define hwloc_obj_get_info_by_name HWLOC_NAME(obj_get_info_by_name)
0212 #define hwloc_obj_add_info HWLOC_NAME(obj_add_info)
0213 #define hwloc_obj_set_subtype HWLOC_NAME(obj_set_subtype)
0214
0215 #define HWLOC_CPUBIND_PROCESS HWLOC_NAME_CAPS(CPUBIND_PROCESS)
0216 #define HWLOC_CPUBIND_THREAD HWLOC_NAME_CAPS(CPUBIND_THREAD)
0217 #define HWLOC_CPUBIND_STRICT HWLOC_NAME_CAPS(CPUBIND_STRICT)
0218 #define HWLOC_CPUBIND_NOMEMBIND HWLOC_NAME_CAPS(CPUBIND_NOMEMBIND)
0219
0220 #define hwloc_cpubind_flags_t HWLOC_NAME(cpubind_flags_t)
0221
0222 #define hwloc_set_cpubind HWLOC_NAME(set_cpubind)
0223 #define hwloc_get_cpubind HWLOC_NAME(get_cpubind)
0224 #define hwloc_set_proc_cpubind HWLOC_NAME(set_proc_cpubind)
0225 #define hwloc_get_proc_cpubind HWLOC_NAME(get_proc_cpubind)
0226 #define hwloc_set_thread_cpubind HWLOC_NAME(set_thread_cpubind)
0227 #define hwloc_get_thread_cpubind HWLOC_NAME(get_thread_cpubind)
0228
0229 #define hwloc_get_last_cpu_location HWLOC_NAME(get_last_cpu_location)
0230 #define hwloc_get_proc_last_cpu_location HWLOC_NAME(get_proc_last_cpu_location)
0231
0232 #define HWLOC_MEMBIND_DEFAULT HWLOC_NAME_CAPS(MEMBIND_DEFAULT)
0233 #define HWLOC_MEMBIND_FIRSTTOUCH HWLOC_NAME_CAPS(MEMBIND_FIRSTTOUCH)
0234 #define HWLOC_MEMBIND_BIND HWLOC_NAME_CAPS(MEMBIND_BIND)
0235 #define HWLOC_MEMBIND_INTERLEAVE HWLOC_NAME_CAPS(MEMBIND_INTERLEAVE)
0236 #define HWLOC_MEMBIND_WEIGHTED_INTERLEAVE HWLOC_NAME_CAPS(MEMBIND_WEIGHTED_INTERLEAVE)
0237 #define HWLOC_MEMBIND_NEXTTOUCH HWLOC_NAME_CAPS(MEMBIND_NEXTTOUCH)
0238 #define HWLOC_MEMBIND_MIXED HWLOC_NAME_CAPS(MEMBIND_MIXED)
0239
0240 #define hwloc_membind_policy_t HWLOC_NAME(membind_policy_t)
0241
0242 #define HWLOC_MEMBIND_PROCESS HWLOC_NAME_CAPS(MEMBIND_PROCESS)
0243 #define HWLOC_MEMBIND_THREAD HWLOC_NAME_CAPS(MEMBIND_THREAD)
0244 #define HWLOC_MEMBIND_STRICT HWLOC_NAME_CAPS(MEMBIND_STRICT)
0245 #define HWLOC_MEMBIND_MIGRATE HWLOC_NAME_CAPS(MEMBIND_MIGRATE)
0246 #define HWLOC_MEMBIND_NOCPUBIND HWLOC_NAME_CAPS(MEMBIND_NOCPUBIND)
0247 #define HWLOC_MEMBIND_BYNODESET HWLOC_NAME_CAPS(MEMBIND_BYNODESET)
0248
0249 #define hwloc_membind_flags_t HWLOC_NAME(membind_flags_t)
0250
0251 #define hwloc_set_membind HWLOC_NAME(set_membind)
0252 #define hwloc_get_membind HWLOC_NAME(get_membind)
0253 #define hwloc_set_proc_membind HWLOC_NAME(set_proc_membind)
0254 #define hwloc_get_proc_membind HWLOC_NAME(get_proc_membind)
0255 #define hwloc_set_area_membind HWLOC_NAME(set_area_membind)
0256 #define hwloc_get_area_membind HWLOC_NAME(get_area_membind)
0257 #define hwloc_get_area_memlocation HWLOC_NAME(get_area_memlocation)
0258 #define hwloc_alloc_membind HWLOC_NAME(alloc_membind)
0259 #define hwloc_alloc HWLOC_NAME(alloc)
0260 #define hwloc_free HWLOC_NAME(free)
0261
0262 #define hwloc_get_non_io_ancestor_obj HWLOC_NAME(get_non_io_ancestor_obj)
0263 #define hwloc_get_next_pcidev HWLOC_NAME(get_next_pcidev)
0264 #define hwloc_get_pcidev_by_busid HWLOC_NAME(get_pcidev_by_busid)
0265 #define hwloc_get_pcidev_by_busidstring HWLOC_NAME(get_pcidev_by_busidstring)
0266 #define hwloc_get_next_osdev HWLOC_NAME(get_next_osdev)
0267 #define hwloc_get_next_bridge HWLOC_NAME(get_next_bridge)
0268 #define hwloc_bridge_covers_pcibus HWLOC_NAME(bridge_covers_pcibus)
0269
0270
0271
0272 #define hwloc_bitmap_s HWLOC_NAME(bitmap_s)
0273 #define hwloc_bitmap_t HWLOC_NAME(bitmap_t)
0274 #define hwloc_const_bitmap_t HWLOC_NAME(const_bitmap_t)
0275
0276 #define hwloc_bitmap_alloc HWLOC_NAME(bitmap_alloc)
0277 #define hwloc_bitmap_alloc_full HWLOC_NAME(bitmap_alloc_full)
0278 #define hwloc_bitmap_free HWLOC_NAME(bitmap_free)
0279 #define hwloc_bitmap_dup HWLOC_NAME(bitmap_dup)
0280 #define hwloc_bitmap_copy HWLOC_NAME(bitmap_copy)
0281 #define hwloc_bitmap_snprintf HWLOC_NAME(bitmap_snprintf)
0282 #define hwloc_bitmap_asprintf HWLOC_NAME(bitmap_asprintf)
0283 #define hwloc_bitmap_sscanf HWLOC_NAME(bitmap_sscanf)
0284 #define hwloc_bitmap_list_snprintf HWLOC_NAME(bitmap_list_snprintf)
0285 #define hwloc_bitmap_list_asprintf HWLOC_NAME(bitmap_list_asprintf)
0286 #define hwloc_bitmap_list_sscanf HWLOC_NAME(bitmap_list_sscanf)
0287 #define hwloc_bitmap_taskset_snprintf HWLOC_NAME(bitmap_taskset_snprintf)
0288 #define hwloc_bitmap_taskset_asprintf HWLOC_NAME(bitmap_taskset_asprintf)
0289 #define hwloc_bitmap_taskset_sscanf HWLOC_NAME(bitmap_taskset_sscanf)
0290 #define hwloc_bitmap_zero HWLOC_NAME(bitmap_zero)
0291 #define hwloc_bitmap_fill HWLOC_NAME(bitmap_fill)
0292 #define hwloc_bitmap_from_ulong HWLOC_NAME(bitmap_from_ulong)
0293 #define hwloc_bitmap_from_ulongs HWLOC_NAME(bitmap_from_ulongs)
0294 #define hwloc_bitmap_from_ith_ulong HWLOC_NAME(bitmap_from_ith_ulong)
0295 #define hwloc_bitmap_to_ulong HWLOC_NAME(bitmap_to_ulong)
0296 #define hwloc_bitmap_to_ith_ulong HWLOC_NAME(bitmap_to_ith_ulong)
0297 #define hwloc_bitmap_to_ulongs HWLOC_NAME(bitmap_to_ulongs)
0298 #define hwloc_bitmap_nr_ulongs HWLOC_NAME(bitmap_nr_ulongs)
0299 #define hwloc_bitmap_only HWLOC_NAME(bitmap_only)
0300 #define hwloc_bitmap_allbut HWLOC_NAME(bitmap_allbut)
0301 #define hwloc_bitmap_set HWLOC_NAME(bitmap_set)
0302 #define hwloc_bitmap_set_range HWLOC_NAME(bitmap_set_range)
0303 #define hwloc_bitmap_set_ith_ulong HWLOC_NAME(bitmap_set_ith_ulong)
0304 #define hwloc_bitmap_clr HWLOC_NAME(bitmap_clr)
0305 #define hwloc_bitmap_clr_range HWLOC_NAME(bitmap_clr_range)
0306 #define hwloc_bitmap_isset HWLOC_NAME(bitmap_isset)
0307 #define hwloc_bitmap_iszero HWLOC_NAME(bitmap_iszero)
0308 #define hwloc_bitmap_isfull HWLOC_NAME(bitmap_isfull)
0309 #define hwloc_bitmap_isequal HWLOC_NAME(bitmap_isequal)
0310 #define hwloc_bitmap_intersects HWLOC_NAME(bitmap_intersects)
0311 #define hwloc_bitmap_isincluded HWLOC_NAME(bitmap_isincluded)
0312 #define hwloc_bitmap_or HWLOC_NAME(bitmap_or)
0313 #define hwloc_bitmap_and HWLOC_NAME(bitmap_and)
0314 #define hwloc_bitmap_andnot HWLOC_NAME(bitmap_andnot)
0315 #define hwloc_bitmap_xor HWLOC_NAME(bitmap_xor)
0316 #define hwloc_bitmap_not HWLOC_NAME(bitmap_not)
0317 #define hwloc_bitmap_first HWLOC_NAME(bitmap_first)
0318 #define hwloc_bitmap_last HWLOC_NAME(bitmap_last)
0319 #define hwloc_bitmap_next HWLOC_NAME(bitmap_next)
0320 #define hwloc_bitmap_first_unset HWLOC_NAME(bitmap_first_unset)
0321 #define hwloc_bitmap_last_unset HWLOC_NAME(bitmap_last_unset)
0322 #define hwloc_bitmap_next_unset HWLOC_NAME(bitmap_next_unset)
0323 #define hwloc_bitmap_singlify HWLOC_NAME(bitmap_singlify)
0324 #define hwloc_bitmap_compare_first HWLOC_NAME(bitmap_compare_first)
0325 #define hwloc_bitmap_compare HWLOC_NAME(bitmap_compare)
0326 #define hwloc_bitmap_weight HWLOC_NAME(bitmap_weight)
0327
0328
0329
0330 #define hwloc_get_type_or_below_depth HWLOC_NAME(get_type_or_below_depth)
0331 #define hwloc_get_type_or_above_depth HWLOC_NAME(get_type_or_above_depth)
0332 #define hwloc_get_root_obj HWLOC_NAME(get_root_obj)
0333 #define hwloc_get_ancestor_obj_by_depth HWLOC_NAME(get_ancestor_obj_by_depth)
0334 #define hwloc_get_ancestor_obj_by_type HWLOC_NAME(get_ancestor_obj_by_type)
0335 #define hwloc_get_next_obj_by_depth HWLOC_NAME(get_next_obj_by_depth)
0336 #define hwloc_get_next_obj_by_type HWLOC_NAME(get_next_obj_by_type)
0337 #define hwloc_bitmap_singlify_per_core HWLOC_NAME(bitmap_singlify_by_core)
0338 #define hwloc_get_pu_obj_by_os_index HWLOC_NAME(get_pu_obj_by_os_index)
0339 #define hwloc_get_numanode_obj_by_os_index HWLOC_NAME(get_numanode_obj_by_os_index)
0340 #define hwloc_get_next_child HWLOC_NAME(get_next_child)
0341 #define hwloc_get_common_ancestor_obj HWLOC_NAME(get_common_ancestor_obj)
0342 #define hwloc_obj_is_in_subtree HWLOC_NAME(obj_is_in_subtree)
0343 #define hwloc_get_first_largest_obj_inside_cpuset HWLOC_NAME(get_first_largest_obj_inside_cpuset)
0344 #define hwloc_get_largest_objs_inside_cpuset HWLOC_NAME(get_largest_objs_inside_cpuset)
0345 #define hwloc_get_next_obj_inside_cpuset_by_depth HWLOC_NAME(get_next_obj_inside_cpuset_by_depth)
0346 #define hwloc_get_next_obj_inside_cpuset_by_type HWLOC_NAME(get_next_obj_inside_cpuset_by_type)
0347 #define hwloc_get_obj_inside_cpuset_by_depth HWLOC_NAME(get_obj_inside_cpuset_by_depth)
0348 #define hwloc_get_obj_inside_cpuset_by_type HWLOC_NAME(get_obj_inside_cpuset_by_type)
0349 #define hwloc_get_nbobjs_inside_cpuset_by_depth HWLOC_NAME(get_nbobjs_inside_cpuset_by_depth)
0350 #define hwloc_get_nbobjs_inside_cpuset_by_type HWLOC_NAME(get_nbobjs_inside_cpuset_by_type)
0351 #define hwloc_get_obj_index_inside_cpuset HWLOC_NAME(get_obj_index_inside_cpuset)
0352 #define hwloc_get_child_covering_cpuset HWLOC_NAME(get_child_covering_cpuset)
0353 #define hwloc_get_obj_covering_cpuset HWLOC_NAME(get_obj_covering_cpuset)
0354 #define hwloc_get_next_obj_covering_cpuset_by_depth HWLOC_NAME(get_next_obj_covering_cpuset_by_depth)
0355 #define hwloc_get_next_obj_covering_cpuset_by_type HWLOC_NAME(get_next_obj_covering_cpuset_by_type)
0356 #define hwloc_obj_type_is_normal HWLOC_NAME(obj_type_is_normal)
0357 #define hwloc_obj_type_is_memory HWLOC_NAME(obj_type_is_memory)
0358 #define hwloc_obj_type_is_io HWLOC_NAME(obj_type_is_io)
0359 #define hwloc_obj_type_is_cache HWLOC_NAME(obj_type_is_cache)
0360 #define hwloc_obj_type_is_dcache HWLOC_NAME(obj_type_is_dcache)
0361 #define hwloc_obj_type_is_icache HWLOC_NAME(obj_type_is_icache)
0362 #define hwloc_get_cache_type_depth HWLOC_NAME(get_cache_type_depth)
0363 #define hwloc_get_cache_covering_cpuset HWLOC_NAME(get_cache_covering_cpuset)
0364 #define hwloc_get_shared_cache_covering_obj HWLOC_NAME(get_shared_cache_covering_obj)
0365 #define hwloc_get_closest_objs HWLOC_NAME(get_closest_objs)
0366 #define hwloc_get_obj_below_by_type HWLOC_NAME(get_obj_below_by_type)
0367 #define hwloc_get_obj_below_array_by_type HWLOC_NAME(get_obj_below_array_by_type)
0368 #define hwloc_get_obj_with_same_locality HWLOC_NAME(get_obj_with_same_locality)
0369 #define hwloc_distrib_flags_e HWLOC_NAME(distrib_flags_e)
0370 #define HWLOC_DISTRIB_FLAG_REVERSE HWLOC_NAME_CAPS(DISTRIB_FLAG_REVERSE)
0371 #define hwloc_distrib HWLOC_NAME(distrib)
0372 #define hwloc_alloc_membind_policy HWLOC_NAME(alloc_membind_policy)
0373 #define hwloc_alloc_membind_policy_nodeset HWLOC_NAME(alloc_membind_policy_nodeset)
0374 #define hwloc_topology_get_complete_cpuset HWLOC_NAME(topology_get_complete_cpuset)
0375 #define hwloc_topology_get_topology_cpuset HWLOC_NAME(topology_get_topology_cpuset)
0376 #define hwloc_topology_get_allowed_cpuset HWLOC_NAME(topology_get_allowed_cpuset)
0377 #define hwloc_topology_get_complete_nodeset HWLOC_NAME(topology_get_complete_nodeset)
0378 #define hwloc_topology_get_topology_nodeset HWLOC_NAME(topology_get_topology_nodeset)
0379 #define hwloc_topology_get_allowed_nodeset HWLOC_NAME(topology_get_allowed_nodeset)
0380 #define hwloc_cpuset_to_nodeset HWLOC_NAME(cpuset_to_nodeset)
0381 #define hwloc_cpuset_from_nodeset HWLOC_NAME(cpuset_from_nodeset)
0382
0383
0384
0385 #define hwloc_memattr_id_e HWLOC_NAME(memattr_id_e)
0386 #define HWLOC_MEMATTR_ID_CAPACITY HWLOC_NAME_CAPS(MEMATTR_ID_CAPACITY)
0387 #define HWLOC_MEMATTR_ID_LOCALITY HWLOC_NAME_CAPS(MEMATTR_ID_LOCALITY)
0388 #define HWLOC_MEMATTR_ID_BANDWIDTH HWLOC_NAME_CAPS(MEMATTR_ID_BANDWIDTH)
0389 #define HWLOC_MEMATTR_ID_LATENCY HWLOC_NAME_CAPS(MEMATTR_ID_LATENCY)
0390 #define HWLOC_MEMATTR_ID_READ_BANDWIDTH HWLOC_NAME_CAPS(MEMATTR_ID_READ_BANDWIDTH)
0391 #define HWLOC_MEMATTR_ID_WRITE_BANDWIDTH HWLOC_NAME_CAPS(MEMATTR_ID_WRITE_BANDWIDTH)
0392 #define HWLOC_MEMATTR_ID_READ_LATENCY HWLOC_NAME_CAPS(MEMATTR_ID_READ_LATENCY)
0393 #define HWLOC_MEMATTR_ID_WRITE_LATENCY HWLOC_NAME_CAPS(MEMATTR_ID_WRITE_LATENCY)
0394 #define HWLOC_MEMATTR_ID_MAX HWLOC_NAME_CAPS(MEMATTR_ID_MAX)
0395
0396 #define hwloc_memattr_id_t HWLOC_NAME(memattr_id_t)
0397 #define hwloc_memattr_get_by_name HWLOC_NAME(memattr_get_by_name)
0398
0399 #define hwloc_location HWLOC_NAME(location)
0400 #define hwloc_location_type_e HWLOC_NAME(location_type_e)
0401 #define HWLOC_LOCATION_TYPE_OBJECT HWLOC_NAME_CAPS(LOCATION_TYPE_OBJECT)
0402 #define HWLOC_LOCATION_TYPE_CPUSET HWLOC_NAME_CAPS(LOCATION_TYPE_CPUSET)
0403 #define hwloc_location_u HWLOC_NAME(location_u)
0404
0405 #define hwloc_memattr_get_value HWLOC_NAME(memattr_get_value)
0406 #define hwloc_memattr_get_best_target HWLOC_NAME(memattr_get_best_target)
0407 #define hwloc_memattr_get_best_initiator HWLOC_NAME(memattr_get_best_initiator)
0408
0409 #define hwloc_local_numanode_flag_e HWLOC_NAME(local_numanode_flag_e)
0410 #define HWLOC_LOCAL_NUMANODE_FLAG_LARGER_LOCALITY HWLOC_NAME_CAPS(LOCAL_NUMANODE_FLAG_LARGER_LOCALITY)
0411 #define HWLOC_LOCAL_NUMANODE_FLAG_SMALLER_LOCALITY HWLOC_NAME_CAPS(LOCAL_NUMANODE_FLAG_SMALLER_LOCALITY)
0412 #define HWLOC_LOCAL_NUMANODE_FLAG_ALL HWLOC_NAME_CAPS(LOCAL_NUMANODE_FLAG_ALL)
0413 #define hwloc_get_local_numanode_objs HWLOC_NAME(get_local_numanode_objs)
0414
0415 #define hwloc_memattr_get_name HWLOC_NAME(memattr_get_name)
0416 #define hwloc_memattr_get_flags HWLOC_NAME(memattr_get_flags)
0417 #define hwloc_memattr_flag_e HWLOC_NAME(memattr_flag_e)
0418 #define HWLOC_MEMATTR_FLAG_HIGHER_FIRST HWLOC_NAME_CAPS(MEMATTR_FLAG_HIGHER_FIRST)
0419 #define HWLOC_MEMATTR_FLAG_LOWER_FIRST HWLOC_NAME_CAPS(MEMATTR_FLAG_LOWER_FIRST)
0420 #define HWLOC_MEMATTR_FLAG_NEED_INITIATOR HWLOC_NAME_CAPS(MEMATTR_FLAG_NEED_INITIATOR)
0421 #define hwloc_memattr_register HWLOC_NAME(memattr_register)
0422 #define hwloc_memattr_set_value HWLOC_NAME(memattr_set_value)
0423 #define hwloc_memattr_get_targets HWLOC_NAME(memattr_get_targets)
0424 #define hwloc_memattr_get_initiators HWLOC_NAME(memattr_get_initiators)
0425
0426
0427
0428 #define hwloc_cpukinds_get_nr HWLOC_NAME(cpukinds_get_nr)
0429 #define hwloc_cpukinds_get_by_cpuset HWLOC_NAME(cpukinds_get_by_cpuset)
0430 #define hwloc_cpukinds_get_info HWLOC_NAME(cpukinds_get_info)
0431 #define hwloc_cpukinds_register HWLOC_NAME(cpukinds_register)
0432
0433
0434
0435 #define hwloc_topology_export_xml_flags_e HWLOC_NAME(topology_export_xml_flags_e)
0436 #define HWLOC_TOPOLOGY_EXPORT_XML_FLAG_V1 HWLOC_NAME_CAPS(TOPOLOGY_EXPORT_XML_FLAG_V1)
0437 #define hwloc_topology_export_xml HWLOC_NAME(topology_export_xml)
0438 #define hwloc_topology_export_xmlbuffer HWLOC_NAME(topology_export_xmlbuffer)
0439 #define hwloc_free_xmlbuffer HWLOC_NAME(free_xmlbuffer)
0440 #define hwloc_topology_set_userdata_export_callback HWLOC_NAME(topology_set_userdata_export_callback)
0441 #define hwloc_export_obj_userdata HWLOC_NAME(export_obj_userdata)
0442 #define hwloc_export_obj_userdata_base64 HWLOC_NAME(export_obj_userdata_base64)
0443 #define hwloc_topology_set_userdata_import_callback HWLOC_NAME(topology_set_userdata_import_callback)
0444
0445 #define hwloc_topology_export_synthetic_flags_e HWLOC_NAME(topology_export_synthetic_flags_e)
0446 #define HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_NO_EXTENDED_TYPES HWLOC_NAME_CAPS(TOPOLOGY_EXPORT_SYNTHETIC_FLAG_NO_EXTENDED_TYPES)
0447 #define HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_NO_ATTRS HWLOC_NAME_CAPS(TOPOLOGY_EXPORT_SYNTHETIC_FLAG_NO_ATTRS)
0448 #define HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_V1 HWLOC_NAME_CAPS(TOPOLOGY_EXPORT_SYNTHETIC_FLAG_V1)
0449 #define HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_IGNORE_MEMORY HWLOC_NAME_CAPS(TOPOLOGY_EXPORT_SYNTHETIC_FLAG_IGNORE_MEMORY)
0450 #define hwloc_topology_export_synthetic HWLOC_NAME(topology_export_synthetic)
0451
0452
0453
0454 #define hwloc_distances_s HWLOC_NAME(distances_s)
0455
0456 #define hwloc_distances_kind_e HWLOC_NAME(distances_kind_e)
0457 #define HWLOC_DISTANCES_KIND_FROM_OS HWLOC_NAME_CAPS(DISTANCES_KIND_FROM_OS)
0458 #define HWLOC_DISTANCES_KIND_FROM_USER HWLOC_NAME_CAPS(DISTANCES_KIND_FROM_USER)
0459 #define HWLOC_DISTANCES_KIND_MEANS_LATENCY HWLOC_NAME_CAPS(DISTANCES_KIND_MEANS_LATENCY)
0460 #define HWLOC_DISTANCES_KIND_MEANS_BANDWIDTH HWLOC_NAME_CAPS(DISTANCES_KIND_MEANS_BANDWIDTH)
0461 #define HWLOC_DISTANCES_KIND_HETEROGENEOUS_TYPES HWLOC_NAME_CAPS(DISTANCES_KIND_HETEROGENEOUS_TYPES)
0462
0463 #define hwloc_distances_get HWLOC_NAME(distances_get)
0464 #define hwloc_distances_get_by_depth HWLOC_NAME(distances_get_by_depth)
0465 #define hwloc_distances_get_by_type HWLOC_NAME(distances_get_by_type)
0466 #define hwloc_distances_get_by_name HWLOC_NAME(distances_get_by_name)
0467 #define hwloc_distances_get_name HWLOC_NAME(distances_get_name)
0468 #define hwloc_distances_release HWLOC_NAME(distances_release)
0469 #define hwloc_distances_obj_index HWLOC_NAME(distances_obj_index)
0470 #define hwloc_distances_obj_pair_values HWLOC_NAME(distances_pair_values)
0471
0472 #define hwloc_distances_transform_e HWLOC_NAME(distances_transform_e)
0473 #define HWLOC_DISTANCES_TRANSFORM_REMOVE_NULL HWLOC_NAME_CAPS(DISTANCES_TRANSFORM_REMOVE_NULL)
0474 #define HWLOC_DISTANCES_TRANSFORM_LINKS HWLOC_NAME_CAPS(DISTANCES_TRANSFORM_LINKS)
0475 #define HWLOC_DISTANCES_TRANSFORM_MERGE_SWITCH_PORTS HWLOC_NAME_CAPS(DISTANCES_TRANSFORM_MERGE_SWITCH_PORTS)
0476 #define HWLOC_DISTANCES_TRANSFORM_TRANSITIVE_CLOSURE HWLOC_NAME_CAPS(DISTANCES_TRANSFORM_TRANSITIVE_CLOSURE)
0477 #define hwloc_distances_transform HWLOC_NAME(distances_transform)
0478
0479 #define hwloc_distances_add_flag_e HWLOC_NAME(distances_add_flag_e)
0480 #define HWLOC_DISTANCES_ADD_FLAG_GROUP HWLOC_NAME_CAPS(DISTANCES_ADD_FLAG_GROUP)
0481 #define HWLOC_DISTANCES_ADD_FLAG_GROUP_INACCURATE HWLOC_NAME_CAPS(DISTANCES_ADD_FLAG_GROUP_INACCURATE)
0482
0483 #define hwloc_distances_add_handle_t HWLOC_NAME(distances_add_handle_t)
0484 #define hwloc_distances_add_create HWLOC_NAME(distances_add_create)
0485 #define hwloc_distances_add_values HWLOC_NAME(distances_add_values)
0486 #define hwloc_distances_add_commit HWLOC_NAME(distances_add_commit)
0487
0488 #define hwloc_distances_remove HWLOC_NAME(distances_remove)
0489 #define hwloc_distances_remove_by_depth HWLOC_NAME(distances_remove_by_depth)
0490 #define hwloc_distances_remove_by_type HWLOC_NAME(distances_remove_by_type)
0491 #define hwloc_distances_release_remove HWLOC_NAME(distances_release_remove)
0492
0493
0494
0495 #define hwloc_topology_diff_obj_attr_type_e HWLOC_NAME(topology_diff_obj_attr_type_e)
0496 #define hwloc_topology_diff_obj_attr_type_t HWLOC_NAME(topology_diff_obj_attr_type_t)
0497 #define HWLOC_TOPOLOGY_DIFF_OBJ_ATTR_SIZE HWLOC_NAME_CAPS(TOPOLOGY_DIFF_OBJ_ATTR_SIZE)
0498 #define HWLOC_TOPOLOGY_DIFF_OBJ_ATTR_NAME HWLOC_NAME_CAPS(TOPOLOGY_DIFF_OBJ_ATTR_NAME)
0499 #define HWLOC_TOPOLOGY_DIFF_OBJ_ATTR_INFO HWLOC_NAME_CAPS(TOPOLOGY_DIFF_OBJ_ATTR_INFO)
0500 #define hwloc_topology_diff_obj_attr_u HWLOC_NAME(topology_diff_obj_attr_u)
0501 #define hwloc_topology_diff_obj_attr_generic_s HWLOC_NAME(topology_diff_obj_attr_generic_s)
0502 #define hwloc_topology_diff_obj_attr_uint64_s HWLOC_NAME(topology_diff_obj_attr_uint64_s)
0503 #define hwloc_topology_diff_obj_attr_string_s HWLOC_NAME(topology_diff_obj_attr_string_s)
0504 #define hwloc_topology_diff_type_e HWLOC_NAME(topology_diff_type_e)
0505 #define hwloc_topology_diff_type_t HWLOC_NAME(topology_diff_type_t)
0506 #define HWLOC_TOPOLOGY_DIFF_OBJ_ATTR HWLOC_NAME_CAPS(TOPOLOGY_DIFF_OBJ_ATTR)
0507 #define HWLOC_TOPOLOGY_DIFF_TOO_COMPLEX HWLOC_NAME_CAPS(TOPOLOGY_DIFF_TOO_COMPLEX)
0508 #define hwloc_topology_diff_u HWLOC_NAME(topology_diff_u)
0509 #define hwloc_topology_diff_t HWLOC_NAME(topology_diff_t)
0510 #define hwloc_topology_diff_generic_s HWLOC_NAME(topology_diff_generic_s)
0511 #define hwloc_topology_diff_obj_attr_s HWLOC_NAME(topology_diff_obj_attr_s)
0512 #define hwloc_topology_diff_too_complex_s HWLOC_NAME(topology_diff_too_complex_s)
0513 #define hwloc_topology_diff_build HWLOC_NAME(topology_diff_build)
0514 #define hwloc_topology_diff_apply_flags_e HWLOC_NAME(topology_diff_apply_flags_e)
0515 #define HWLOC_TOPOLOGY_DIFF_APPLY_REVERSE HWLOC_NAME_CAPS(TOPOLOGY_DIFF_APPLY_REVERSE)
0516 #define hwloc_topology_diff_apply HWLOC_NAME(topology_diff_apply)
0517 #define hwloc_topology_diff_destroy HWLOC_NAME(topology_diff_destroy)
0518 #define hwloc_topology_diff_load_xml HWLOC_NAME(topology_diff_load_xml)
0519 #define hwloc_topology_diff_export_xml HWLOC_NAME(topology_diff_export_xml)
0520 #define hwloc_topology_diff_load_xmlbuffer HWLOC_NAME(topology_diff_load_xmlbuffer)
0521 #define hwloc_topology_diff_export_xmlbuffer HWLOC_NAME(topology_diff_export_xmlbuffer)
0522
0523
0524
0525 #define hwloc_shmem_topology_get_length HWLOC_NAME(shmem_topology_get_length)
0526 #define hwloc_shmem_topology_write HWLOC_NAME(shmem_topology_write)
0527 #define hwloc_shmem_topology_adopt HWLOC_NAME(shmem_topology_adopt)
0528
0529
0530
0531 #define hwloc_cpuset_to_glibc_sched_affinity HWLOC_NAME(cpuset_to_glibc_sched_affinity)
0532 #define hwloc_cpuset_from_glibc_sched_affinity HWLOC_NAME(cpuset_from_glibc_sched_affinity)
0533
0534
0535
0536 #define hwloc_cpuset_to_linux_libnuma_ulongs HWLOC_NAME(cpuset_to_linux_libnuma_ulongs)
0537 #define hwloc_nodeset_to_linux_libnuma_ulongs HWLOC_NAME(nodeset_to_linux_libnuma_ulongs)
0538 #define hwloc_cpuset_from_linux_libnuma_ulongs HWLOC_NAME(cpuset_from_linux_libnuma_ulongs)
0539 #define hwloc_nodeset_from_linux_libnuma_ulongs HWLOC_NAME(nodeset_from_linux_libnuma_ulongs)
0540 #define hwloc_cpuset_to_linux_libnuma_bitmask HWLOC_NAME(cpuset_to_linux_libnuma_bitmask)
0541 #define hwloc_nodeset_to_linux_libnuma_bitmask HWLOC_NAME(nodeset_to_linux_libnuma_bitmask)
0542 #define hwloc_cpuset_from_linux_libnuma_bitmask HWLOC_NAME(cpuset_from_linux_libnuma_bitmask)
0543 #define hwloc_nodeset_from_linux_libnuma_bitmask HWLOC_NAME(nodeset_from_linux_libnuma_bitmask)
0544
0545
0546
0547 #define hwloc_linux_set_tid_cpubind HWLOC_NAME(linux_set_tid_cpubind)
0548 #define hwloc_linux_get_tid_cpubind HWLOC_NAME(linux_get_tid_cpubind)
0549 #define hwloc_linux_get_tid_last_cpu_location HWLOC_NAME(linux_get_tid_last_cpu_location)
0550 #define hwloc_linux_read_path_as_cpumask HWLOC_NAME(linux_read_file_cpumask)
0551
0552
0553
0554 #define hwloc_windows_get_nr_processor_groups HWLOC_NAME(windows_get_nr_processor_groups)
0555 #define hwloc_windows_get_processor_group_cpuset HWLOC_NAME(windows_get_processor_group_cpuset)
0556
0557
0558
0559 #define hwloc_ibv_get_device_cpuset HWLOC_NAME(ibv_get_device_cpuset)
0560 #define hwloc_ibv_get_device_osdev HWLOC_NAME(ibv_get_device_osdev)
0561 #define hwloc_ibv_get_device_osdev_by_name HWLOC_NAME(ibv_get_device_osdev_by_name)
0562
0563
0564
0565 #define hwloc_cl_device_pci_bus_info_khr HWLOC_NAME(cl_device_pci_bus_info_khr)
0566 #define hwloc_cl_device_topology_amd HWLOC_NAME(cl_device_topology_amd)
0567 #define hwloc_opencl_get_device_pci_busid HWLOC_NAME(opencl_get_device_pci_ids)
0568 #define hwloc_opencl_get_device_cpuset HWLOC_NAME(opencl_get_device_cpuset)
0569 #define hwloc_opencl_get_device_osdev HWLOC_NAME(opencl_get_device_osdev)
0570 #define hwloc_opencl_get_device_osdev_by_index HWLOC_NAME(opencl_get_device_osdev_by_index)
0571
0572
0573
0574 #define hwloc_cuda_get_device_pci_ids HWLOC_NAME(cuda_get_device_pci_ids)
0575 #define hwloc_cuda_get_device_cpuset HWLOC_NAME(cuda_get_device_cpuset)
0576 #define hwloc_cuda_get_device_pcidev HWLOC_NAME(cuda_get_device_pcidev)
0577 #define hwloc_cuda_get_device_osdev HWLOC_NAME(cuda_get_device_osdev)
0578 #define hwloc_cuda_get_device_osdev_by_index HWLOC_NAME(cuda_get_device_osdev_by_index)
0579
0580
0581
0582 #define hwloc_cudart_get_device_pci_ids HWLOC_NAME(cudart_get_device_pci_ids)
0583 #define hwloc_cudart_get_device_cpuset HWLOC_NAME(cudart_get_device_cpuset)
0584 #define hwloc_cudart_get_device_pcidev HWLOC_NAME(cudart_get_device_pcidev)
0585 #define hwloc_cudart_get_device_osdev_by_index HWLOC_NAME(cudart_get_device_osdev_by_index)
0586
0587
0588
0589 #define hwloc_nvml_get_device_cpuset HWLOC_NAME(nvml_get_device_cpuset)
0590 #define hwloc_nvml_get_device_osdev HWLOC_NAME(nvml_get_device_osdev)
0591 #define hwloc_nvml_get_device_osdev_by_index HWLOC_NAME(nvml_get_device_osdev_by_index)
0592
0593
0594
0595 #define hwloc_rsmi_get_device_cpuset HWLOC_NAME(rsmi_get_device_cpuset)
0596 #define hwloc_rsmi_get_device_osdev HWLOC_NAME(rsmi_get_device_osdev)
0597 #define hwloc_rsmi_get_device_osdev_by_index HWLOC_NAME(rsmi_get_device_osdev_by_index)
0598
0599
0600
0601 #define hwloc_levelzero_get_device_cpuset HWLOC_NAME(levelzero_get_device_cpuset)
0602 #define hwloc_levelzero_get_device_osdev HWLOC_NAME(levelzero_get_device_osdev)
0603
0604
0605
0606 #define hwloc_gl_get_display_osdev_by_port_device HWLOC_NAME(gl_get_display_osdev_by_port_device)
0607 #define hwloc_gl_get_display_osdev_by_name HWLOC_NAME(gl_get_display_osdev_by_name)
0608 #define hwloc_gl_get_display_by_osdev HWLOC_NAME(gl_get_display_by_osdev)
0609
0610
0611
0612 #define hwloc_disc_phase_e HWLOC_NAME(disc_phase_e)
0613 #define HWLOC_DISC_PHASE_GLOBAL HWLOC_NAME_CAPS(DISC_PHASE_GLOBAL)
0614 #define HWLOC_DISC_PHASE_CPU HWLOC_NAME_CAPS(DISC_PHASE_CPU)
0615 #define HWLOC_DISC_PHASE_MEMORY HWLOC_NAME_CAPS(DISC_PHASE_MEMORY)
0616 #define HWLOC_DISC_PHASE_PCI HWLOC_NAME_CAPS(DISC_PHASE_PCI)
0617 #define HWLOC_DISC_PHASE_IO HWLOC_NAME_CAPS(DISC_PHASE_IO)
0618 #define HWLOC_DISC_PHASE_MISC HWLOC_NAME_CAPS(DISC_PHASE_MISC)
0619 #define HWLOC_DISC_PHASE_ANNOTATE HWLOC_NAME_CAPS(DISC_PHASE_ANNOTATE)
0620 #define HWLOC_DISC_PHASE_TWEAK HWLOC_NAME_CAPS(DISC_PHASE_TWEAK)
0621 #define hwloc_disc_phase_t HWLOC_NAME(disc_phase_t)
0622 #define hwloc_disc_component HWLOC_NAME(disc_component)
0623
0624 #define hwloc_disc_status_flag_e HWLOC_NAME(disc_status_flag_e)
0625 #define HWLOC_DISC_STATUS_FLAG_GOT_ALLOWED_RESOURCES HWLOC_NAME_CAPS(DISC_STATUS_FLAG_GOT_ALLOWED_RESOURCES)
0626 #define hwloc_disc_status HWLOC_NAME(disc_status)
0627
0628 #define hwloc_backend HWLOC_NAME(backend)
0629
0630 #define hwloc_backend_alloc HWLOC_NAME(backend_alloc)
0631 #define hwloc_backend_enable HWLOC_NAME(backend_enable)
0632
0633 #define hwloc_component_type_e HWLOC_NAME(component_type_e)
0634 #define HWLOC_COMPONENT_TYPE_DISC HWLOC_NAME_CAPS(COMPONENT_TYPE_DISC)
0635 #define HWLOC_COMPONENT_TYPE_XML HWLOC_NAME_CAPS(COMPONENT_TYPE_XML)
0636 #define hwloc_component_type_t HWLOC_NAME(component_type_t)
0637 #define hwloc_component HWLOC_NAME(component)
0638
0639 #define hwloc_plugin_check_namespace HWLOC_NAME(plugin_check_namespace)
0640
0641 #define hwloc_hide_errors HWLOC_NAME(hide_errors)
0642 #define hwloc__insert_object_by_cpuset HWLOC_NAME(_insert_object_by_cpuset)
0643 #define hwloc_insert_object_by_parent HWLOC_NAME(insert_object_by_parent)
0644 #define hwloc_alloc_setup_object HWLOC_NAME(alloc_setup_object)
0645 #define hwloc_obj_add_children_sets HWLOC_NAME(add_children_sets)
0646 #define hwloc_topology_reconnect HWLOC_NAME(topology_reconnect)
0647
0648 #define hwloc_filter_check_pcidev_subtype_important HWLOC_NAME(filter_check_pcidev_subtype_important)
0649 #define hwloc_filter_check_osdev_subtype_important HWLOC_NAME(filter_check_osdev_subtype_important)
0650 #define hwloc_filter_check_keep_object_type HWLOC_NAME(filter_check_keep_object_type)
0651 #define hwloc_filter_check_keep_object HWLOC_NAME(filter_check_keep_object)
0652
0653 #define hwloc_pcidisc_find_cap HWLOC_NAME(pcidisc_find_cap)
0654 #define hwloc_pcidisc_find_linkspeed HWLOC_NAME(pcidisc_find_linkspeed)
0655 #define hwloc_pcidisc_check_bridge_type HWLOC_NAME(pcidisc_check_bridge_type)
0656 #define hwloc_pcidisc_find_bridge_buses HWLOC_NAME(pcidisc_find_bridge_buses)
0657 #define hwloc_pcidisc_tree_insert_by_busid HWLOC_NAME(pcidisc_tree_insert_by_busid)
0658 #define hwloc_pcidisc_tree_attach HWLOC_NAME(pcidisc_tree_attach)
0659
0660 #define hwloc_pci_find_by_busid HWLOC_NAME(pcidisc_find_by_busid)
0661 #define hwloc_pci_find_parent_by_busid HWLOC_NAME(pcidisc_find_busid_parent)
0662
0663 #define hwloc_backend_distances_add_handle_t HWLOC_NAME(backend_distances_add_handle_t)
0664 #define hwloc_backend_distances_add_create HWLOC_NAME(backend_distances_add_create)
0665 #define hwloc_backend_distances_add_values HWLOC_NAME(backend_distances_add_values)
0666 #define hwloc_backend_distances_add_commit HWLOC_NAME(backend_distances_add_commit)
0667
0668
0669
0670 #define hwloc_distances_add HWLOC_NAME(distances_add)
0671
0672 #define hwloc_topology_insert_misc_object_by_parent HWLOC_NAME(topology_insert_misc_object_by_parent)
0673 #define hwloc_obj_cpuset_snprintf HWLOC_NAME(obj_cpuset_snprintf)
0674 #define hwloc_obj_type_sscanf HWLOC_NAME(obj_type_sscanf)
0675
0676 #define hwloc_set_membind_nodeset HWLOC_NAME(set_membind_nodeset)
0677 #define hwloc_get_membind_nodeset HWLOC_NAME(get_membind_nodeset)
0678 #define hwloc_set_proc_membind_nodeset HWLOC_NAME(set_proc_membind_nodeset)
0679 #define hwloc_get_proc_membind_nodeset HWLOC_NAME(get_proc_membind_nodeset)
0680 #define hwloc_set_area_membind_nodeset HWLOC_NAME(set_area_membind_nodeset)
0681 #define hwloc_get_area_membind_nodeset HWLOC_NAME(get_area_membind_nodeset)
0682 #define hwloc_alloc_membind_nodeset HWLOC_NAME(alloc_membind_nodeset)
0683
0684 #define hwloc_cpuset_to_nodeset_strict HWLOC_NAME(cpuset_to_nodeset_strict)
0685 #define hwloc_cpuset_from_nodeset_strict HWLOC_NAME(cpuset_from_nodeset_strict)
0686
0687
0688
0689 #define hwloc_debug_enabled HWLOC_NAME(debug_enabled)
0690 #define hwloc_debug HWLOC_NAME(debug)
0691
0692
0693
0694 #ifndef HWLOC_HAVE_CORRECT_SNPRINTF
0695 #define hwloc_snprintf HWLOC_NAME(snprintf)
0696 #endif
0697 #define hwloc_ffsl_manual HWLOC_NAME(ffsl_manual)
0698 #define hwloc_ffs32 HWLOC_NAME(ffs32)
0699 #define hwloc_ffsl_from_ffs32 HWLOC_NAME(ffsl_from_ffs32)
0700 #define hwloc_flsl_manual HWLOC_NAME(flsl_manual)
0701 #define hwloc_fls32 HWLOC_NAME(fls32)
0702 #define hwloc_flsl_from_fls32 HWLOC_NAME(flsl_from_fls32)
0703 #define hwloc_weight_long HWLOC_NAME(weight_long)
0704 #define hwloc_strncasecmp HWLOC_NAME(strncasecmp)
0705
0706 #define hwloc_bitmap_compare_inclusion HWLOC_NAME(bitmap_compare_inclusion)
0707
0708 #define hwloc_pci_class_string HWLOC_NAME(pci_class_string)
0709 #define hwloc_linux_pci_link_speed_from_string HWLOC_NAME(linux_pci_link_speed_from_string)
0710
0711 #define hwloc_cache_type_by_depth_type HWLOC_NAME(cache_type_by_depth_type)
0712 #define hwloc__obj_type_is_normal HWLOC_NAME(_obj_type_is_normal)
0713 #define hwloc__obj_type_is_memory HWLOC_NAME(_obj_type_is_memory)
0714 #define hwloc__obj_type_is_io HWLOC_NAME(_obj_type_is_io)
0715 #define hwloc__obj_type_is_special HWLOC_NAME(_obj_type_is_special)
0716
0717 #define hwloc__obj_type_is_cache HWLOC_NAME(_obj_type_is_cache)
0718 #define hwloc__obj_type_is_dcache HWLOC_NAME(_obj_type_is_dcache)
0719 #define hwloc__obj_type_is_icache HWLOC_NAME(_obj_type_is_icache)
0720
0721 #define hwloc__pci_link_speed HWLOC_NAME(_pci_link_speed)
0722
0723
0724
0725 #define hwloc_have_x86_cpuid HWLOC_NAME(have_x86_cpuid)
0726 #define hwloc_x86_cpuid HWLOC_NAME(x86_cpuid)
0727
0728
0729
0730 #define hwloc__xml_verbose HWLOC_NAME(_xml_verbose)
0731
0732 #define hwloc__xml_import_state_s HWLOC_NAME(_xml_import_state_s)
0733 #define hwloc__xml_import_state_t HWLOC_NAME(_xml_import_state_t)
0734 #define hwloc__xml_import_diff HWLOC_NAME(_xml_import_diff)
0735 #define hwloc_xml_backend_data_s HWLOC_NAME(xml_backend_data_s)
0736 #define hwloc__xml_export_state_s HWLOC_NAME(_xml_export_state_s)
0737 #define hwloc__xml_export_state_t HWLOC_NAME(_xml_export_state_t)
0738 #define hwloc__xml_export_data_s HWLOC_NAME(_xml_export_data_s)
0739 #define hwloc__xml_export_topology HWLOC_NAME(_xml_export_topology)
0740 #define hwloc__xml_export_diff HWLOC_NAME(_xml_export_diff)
0741
0742 #define hwloc_xml_callbacks HWLOC_NAME(xml_callbacks)
0743 #define hwloc_xml_component HWLOC_NAME(xml_component)
0744 #define hwloc_xml_callbacks_register HWLOC_NAME(xml_callbacks_register)
0745 #define hwloc_xml_callbacks_reset HWLOC_NAME(xml_callbacks_reset)
0746
0747 #define hwloc__xml_imported_v1distances_s HWLOC_NAME(_xml_imported_v1distances_s)
0748
0749
0750
0751 #define hwloc_disc_component_force_enable HWLOC_NAME(disc_component_force_enable)
0752 #define hwloc_disc_components_enable_others HWLOC_NAME(disc_components_instantiate_others)
0753
0754 #define hwloc_backends_is_thissystem HWLOC_NAME(backends_is_thissystem)
0755 #define hwloc_backends_find_callbacks HWLOC_NAME(backends_find_callbacks)
0756
0757 #define hwloc_topology_components_init HWLOC_NAME(topology_components_init)
0758 #define hwloc_backends_disable_all HWLOC_NAME(backends_disable_all)
0759 #define hwloc_topology_components_fini HWLOC_NAME(topology_components_fini)
0760
0761 #define hwloc_components_init HWLOC_NAME(components_init)
0762 #define hwloc_components_fini HWLOC_NAME(components_fini)
0763
0764
0765
0766 #define hwloc_xml_component HWLOC_NAME(xml_component)
0767 #define hwloc_synthetic_component HWLOC_NAME(synthetic_component)
0768
0769 #define hwloc_aix_component HWLOC_NAME(aix_component)
0770 #define hwloc_bgq_component HWLOC_NAME(bgq_component)
0771 #define hwloc_darwin_component HWLOC_NAME(darwin_component)
0772 #define hwloc_freebsd_component HWLOC_NAME(freebsd_component)
0773 #define hwloc_hpux_component HWLOC_NAME(hpux_component)
0774 #define hwloc_linux_component HWLOC_NAME(linux_component)
0775 #define hwloc_netbsd_component HWLOC_NAME(netbsd_component)
0776 #define hwloc_noos_component HWLOC_NAME(noos_component)
0777 #define hwloc_solaris_component HWLOC_NAME(solaris_component)
0778 #define hwloc_windows_component HWLOC_NAME(windows_component)
0779 #define hwloc_x86_component HWLOC_NAME(x86_component)
0780
0781 #define hwloc_cuda_component HWLOC_NAME(cuda_component)
0782 #define hwloc_gl_component HWLOC_NAME(gl_component)
0783 #define hwloc_levelzero_component HWLOC_NAME(levelzero_component)
0784 #define hwloc_nvml_component HWLOC_NAME(nvml_component)
0785 #define hwloc_rsmi_component HWLOC_NAME(rsmi_component)
0786 #define hwloc_opencl_component HWLOC_NAME(opencl_component)
0787 #define hwloc_pci_component HWLOC_NAME(pci_component)
0788
0789 #define hwloc_xml_libxml_component HWLOC_NAME(xml_libxml_component)
0790 #define hwloc_xml_nolibxml_component HWLOC_NAME(xml_nolibxml_component)
0791
0792
0793
0794 #define hwloc_internal_location_s HWLOC_NAME(internal_location_s)
0795
0796 #define hwloc_special_level_s HWLOC_NAME(special_level_s)
0797
0798 #define hwloc_pci_forced_locality_s HWLOC_NAME(pci_forced_locality_s)
0799 #define hwloc_pci_locality_s HWLOC_NAME(pci_locality_s)
0800
0801 #define hwloc_topology_forced_component_s HWLOC_NAME(topology_forced_component)
0802
0803 #define hwloc_alloc_root_sets HWLOC_NAME(alloc_root_sets)
0804 #define hwloc_setup_pu_level HWLOC_NAME(setup_pu_level)
0805 #define hwloc_get_sysctlbyname HWLOC_NAME(get_sysctlbyname)
0806 #define hwloc_get_sysctl HWLOC_NAME(get_sysctl)
0807 #define hwloc_fallback_nbprocessors HWLOC_NAME(fallback_nbprocessors)
0808 #define hwloc_fallback_memsize HWLOC_NAME(fallback_memsize)
0809
0810 #define hwloc__object_cpusets_compare_first HWLOC_NAME(_object_cpusets_compare_first)
0811 #define hwloc__reorder_children HWLOC_NAME(_reorder_children)
0812
0813 #define hwloc_topology_setup_defaults HWLOC_NAME(topology_setup_defaults)
0814 #define hwloc_topology_clear HWLOC_NAME(topology_clear)
0815
0816 #define hwloc__attach_memory_object HWLOC_NAME(insert_memory_object)
0817
0818 #define hwloc_get_obj_by_type_and_gp_index HWLOC_NAME(get_obj_by_type_and_gp_index)
0819
0820 #define hwloc_pci_discovery_init HWLOC_NAME(pci_discovery_init)
0821 #define hwloc_pci_discovery_prepare HWLOC_NAME(pci_discovery_prepare)
0822 #define hwloc_pci_discovery_exit HWLOC_NAME(pci_discovery_exit)
0823 #define hwloc_find_insert_io_parent_by_complete_cpuset HWLOC_NAME(hwloc_find_insert_io_parent_by_complete_cpuset)
0824
0825 #define hwloc__add_info HWLOC_NAME(_add_info)
0826 #define hwloc__add_info_nodup HWLOC_NAME(_add_info_nodup)
0827 #define hwloc__move_infos HWLOC_NAME(_move_infos)
0828 #define hwloc__free_infos HWLOC_NAME(_free_infos)
0829 #define hwloc__tma_dup_infos HWLOC_NAME(_tma_dup_infos)
0830
0831 #define hwloc_binding_hooks HWLOC_NAME(binding_hooks)
0832 #define hwloc_set_native_binding_hooks HWLOC_NAME(set_native_binding_hooks)
0833 #define hwloc_set_binding_hooks HWLOC_NAME(set_binding_hooks)
0834
0835 #define hwloc_set_linuxfs_hooks HWLOC_NAME(set_linuxfs_hooks)
0836 #define hwloc_set_bgq_hooks HWLOC_NAME(set_bgq_hooks)
0837 #define hwloc_set_solaris_hooks HWLOC_NAME(set_solaris_hooks)
0838 #define hwloc_set_aix_hooks HWLOC_NAME(set_aix_hooks)
0839 #define hwloc_set_windows_hooks HWLOC_NAME(set_windows_hooks)
0840 #define hwloc_set_darwin_hooks HWLOC_NAME(set_darwin_hooks)
0841 #define hwloc_set_freebsd_hooks HWLOC_NAME(set_freebsd_hooks)
0842 #define hwloc_set_netbsd_hooks HWLOC_NAME(set_netbsd_hooks)
0843 #define hwloc_set_hpux_hooks HWLOC_NAME(set_hpux_hooks)
0844
0845 #define hwloc_look_hardwired_fujitsu_k HWLOC_NAME(look_hardwired_fujitsu_k)
0846 #define hwloc_look_hardwired_fujitsu_fx10 HWLOC_NAME(look_hardwired_fujitsu_fx10)
0847 #define hwloc_look_hardwired_fujitsu_fx100 HWLOC_NAME(look_hardwired_fujitsu_fx100)
0848
0849 #define hwloc_add_uname_info HWLOC_NAME(add_uname_info)
0850 #define hwloc_free_unlinked_object HWLOC_NAME(free_unlinked_object)
0851 #define hwloc_free_object_and_children HWLOC_NAME(free_object_and_children)
0852 #define hwloc_free_object_siblings_and_children HWLOC_NAME(free_object_siblings_and_children)
0853
0854 #define hwloc_alloc_heap HWLOC_NAME(alloc_heap)
0855 #define hwloc_alloc_mmap HWLOC_NAME(alloc_mmap)
0856 #define hwloc_free_heap HWLOC_NAME(free_heap)
0857 #define hwloc_free_mmap HWLOC_NAME(free_mmap)
0858 #define hwloc_alloc_or_fail HWLOC_NAME(alloc_or_fail)
0859
0860 #define hwloc_internal_distances_s HWLOC_NAME(internal_distances_s)
0861 #define hwloc_internal_distances_init HWLOC_NAME(internal_distances_init)
0862 #define hwloc_internal_distances_prepare HWLOC_NAME(internal_distances_prepare)
0863 #define hwloc_internal_distances_dup HWLOC_NAME(internal_distances_dup)
0864 #define hwloc_internal_distances_refresh HWLOC_NAME(internal_distances_refresh)
0865 #define hwloc_internal_distances_destroy HWLOC_NAME(internal_distances_destroy)
0866 #define hwloc_internal_distances_add HWLOC_NAME(internal_distances_add)
0867 #define hwloc_internal_distances_add_by_index HWLOC_NAME(internal_distances_add_by_index)
0868 #define hwloc_internal_distances_invalidate_cached_objs HWLOC_NAME(hwloc_internal_distances_invalidate_cached_objs)
0869
0870 #define hwloc_internal_memattr_s HWLOC_NAME(internal_memattr_s)
0871 #define hwloc_internal_memattr_target_s HWLOC_NAME(internal_memattr_target_s)
0872 #define hwloc_internal_memattr_initiator_s HWLOC_NAME(internal_memattr_initiator_s)
0873 #define hwloc_internal_memattrs_init HWLOC_NAME(internal_memattrs_init)
0874 #define hwloc_internal_memattrs_prepare HWLOC_NAME(internal_memattrs_prepare)
0875 #define hwloc_internal_memattrs_dup HWLOC_NAME(internal_memattrs_dup)
0876 #define hwloc_internal_memattrs_destroy HWLOC_NAME(internal_memattrs_destroy)
0877 #define hwloc_internal_memattrs_need_refresh HWLOC_NAME(internal_memattrs_need_refresh)
0878 #define hwloc_internal_memattrs_refresh HWLOC_NAME(internal_memattrs_refresh)
0879 #define hwloc_internal_memattrs_guess_memory_tiers HWLOC_NAME(internal_memattrs_guess_memory_tiers)
0880
0881 #define hwloc_internal_cpukind_s HWLOC_NAME(internal_cpukind_s)
0882 #define hwloc_internal_cpukinds_init HWLOC_NAME(internal_cpukinds_init)
0883 #define hwloc_internal_cpukinds_destroy HWLOC_NAME(internal_cpukinds_destroy)
0884 #define hwloc_internal_cpukinds_dup HWLOC_NAME(internal_cpukinds_dup)
0885 #define hwloc_internal_cpukinds_register HWLOC_NAME(internal_cpukinds_register)
0886 #define hwloc_internal_cpukinds_rank HWLOC_NAME(internal_cpukinds_rank)
0887 #define hwloc_internal_cpukinds_restrict HWLOC_NAME(internal_cpukinds_restrict)
0888
0889 #define hwloc_encode_to_base64 HWLOC_NAME(encode_to_base64)
0890 #define hwloc_decode_from_base64 HWLOC_NAME(decode_from_base64)
0891
0892 #define hwloc_progname HWLOC_NAME(progname)
0893
0894 #define hwloc__topology_disadopt HWLOC_NAME(_topology_disadopt)
0895 #define hwloc__topology_dup HWLOC_NAME(_topology_dup)
0896
0897 #define hwloc_tma HWLOC_NAME(tma)
0898 #define hwloc_tma_malloc HWLOC_NAME(tma_malloc)
0899 #define hwloc_tma_calloc HWLOC_NAME(tma_calloc)
0900 #define hwloc_tma_strdup HWLOC_NAME(tma_strdup)
0901 #define hwloc_bitmap_tma_dup HWLOC_NAME(bitmap_tma_dup)
0902
0903
0904
0905 #define hwloc_solaris_chip_info_s HWLOC_NAME(solaris_chip_info_s)
0906 #define hwloc_solaris_get_chip_info HWLOC_NAME(solaris_get_chip_info)
0907
0908 #endif
0909
0910
0911 #ifdef __cplusplus
0912 }
0913 #endif
0914
0915
0916 #endif