1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.8"/>
<title>Hardware Locality (hwloc): hwloc.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Hardware Locality (hwloc)
 <span id="projectnumber">1.10.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.8 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">hwloc.h</div> </div>
</div><!--header-->
<div class="contents">
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="comment">/*</span></div>
<div class="line"><a name="l00002"></a><span class="lineno"> 2</span> <span class="comment"> * Copyright © 2009 CNRS</span></div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span> <span class="comment"> * Copyright © 2009-2014 Inria. All rights reserved.</span></div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="comment"> * Copyright © 2009-2012 Université Bordeaux 1</span></div>
<div class="line"><a name="l00005"></a><span class="lineno"> 5</span> <span class="comment"> * Copyright © 2009-2011 Cisco Systems, Inc. All rights reserved.</span></div>
<div class="line"><a name="l00006"></a><span class="lineno"> 6</span> <span class="comment"> * See COPYING in top-level directory.</span></div>
<div class="line"><a name="l00007"></a><span class="lineno"> 7</span> <span class="comment"> */</span></div>
<div class="line"><a name="l00008"></a><span class="lineno"> 8</span> </div>
<div class="line"><a name="l00009"></a><span class="lineno"> 9</span> <span class="comment">/*=====================================================================</span></div>
<div class="line"><a name="l00010"></a><span class="lineno"> 10</span> <span class="comment"> * PLEASE GO READ THE DOCUMENTATION!</span></div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span> <span class="comment"> * ------------------------------------------------</span></div>
<div class="line"><a name="l00012"></a><span class="lineno"> 12</span> <span class="comment"> * $tarball_directory/doc/doxygen-doc/</span></div>
<div class="line"><a name="l00013"></a><span class="lineno"> 13</span> <span class="comment"> * or</span></div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span> <span class="comment"> * http://www.open-mpi.org/projects/hwloc/doc/</span></div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span> <span class="comment"> *=====================================================================</span></div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span> <span class="comment"> * FAIR WARNING: Do NOT expect to be able to figure out all the</span></div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span> <span class="comment"> * subtleties of hwloc by simply reading function prototypes and</span></div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span> <span class="comment"> * constant descrptions here in this file.</span></div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00021"></a><span class="lineno"> 21</span> <span class="comment"> * Hwloc has wonderful documentation in both PDF and HTML formats for</span></div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span> <span class="comment"> * your reading pleasure. The formal documentation explains a LOT of</span></div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span> <span class="comment"> * hwloc-specific concepts, provides definitions, and discusses the</span></div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span> <span class="comment"> * "big picture" for many of the things that you'll find here in this</span></div>
<div class="line"><a name="l00025"></a><span class="lineno"> 25</span> <span class="comment"> * header file.</span></div>
<div class="line"><a name="l00026"></a><span class="lineno"> 26</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00027"></a><span class="lineno"> 27</span> <span class="comment"> * The PDF/HTML documentation was generated via Doxygen; much of what</span></div>
<div class="line"><a name="l00028"></a><span class="lineno"> 28</span> <span class="comment"> * you'll see in there is also here in this file. BUT THERE IS A LOT</span></div>
<div class="line"><a name="l00029"></a><span class="lineno"> 29</span> <span class="comment"> * THAT IS IN THE PDF/HTML THAT IS ***NOT*** IN hwloc.h!</span></div>
<div class="line"><a name="l00030"></a><span class="lineno"> 30</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00031"></a><span class="lineno"> 31</span> <span class="comment"> * There are entire paragraph-length descriptions, discussions, and</span></div>
<div class="line"><a name="l00032"></a><span class="lineno"> 32</span> <span class="comment"> * pretty prictures to explain subtle corner cases, provide concrete</span></div>
<div class="line"><a name="l00033"></a><span class="lineno"> 33</span> <span class="comment"> * examples, etc.</span></div>
<div class="line"><a name="l00034"></a><span class="lineno"> 34</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00035"></a><span class="lineno"> 35</span> <span class="comment"> * Please, go read the documentation. :-)</span></div>
<div class="line"><a name="l00036"></a><span class="lineno"> 36</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00037"></a><span class="lineno"> 37</span> <span class="comment"> * Moreover there are several examples of hwloc use under doc/examples</span></div>
<div class="line"><a name="l00038"></a><span class="lineno"> 38</span> <span class="comment"> * in the source tree.</span></div>
<div class="line"><a name="l00039"></a><span class="lineno"> 39</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00040"></a><span class="lineno"> 40</span> <span class="comment"> *=====================================================================*/</span></div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span> </div>
<div class="line"><a name="l00050"></a><span class="lineno"> 50</span> <span class="preprocessor">#ifndef HWLOC_H</span></div>
<div class="line"><a name="l00051"></a><span class="lineno"> 51</span> <span class="preprocessor">#define HWLOC_H</span></div>
<div class="line"><a name="l00052"></a><span class="lineno"> 52</span> </div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span> <span class="preprocessor">#include <hwloc/autogen/config.h></span></div>
<div class="line"><a name="l00054"></a><span class="lineno"> 54</span> <span class="preprocessor">#include <sys/types.h></span></div>
<div class="line"><a name="l00055"></a><span class="lineno"> 55</span> <span class="preprocessor">#include <stdio.h></span></div>
<div class="line"><a name="l00056"></a><span class="lineno"> 56</span> <span class="preprocessor">#include <string.h></span></div>
<div class="line"><a name="l00057"></a><span class="lineno"> 57</span> <span class="preprocessor">#include <limits.h></span></div>
<div class="line"><a name="l00058"></a><span class="lineno"> 58</span> </div>
<div class="line"><a name="l00059"></a><span class="lineno"> 59</span> <span class="comment">/*</span></div>
<div class="line"><a name="l00060"></a><span class="lineno"> 60</span> <span class="comment"> * Symbol transforms</span></div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span> <span class="comment"> */</span></div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span> <span class="preprocessor">#include <hwloc/rename.h></span></div>
<div class="line"><a name="l00063"></a><span class="lineno"> 63</span> </div>
<div class="line"><a name="l00064"></a><span class="lineno"> 64</span> <span class="comment">/*</span></div>
<div class="line"><a name="l00065"></a><span class="lineno"> 65</span> <span class="comment"> * Bitmap definitions</span></div>
<div class="line"><a name="l00066"></a><span class="lineno"> 66</span> <span class="comment"> */</span></div>
<div class="line"><a name="l00067"></a><span class="lineno"> 67</span> </div>
<div class="line"><a name="l00068"></a><span class="lineno"> 68</span> <span class="preprocessor">#include <hwloc/bitmap.h></span></div>
<div class="line"><a name="l00069"></a><span class="lineno"> 69</span> </div>
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span> </div>
<div class="line"><a name="l00071"></a><span class="lineno"> 71</span> <span class="preprocessor">#ifdef __cplusplus</span></div>
<div class="line"><a name="l00072"></a><span class="lineno"> 72</span> <span class="keyword">extern</span> <span class="stringliteral">"C"</span> {</div>
<div class="line"><a name="l00073"></a><span class="lineno"> 73</span> <span class="preprocessor">#endif</span></div>
<div class="line"><a name="l00074"></a><span class="lineno"> 74</span> </div>
<div class="line"><a name="l00075"></a><span class="lineno"> 75</span> </div>
<div class="line"><a name="l00081"></a><span class="lineno"><a class="line" href="a00072.html#ga8f4dfb8eef138af55dd1a0fa802e5476"> 81</a></span> <span class="preprocessor">#define HWLOC_API_VERSION 0x00010a00</span></div>
<div class="line"><a name="l00082"></a><span class="lineno"> 82</span> </div>
<div class="line"><a name="l00084"></a><span class="lineno"> 84</span> HWLOC_DECLSPEC <span class="keywordtype">unsigned</span> <a class="code" href="a00072.html#ga9c0b50c98add1adf57ed1ce85bb5190d">hwloc_get_api_version</a>(<span class="keywordtype">void</span>);</div>
<div class="line"><a name="l00085"></a><span class="lineno"> 85</span> </div>
<div class="line"><a name="l00087"></a><span class="lineno"><a class="line" href="a00072.html#gaac5bc1f46f55e10ef0141a68ce70e21f"> 87</a></span> <span class="preprocessor">#define HWLOC_COMPONENT_ABI 4</span></div>
<div class="line"><a name="l00088"></a><span class="lineno"> 88</span> </div>
<div class="line"><a name="l00122"></a><span class="lineno"><a class="line" href="a00073.html#ga4bbf39b68b6f568fb92739e7c0ea7801"> 122</a></span> <span class="keyword">typedef</span> <a class="code" href="a00096.html#gaa3c2bf4c776d603dcebbb61b0c923d84">hwloc_bitmap_t</a> <a class="code" href="a00073.html#ga4bbf39b68b6f568fb92739e7c0ea7801">hwloc_cpuset_t</a>;</div>
<div class="line"><a name="l00124"></a><span class="lineno"><a class="line" href="a00073.html#ga1f784433e9b606261f62d1134f6a3b25"> 124</a></span> <span class="keyword">typedef</span> <a class="code" href="a00096.html#gae991a108af01d408be2776c5b2c467b2">hwloc_const_bitmap_t</a> <a class="code" href="a00073.html#ga1f784433e9b606261f62d1134f6a3b25">hwloc_const_cpuset_t</a>;</div>
<div class="line"><a name="l00125"></a><span class="lineno"> 125</span> </div>
<div class="line"><a name="l00141"></a><span class="lineno"><a class="line" href="a00073.html#ga37e35730fa7e775b5bb0afe893d6d508"> 141</a></span> <span class="keyword">typedef</span> <a class="code" href="a00096.html#gaa3c2bf4c776d603dcebbb61b0c923d84">hwloc_bitmap_t</a> <a class="code" href="a00073.html#ga37e35730fa7e775b5bb0afe893d6d508">hwloc_nodeset_t</a>;</div>
<div class="line"><a name="l00144"></a><span class="lineno"><a class="line" href="a00073.html#ga2f5276235841ad66a79bedad16a5a10c"> 144</a></span> <span class="keyword">typedef</span> <a class="code" href="a00096.html#gae991a108af01d408be2776c5b2c467b2">hwloc_const_bitmap_t</a> <a class="code" href="a00073.html#ga2f5276235841ad66a79bedad16a5a10c">hwloc_const_nodeset_t</a>;</div>
<div class="line"><a name="l00145"></a><span class="lineno"> 145</span> </div>
<div class="line"><a name="l00160"></a><span class="lineno"><a class="line" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55"> 160</a></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> {</div>
<div class="line"><a name="l00161"></a><span class="lineno"> 161</span>  <span class="comment">/* ***************************************************************</span></div>
<div class="line"><a name="l00162"></a><span class="lineno"> 162</span> <span class="comment"> WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING</span></div>
<div class="line"><a name="l00163"></a><span class="lineno"> 163</span> <span class="comment"></span></div>
<div class="line"><a name="l00164"></a><span class="lineno"> 164</span> <span class="comment"> If new enum values are added here, you MUST also go update the</span></div>
<div class="line"><a name="l00165"></a><span class="lineno"> 165</span> <span class="comment"> obj_type_order[] and obj_order_type[] arrays in src/topology.c.</span></div>
<div class="line"><a name="l00166"></a><span class="lineno"> 166</span> <span class="comment"></span></div>
<div class="line"><a name="l00167"></a><span class="lineno"> 167</span> <span class="comment"> WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING</span></div>
<div class="line"><a name="l00168"></a><span class="lineno"> 168</span> <span class="comment"> *************************************************************** */</span></div>
<div class="line"><a name="l00169"></a><span class="lineno"> 169</span> </div>
<div class="line"><a name="l00170"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a3aa1b842d1fd4207ebce171f95a244ec"> 170</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a3aa1b842d1fd4207ebce171f95a244ec">HWLOC_OBJ_SYSTEM</a>, </div>
<div class="line"><a name="l00175"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a3f4e83ffc4a259354959ae8a9eaa2a80"> 175</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a3f4e83ffc4a259354959ae8a9eaa2a80">HWLOC_OBJ_MACHINE</a>, </div>
<div class="line"><a name="l00180"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55aaf0964881117bdedf1a5e9332cd120dd"> 180</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55aaf0964881117bdedf1a5e9332cd120dd">HWLOC_OBJ_NODE</a>, </div>
<div class="line"><a name="l00184"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a1ac6e07775ae4324b3fe9dbd72c785ec"> 184</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a1ac6e07775ae4324b3fe9dbd72c785ec">HWLOC_OBJ_SOCKET</a>, </div>
<div class="line"><a name="l00188"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a56ee0b7eca88f363b75b34fdde8c9ddc"> 188</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a56ee0b7eca88f363b75b34fdde8c9ddc">HWLOC_OBJ_CACHE</a>, </div>
<div class="line"><a name="l00191"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55ac793958f330bca371aa1535de8aff45f"> 191</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55ac793958f330bca371aa1535de8aff45f">HWLOC_OBJ_CORE</a>, </div>
<div class="line"><a name="l00195"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55abca6887e80cb291353b0a0c1da83f661"> 195</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55abca6887e80cb291353b0a0c1da83f661">HWLOC_OBJ_PU</a>, </div>
<div class="line"><a name="l00204"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a5269ef95be72f88465559d35c9b7ad56"> 204</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a5269ef95be72f88465559d35c9b7ad56">HWLOC_OBJ_GROUP</a>, </div>
<div class="line"><a name="l00216"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a19f8a6953fa91efc76bcbcdf2d22de4d"> 216</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a19f8a6953fa91efc76bcbcdf2d22de4d">HWLOC_OBJ_MISC</a>, </div>
<div class="line"><a name="l00221"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a6825f10895fea60aca7a6ba9fe273db0"> 221</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a6825f10895fea60aca7a6ba9fe273db0">HWLOC_OBJ_BRIDGE</a>, </div>
<div class="line"><a name="l00228"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a5d8117a54df1fbd3606ab19e42cb0ea9"> 228</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a5d8117a54df1fbd3606ab19e42cb0ea9">HWLOC_OBJ_PCI_DEVICE</a>, </div>
<div class="line"><a name="l00233"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a51e7280240fd9f25589cbbe538bdb075"> 233</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a51e7280240fd9f25589cbbe538bdb075">HWLOC_OBJ_OS_DEVICE</a>, </div>
<div class="line"><a name="l00239"></a><span class="lineno"><a class="line" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55addb5f843e1812445a84e6b2a844b1ebc"> 239</a></span>  <a class="code" href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55addb5f843e1812445a84e6b2a844b1ebc">HWLOC_OBJ_TYPE_MAX</a> </div>
<div class="line"><a name="l00241"></a><span class="lineno"> 241</span>  <span class="comment">/* ***************************************************************</span></div>
<div class="line"><a name="l00242"></a><span class="lineno"> 242</span> <span class="comment"> WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING</span></div>
<div class="line"><a name="l00243"></a><span class="lineno"> 243</span> <span class="comment"></span></div>
<div class="line"><a name="l00244"></a><span class="lineno"> 244</span> <span class="comment"> If new enum values are added here, you MUST also go update the</span></div>
<div class="line"><a name="l00245"></a><span class="lineno"> 245</span> <span class="comment"> obj_type_order[] and obj_order_type[] arrays in src/topology.c.</span></div>
<div class="line"><a name="l00246"></a><span class="lineno"> 246</span> <span class="comment"></span></div>
<div class="line"><a name="l00247"></a><span class="lineno"> 247</span> <span class="comment"> WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING</span></div>
<div class="line"><a name="l00248"></a><span class="lineno"> 248</span> <span class="comment"> *************************************************************** */</span></div>
<div class="line"><a name="l00249"></a><span class="lineno"> 249</span> } <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a>;</div>
<div class="line"><a name="l00250"></a><span class="lineno"> 250</span> </div>
<div class="line"><a name="l00252"></a><span class="lineno"><a class="line" href="a00074.html#ga791c9875c8fe20f3e1e5871e0657e59b"> 252</a></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="a00074.html#ga791c9875c8fe20f3e1e5871e0657e59b">hwloc_obj_cache_type_e</a> {</div>
<div class="line"><a name="l00253"></a><span class="lineno"><a class="line" href="a00074.html#gga791c9875c8fe20f3e1e5871e0657e59ba3900b3b2db54941aac249e5a638a2d7a"> 253</a></span>  <a class="code" href="a00074.html#gga791c9875c8fe20f3e1e5871e0657e59ba3900b3b2db54941aac249e5a638a2d7a">HWLOC_OBJ_CACHE_UNIFIED</a>, </div>
<div class="line"><a name="l00254"></a><span class="lineno"><a class="line" href="a00074.html#gga791c9875c8fe20f3e1e5871e0657e59bacac60ecad4206f85aeb79bef1604b488"> 254</a></span>  <a class="code" href="a00074.html#gga791c9875c8fe20f3e1e5871e0657e59bacac60ecad4206f85aeb79bef1604b488">HWLOC_OBJ_CACHE_DATA</a>, </div>
<div class="line"><a name="l00255"></a><span class="lineno"><a class="line" href="a00074.html#gga791c9875c8fe20f3e1e5871e0657e59ba6f98b0d422b38ba90c5f5c79a11b0658"> 255</a></span>  <a class="code" href="a00074.html#gga791c9875c8fe20f3e1e5871e0657e59ba6f98b0d422b38ba90c5f5c79a11b0658">HWLOC_OBJ_CACHE_INSTRUCTION</a> </div>
<div class="line"><a name="l00257"></a><span class="lineno"> 257</span> } <a class="code" href="a00074.html#gab6e1e7efedae8b341f3ee14fbe53d66c">hwloc_obj_cache_type_t</a>;</div>
<div class="line"><a name="l00258"></a><span class="lineno"> 258</span> </div>
<div class="line"><a name="l00260"></a><span class="lineno"><a class="line" href="a00074.html#ga48a4803c72574191d7ead1c62aaf9860"> 260</a></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="a00074.html#ga48a4803c72574191d7ead1c62aaf9860">hwloc_obj_bridge_type_e</a> {</div>
<div class="line"><a name="l00261"></a><span class="lineno"><a class="line" href="a00074.html#gga48a4803c72574191d7ead1c62aaf9860a2c7660f3864ad2810c1e72aad285e574"> 261</a></span>  <a class="code" href="a00074.html#gga48a4803c72574191d7ead1c62aaf9860a2c7660f3864ad2810c1e72aad285e574">HWLOC_OBJ_BRIDGE_HOST</a>, </div>
<div class="line"><a name="l00262"></a><span class="lineno"><a class="line" href="a00074.html#gga48a4803c72574191d7ead1c62aaf9860a8f3b4cecf3dab6073d74696d10863c60"> 262</a></span>  <a class="code" href="a00074.html#gga48a4803c72574191d7ead1c62aaf9860a8f3b4cecf3dab6073d74696d10863c60">HWLOC_OBJ_BRIDGE_PCI</a> </div>
<div class="line"><a name="l00263"></a><span class="lineno"> 263</span> } <a class="code" href="a00074.html#ga0a947e8c5adcc729b126bd09c01a0153">hwloc_obj_bridge_type_t</a>;</div>
<div class="line"><a name="l00264"></a><span class="lineno"> 264</span> </div>
<div class="line"><a name="l00266"></a><span class="lineno"><a class="line" href="a00074.html#ga64f5d539df299c97ae80ce53fc4b56c0"> 266</a></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="a00074.html#ga64f5d539df299c97ae80ce53fc4b56c0">hwloc_obj_osdev_type_e</a> {</div>
<div class="line"><a name="l00267"></a><span class="lineno"><a class="line" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a689b0488c3c0d08d116751c6b9cb8871"> 267</a></span>  <a class="code" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a689b0488c3c0d08d116751c6b9cb8871">HWLOC_OBJ_OSDEV_BLOCK</a>, </div>
<div class="line"><a name="l00269"></a><span class="lineno"><a class="line" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0aa3a09798ef2836abb236dc3a645ffc90"> 269</a></span>  <a class="code" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0aa3a09798ef2836abb236dc3a645ffc90">HWLOC_OBJ_OSDEV_GPU</a>, </div>
<div class="line"><a name="l00272"></a><span class="lineno"><a class="line" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0ab715d81155f771573c8682dffc65021b"> 272</a></span>  <a class="code" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0ab715d81155f771573c8682dffc65021b">HWLOC_OBJ_OSDEV_NETWORK</a>, </div>
<div class="line"><a name="l00274"></a><span class="lineno"><a class="line" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a52157d03694fdae82dddd57ca8c973b6"> 274</a></span>  <a class="code" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a52157d03694fdae82dddd57ca8c973b6">HWLOC_OBJ_OSDEV_OPENFABRICS</a>, </div>
<div class="line"><a name="l00276"></a><span class="lineno"><a class="line" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a827ad1643360711a8b6c6af671366791"> 276</a></span>  <a class="code" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a827ad1643360711a8b6c6af671366791">HWLOC_OBJ_OSDEV_DMA</a>, </div>
<div class="line"><a name="l00278"></a><span class="lineno"><a class="line" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a46f8927e1c3e137eaa86cc8f6861fb83"> 278</a></span>  <a class="code" href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a46f8927e1c3e137eaa86cc8f6861fb83">HWLOC_OBJ_OSDEV_COPROC</a> </div>
<div class="line"><a name="l00282"></a><span class="lineno"> 282</span> } <a class="code" href="a00074.html#ga90c1e82a60ba5871d07645169e636987">hwloc_obj_osdev_type_t</a>;</div>
<div class="line"><a name="l00283"></a><span class="lineno"> 283</span> </div>
<div class="line"><a name="l00301"></a><span class="lineno"> 301</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00074.html#ga1820ea0dfd8e9dca28f9ea7624df5ae2">hwloc_compare_types</a> (<a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type1, <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type2) __hwloc_attribute_const;</div>
<div class="line"><a name="l00302"></a><span class="lineno"> 302</span> </div>
<div class="line"><a name="l00303"></a><span class="lineno"><a class="line" href="a00074.html#ga46323568968005137c32f6a1cd405b74"> 303</a></span> <span class="keyword">enum</span> <a class="code" href="a00074.html#ga46323568968005137c32f6a1cd405b74">hwloc_compare_types_e</a> {</div>
<div class="line"><a name="l00304"></a><span class="lineno"><a class="line" href="a00074.html#gga46323568968005137c32f6a1cd405b74a2f8297ea36eba46e7596e810a67298fb"> 304</a></span>  <a class="code" href="a00074.html#gga46323568968005137c32f6a1cd405b74a2f8297ea36eba46e7596e810a67298fb">HWLOC_TYPE_UNORDERED</a> = INT_MAX </div>
<div class="line"><a name="l00305"></a><span class="lineno"> 305</span> };</div>
<div class="line"><a name="l00306"></a><span class="lineno"> 306</span> </div>
<div class="line"><a name="l00315"></a><span class="lineno"> 315</span> <span class="keyword">union </span><a class="code" href="a00037.html">hwloc_obj_attr_u</a>;</div>
<div class="line"><a name="l00316"></a><span class="lineno"> 316</span> </div>
<div class="line"><a name="l00318"></a><span class="lineno"><a class="line" href="a00040.html"> 318</a></span> <span class="keyword">struct </span><a class="code" href="a00040.html">hwloc_obj_memory_s</a> {</div>
<div class="line"><a name="l00319"></a><span class="lineno"><a class="line" href="a00040.html#a8befd0b3f4f8b695cafed04b31f36a44"> 319</a></span>  hwloc_uint64_t <a class="code" href="a00040.html#a8befd0b3f4f8b695cafed04b31f36a44">total_memory</a>; </div>
<div class="line"><a name="l00320"></a><span class="lineno"><a class="line" href="a00040.html#aace044c7f3fd9dffe50202296bf1dc5a"> 320</a></span>  hwloc_uint64_t <a class="code" href="a00040.html#aace044c7f3fd9dffe50202296bf1dc5a">local_memory</a>; </div>
<div class="line"><a name="l00323"></a><span class="lineno"><a class="line" href="a00040.html#a208c27f4491077d7fb9ba5db8b29cb57"> 323</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00040.html#a208c27f4491077d7fb9ba5db8b29cb57">page_types_len</a>;</div>
<div class="line"><a name="l00329"></a><span class="lineno"><a class="line" href="a00039.html"> 329</a></span>  <span class="keyword">struct </span><a class="code" href="a00039.html">hwloc_obj_memory_page_type_s</a> {</div>
<div class="line"><a name="l00330"></a><span class="lineno"><a class="line" href="a00039.html#a3f1d261766352288791512974665ce01"> 330</a></span>  hwloc_uint64_t <a class="code" href="a00039.html#a3f1d261766352288791512974665ce01">size</a>; </div>
<div class="line"><a name="l00331"></a><span class="lineno"><a class="line" href="a00039.html#aa5b9fa36f1dc47ff3c345fe4dd06b260"> 331</a></span>  hwloc_uint64_t <a class="code" href="a00039.html#aa5b9fa36f1dc47ff3c345fe4dd06b260">count</a>; </div>
<div class="line"><a name="l00332"></a><span class="lineno"> 332</span>  } * <a class="code" href="a00040.html#a865eba7b12b986d72dbe7a2cfd97c50d">page_types</a>;</div>
<div class="line"><a name="l00333"></a><span class="lineno"> 333</span> };</div>
<div class="line"><a name="l00334"></a><span class="lineno"> 334</span> </div>
<div class="line"><a name="l00339"></a><span class="lineno"><a class="line" href="a00036.html"> 339</a></span> <span class="keyword">struct </span><a class="code" href="a00036.html">hwloc_obj</a> {</div>
<div class="line"><a name="l00340"></a><span class="lineno"> 340</span>  <span class="comment">/* physical information */</span></div>
<div class="line"><a name="l00341"></a><span class="lineno"><a class="line" href="a00036.html#acc4f0803f244867e68fe0036800be5de"> 341</a></span>  <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> <a class="code" href="a00036.html#acc4f0803f244867e68fe0036800be5de">type</a>; </div>
<div class="line"><a name="l00342"></a><span class="lineno"><a class="line" href="a00036.html#a61a7a80a68eaccbaaa28269e678c81a9"> 342</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00036.html#a61a7a80a68eaccbaaa28269e678c81a9">os_index</a>; </div>
<div class="line"><a name="l00343"></a><span class="lineno"><a class="line" href="a00036.html#abb709ec38f2970677e4e57d1d30be96d"> 343</a></span>  <span class="keywordtype">char</span> *<a class="code" href="a00036.html#abb709ec38f2970677e4e57d1d30be96d">name</a>; </div>
<div class="line"><a name="l00345"></a><span class="lineno"><a class="line" href="a00036.html#a1dc830816716213b5f797e4052487864"> 345</a></span>  <span class="keyword">struct </span><a class="code" href="a00040.html">hwloc_obj_memory_s</a> <a class="code" href="a00036.html#a1dc830816716213b5f797e4052487864">memory</a>; </div>
<div class="line"><a name="l00347"></a><span class="lineno"><a class="line" href="a00036.html#accd40e29f71f19e88db62ea3df02adc8"> 347</a></span>  <span class="keyword">union </span><a class="code" href="a00037.html">hwloc_obj_attr_u</a> *<a class="code" href="a00036.html#accd40e29f71f19e88db62ea3df02adc8">attr</a>; </div>
<div class="line"><a name="l00350"></a><span class="lineno"> 350</span>  <span class="comment">/* global position */</span></div>
<div class="line"><a name="l00351"></a><span class="lineno"><a class="line" href="a00036.html#a9d82690370275d42d652eccdea5d3ee5"> 351</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00036.html#a9d82690370275d42d652eccdea5d3ee5">depth</a>; </div>
<div class="line"><a name="l00356"></a><span class="lineno"><a class="line" href="a00036.html#a0d07fb7b8935e137c94d75a3eb492ae9"> 356</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00036.html#a0d07fb7b8935e137c94d75a3eb492ae9">logical_index</a>; </div>
<div class="line"><a name="l00358"></a><span class="lineno"><a class="line" href="a00036.html#a68766f0b1c4d61b5bad87e3b81dacfde"> 358</a></span>  <span class="keywordtype">signed</span> <a class="code" href="a00036.html#a68766f0b1c4d61b5bad87e3b81dacfde">os_level</a>; </div>
<div class="line"><a name="l00360"></a><span class="lineno"> 360</span>  <span class="comment">/* cousins are all objects of the same type (and depth) across the entire topology */</span></div>
<div class="line"><a name="l00361"></a><span class="lineno"><a class="line" href="a00036.html#a85a788017457129589318b6c39451acf"> 361</a></span>  <span class="keyword">struct </span><a class="code" href="a00036.html">hwloc_obj</a> *<a class="code" href="a00036.html#a85a788017457129589318b6c39451acf">next_cousin</a>; </div>
<div class="line"><a name="l00362"></a><span class="lineno"><a class="line" href="a00036.html#ac715989f55ff5a0eb6be2969ee477ec0"> 362</a></span>  <span class="keyword">struct </span><a class="code" href="a00036.html">hwloc_obj</a> *<a class="code" href="a00036.html#ac715989f55ff5a0eb6be2969ee477ec0">prev_cousin</a>; </div>
<div class="line"><a name="l00364"></a><span class="lineno"> 364</span>  <span class="comment">/* children of the same parent are siblings, even if they may have different type and depth */</span></div>
<div class="line"><a name="l00365"></a><span class="lineno"><a class="line" href="a00036.html#adc494f6aed939992be1c55cca5822900"> 365</a></span>  <span class="keyword">struct </span><a class="code" href="a00036.html">hwloc_obj</a> *<a class="code" href="a00036.html#adc494f6aed939992be1c55cca5822900">parent</a>; </div>
<div class="line"><a name="l00366"></a><span class="lineno"><a class="line" href="a00036.html#aaa6043eee6f55869933c1d974efd9acd"> 366</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00036.html#aaa6043eee6f55869933c1d974efd9acd">sibling_rank</a>; </div>
<div class="line"><a name="l00367"></a><span class="lineno"><a class="line" href="a00036.html#a7f2343ed476fe4942e6fffd4cade1b40"> 367</a></span>  <span class="keyword">struct </span><a class="code" href="a00036.html">hwloc_obj</a> *<a class="code" href="a00036.html#a7f2343ed476fe4942e6fffd4cade1b40">next_sibling</a>; </div>
<div class="line"><a name="l00368"></a><span class="lineno"><a class="line" href="a00036.html#a7b89e8c189876c0158a9282aaaf17f50"> 368</a></span>  <span class="keyword">struct </span><a class="code" href="a00036.html">hwloc_obj</a> *<a class="code" href="a00036.html#a7b89e8c189876c0158a9282aaaf17f50">prev_sibling</a>; </div>
<div class="line"><a name="l00370"></a><span class="lineno"> 370</span>  <span class="comment">/* children array below this object */</span></div>
<div class="line"><a name="l00371"></a><span class="lineno"><a class="line" href="a00036.html#aac3f6da35c9b57599909a44ce2b716c1"> 371</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00036.html#aac3f6da35c9b57599909a44ce2b716c1">arity</a>; </div>
<div class="line"><a name="l00372"></a><span class="lineno"><a class="line" href="a00036.html#a04d05403da37bfe17cd63b7c7dd07b1f"> 372</a></span>  <span class="keyword">struct </span><a class="code" href="a00036.html">hwloc_obj</a> **<a class="code" href="a00036.html#a04d05403da37bfe17cd63b7c7dd07b1f">children</a>; </div>
<div class="line"><a name="l00373"></a><span class="lineno"><a class="line" href="a00036.html#af51d08a0a79dba517c06c5afedc8d2dc"> 373</a></span>  <span class="keyword">struct </span><a class="code" href="a00036.html">hwloc_obj</a> *<a class="code" href="a00036.html#af51d08a0a79dba517c06c5afedc8d2dc">first_child</a>; </div>
<div class="line"><a name="l00374"></a><span class="lineno"><a class="line" href="a00036.html#a84bd65634dbc55f4158b74443a9bd04f"> 374</a></span>  <span class="keyword">struct </span><a class="code" href="a00036.html">hwloc_obj</a> *<a class="code" href="a00036.html#a84bd65634dbc55f4158b74443a9bd04f">last_child</a>; </div>
<div class="line"><a name="l00376"></a><span class="lineno"> 376</span>  <span class="comment">/* misc */</span></div>
<div class="line"><a name="l00377"></a><span class="lineno"><a class="line" href="a00036.html#a76fd3ac94401cf32dfccc3a3a8de68a5"> 377</a></span>  <span class="keywordtype">void</span> *<a class="code" href="a00036.html#a76fd3ac94401cf32dfccc3a3a8de68a5">userdata</a>; </div>
<div class="line"><a name="l00382"></a><span class="lineno"> 382</span>  <span class="comment">/* cpusets and nodesets */</span></div>
<div class="line"><a name="l00383"></a><span class="lineno"><a class="line" href="a00036.html#a67925e0f2c47f50408fbdb9bddd0790f"> 383</a></span>  hwloc_cpuset_t <a class="code" href="a00036.html#a67925e0f2c47f50408fbdb9bddd0790f">cpuset</a>; </div>
<div class="line"><a name="l00396"></a><span class="lineno"><a class="line" href="a00036.html#a91788a9da687beb7224cc1fd7b75208c"> 396</a></span>  hwloc_cpuset_t <a class="code" href="a00036.html#a91788a9da687beb7224cc1fd7b75208c">complete_cpuset</a>; </div>
<div class="line"><a name="l00407"></a><span class="lineno"><a class="line" href="a00036.html#a8842d56c2975380f327ea401c5f53564"> 407</a></span>  hwloc_cpuset_t <a class="code" href="a00036.html#a8842d56c2975380f327ea401c5f53564">online_cpuset</a>; </div>
<div class="line"><a name="l00415"></a><span class="lineno"><a class="line" href="a00036.html#afa3c59a6dd3da8ffa48710780a1bfb34"> 415</a></span>  hwloc_cpuset_t <a class="code" href="a00036.html#afa3c59a6dd3da8ffa48710780a1bfb34">allowed_cpuset</a>; </div>
<div class="line"><a name="l00426"></a><span class="lineno"><a class="line" href="a00036.html#a08f0d0e16c619a6e653526cbee4ffea3"> 426</a></span>  hwloc_nodeset_t <a class="code" href="a00036.html#a08f0d0e16c619a6e653526cbee4ffea3">nodeset</a>; </div>
<div class="line"><a name="l00443"></a><span class="lineno"><a class="line" href="a00036.html#ac38c4012127525ef74c5615c526f4c2e"> 443</a></span>  hwloc_nodeset_t <a class="code" href="a00036.html#ac38c4012127525ef74c5615c526f4c2e">complete_nodeset</a>; </div>
<div class="line"><a name="l00457"></a><span class="lineno"><a class="line" href="a00036.html#a19e3d0a5951a7510fc4fc4722a9bf531"> 457</a></span>  hwloc_nodeset_t <a class="code" href="a00036.html#a19e3d0a5951a7510fc4fc4722a9bf531">allowed_nodeset</a>; </div>
<div class="line"><a name="l00470"></a><span class="lineno"><a class="line" href="a00036.html#a9a5dd75596edc48fe834f81988cdc0d6"> 470</a></span>  <span class="keyword">struct </span><a class="code" href="a00034.html">hwloc_distances_s</a> **<a class="code" href="a00036.html#a9a5dd75596edc48fe834f81988cdc0d6">distances</a>; </div>
<div class="line"><a name="l00471"></a><span class="lineno"><a class="line" href="a00036.html#a8be6f63eca4da91000c832280db927b7"> 471</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00036.html#a8be6f63eca4da91000c832280db927b7">distances_count</a>;</div>
<div class="line"><a name="l00472"></a><span class="lineno"> 472</span> </div>
<div class="line"><a name="l00473"></a><span class="lineno"><a class="line" href="a00036.html#ad59bcd73a10260a0e239be5c4b5888bb"> 473</a></span>  <span class="keyword">struct </span><a class="code" href="a00038.html">hwloc_obj_info_s</a> *<a class="code" href="a00036.html#ad59bcd73a10260a0e239be5c4b5888bb">infos</a>; </div>
<div class="line"><a name="l00474"></a><span class="lineno"><a class="line" href="a00036.html#a9843acc28cfbba903b63ea14b137ff70"> 474</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00036.html#a9843acc28cfbba903b63ea14b137ff70">infos_count</a>; </div>
<div class="line"><a name="l00476"></a><span class="lineno"><a class="line" href="a00036.html#a0f41a1d67dc6b661906f2217563637f3"> 476</a></span>  <span class="keywordtype">int</span> <a class="code" href="a00036.html#a0f41a1d67dc6b661906f2217563637f3">symmetric_subtree</a>; </div>
<div class="line"><a name="l00481"></a><span class="lineno"> 481</span> };</div>
<div class="line"><a name="l00485"></a><span class="lineno"><a class="line" href="a00075.html#ga79b8ab56877ef99ac59b833203391c7d"> 485</a></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="a00036.html">hwloc_obj</a> * <a class="code" href="a00075.html#ga79b8ab56877ef99ac59b833203391c7d">hwloc_obj_t</a>;</div>
<div class="line"><a name="l00486"></a><span class="lineno"> 486</span> </div>
<div class="line"><a name="l00488"></a><span class="lineno"><a class="line" href="a00037.html"> 488</a></span> <span class="keyword">union </span><a class="code" href="a00037.html">hwloc_obj_attr_u</a> {</div>
<div class="line"><a name="l00490"></a><span class="lineno"><a class="line" href="a00031.html"> 490</a></span>  <span class="keyword">struct </span><a class="code" href="a00031.html">hwloc_cache_attr_s</a> {</div>
<div class="line"><a name="l00491"></a><span class="lineno"><a class="line" href="a00031.html#abe5e788943ed04302976740c829674c0"> 491</a></span>  hwloc_uint64_t <a class="code" href="a00031.html#abe5e788943ed04302976740c829674c0">size</a>; </div>
<div class="line"><a name="l00492"></a><span class="lineno"><a class="line" href="a00031.html#a5c8f7f39193736c2187ed626940835d5"> 492</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00031.html#a5c8f7f39193736c2187ed626940835d5">depth</a>; </div>
<div class="line"><a name="l00493"></a><span class="lineno"><a class="line" href="a00031.html#a801e8a668e28caf06c8b88e9ae5c10db"> 493</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00031.html#a801e8a668e28caf06c8b88e9ae5c10db">linesize</a>; </div>
<div class="line"><a name="l00494"></a><span class="lineno"><a class="line" href="a00031.html#ad06525e474d1e2d1423ed71bb998592d"> 494</a></span>  <span class="keywordtype">int</span> <a class="code" href="a00031.html#ad06525e474d1e2d1423ed71bb998592d">associativity</a>; </div>
<div class="line"><a name="l00496"></a><span class="lineno"><a class="line" href="a00031.html#ad8edc8ded2b7a70d6abbc874801930f4"> 496</a></span>  <a class="code" href="a00074.html#gab6e1e7efedae8b341f3ee14fbe53d66c">hwloc_obj_cache_type_t</a> <a class="code" href="a00031.html#ad8edc8ded2b7a70d6abbc874801930f4">type</a>; </div>
<div class="line"><a name="l00497"></a><span class="lineno"> 497</span>  } <a class="code" href="a00037.html#ab5a8ae3bf490e6b1071fea53f7382836">cache</a>;</div>
<div class="line"><a name="l00499"></a><span class="lineno"><a class="line" href="a00035.html"> 499</a></span>  <span class="keyword">struct </span><a class="code" href="a00035.html">hwloc_group_attr_s</a> {</div>
<div class="line"><a name="l00500"></a><span class="lineno"><a class="line" href="a00035.html#ad914eac61c77481e1b7037877bcc5579"> 500</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00035.html#ad914eac61c77481e1b7037877bcc5579">depth</a>; </div>
<div class="line"><a name="l00501"></a><span class="lineno"> 501</span>  } <a class="code" href="a00037.html#ae4ba157cc313e2cdd9a82f1c1df7aaa6">group</a>;</div>
<div class="line"><a name="l00503"></a><span class="lineno"><a class="line" href="a00042.html"> 503</a></span>  <span class="keyword">struct </span><a class="code" href="a00042.html">hwloc_pcidev_attr_s</a> {</div>
<div class="line"><a name="l00504"></a><span class="lineno"><a class="line" href="a00042.html#a8fba44988deb98613c1505a4019a34dc"> 504</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> <a class="code" href="a00042.html#a8fba44988deb98613c1505a4019a34dc">domain</a>;</div>
<div class="line"><a name="l00505"></a><span class="lineno"><a class="line" href="a00042.html#a695f32df53f4ef728670bfcf31b74e0f"> 505</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00042.html#aae99e035e8d1387d7b8768aaa8eceb0a">bus</a>, <a class="code" href="a00042.html#a3d70c84a12f7e93d14c8d47bf4fd9dc5">dev</a>, <a class="code" href="a00042.html#a695f32df53f4ef728670bfcf31b74e0f">func</a>;</div>
<div class="line"><a name="l00506"></a><span class="lineno"><a class="line" href="a00042.html#aee735352d9f1686fd290fc6d6397c334"> 506</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> <a class="code" href="a00042.html#aee735352d9f1686fd290fc6d6397c334">class_id</a>;</div>
<div class="line"><a name="l00507"></a><span class="lineno"><a class="line" href="a00042.html#aad970ad19b62eb2d5df30e4802da4f4c"> 507</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> <a class="code" href="a00042.html#aad970ad19b62eb2d5df30e4802da4f4c">vendor_id</a>, <a class="code" href="a00042.html#a35b66064ab7d768caf7154e410caf0fa">device_id</a>, <a class="code" href="a00042.html#a499db3d8cc89eaba04fcaef3df1cba97">subvendor_id</a>, <a class="code" href="a00042.html#acac741aecd7a6db64f33409427e3971f">subdevice_id</a>;</div>
<div class="line"><a name="l00508"></a><span class="lineno"><a class="line" href="a00042.html#a13ad54c93d08d8ac808e4de9674c5ee7"> 508</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00042.html#a13ad54c93d08d8ac808e4de9674c5ee7">revision</a>;</div>
<div class="line"><a name="l00509"></a><span class="lineno"><a class="line" href="a00042.html#a59b2fce35f7cbde86c4fd305d0ccda5f"> 509</a></span>  <span class="keywordtype">float</span> <a class="code" href="a00042.html#a59b2fce35f7cbde86c4fd305d0ccda5f">linkspeed</a>; <span class="comment">/* in GB/s */</span></div>
<div class="line"><a name="l00510"></a><span class="lineno"> 510</span>  } <a class="code" href="a00037.html#a4203d713ce0f5beaa6ee0e9bdac70828">pcidev</a>;</div>
<div class="line"><a name="l00512"></a><span class="lineno"><a class="line" href="a00030.html"> 512</a></span>  <span class="keyword">struct </span><a class="code" href="a00030.html">hwloc_bridge_attr_s</a> {</div>
<div class="line"><a name="l00513"></a><span class="lineno"> 513</span>  <span class="keyword">union </span>{</div>
<div class="line"><a name="l00514"></a><span class="lineno"><a class="line" href="a00030.html#ab5c564e7c95b747dae9eb84ec0a2c31e"> 514</a></span>  <span class="keyword">struct </span><a class="code" href="a00042.html">hwloc_pcidev_attr_s</a> <a class="code" href="a00030.html#ab5c564e7c95b747dae9eb84ec0a2c31e">pci</a>;</div>
<div class="line"><a name="l00515"></a><span class="lineno"> 515</span>  } <a class="code" href="a00030.html#a00ce9d99fc8792d1044fe25dc58605fe">upstream</a>;</div>
<div class="line"><a name="l00516"></a><span class="lineno"><a class="line" href="a00030.html#a265dd2164aa2df4972e25a029da72125"> 516</a></span>  <a class="code" href="a00074.html#ga0a947e8c5adcc729b126bd09c01a0153">hwloc_obj_bridge_type_t</a> <a class="code" href="a00030.html#a265dd2164aa2df4972e25a029da72125">upstream_type</a>;</div>
<div class="line"><a name="l00517"></a><span class="lineno"> 517</span>  <span class="keyword">union </span>{</div>
<div class="line"><a name="l00518"></a><span class="lineno"> 518</span>  <span class="keyword">struct </span>{</div>
<div class="line"><a name="l00519"></a><span class="lineno"><a class="line" href="a00030.html#a2c31e565a5f0d23d0a0a3dd3ec8f4b17"> 519</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> <a class="code" href="a00030.html#a2c31e565a5f0d23d0a0a3dd3ec8f4b17">domain</a>;</div>
<div class="line"><a name="l00520"></a><span class="lineno"><a class="line" href="a00030.html#af3f3f7d76bf03e8d2afa721c2b8d6771"> 520</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00030.html#ae2d9dd73ef1d32045c584a8e66d2f83f">secondary_bus</a>, <a class="code" href="a00030.html#af3f3f7d76bf03e8d2afa721c2b8d6771">subordinate_bus</a>;</div>
<div class="line"><a name="l00521"></a><span class="lineno"> 521</span>  } <a class="code" href="a00030.html#ab5c564e7c95b747dae9eb84ec0a2c31e">pci</a>;</div>
<div class="line"><a name="l00522"></a><span class="lineno"> 522</span>  } <a class="code" href="a00030.html#acaf1ae02e37182bbb6966f8c4f35e499">downstream</a>;</div>
<div class="line"><a name="l00523"></a><span class="lineno"><a class="line" href="a00030.html#ac6a169b672d0e9f75756fd5665828b93"> 523</a></span>  <a class="code" href="a00074.html#ga0a947e8c5adcc729b126bd09c01a0153">hwloc_obj_bridge_type_t</a> <a class="code" href="a00030.html#ac6a169b672d0e9f75756fd5665828b93">downstream_type</a>;</div>
<div class="line"><a name="l00524"></a><span class="lineno"><a class="line" href="a00030.html#a336c8b22893d5d734d8c9dfca4066b46"> 524</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00030.html#a336c8b22893d5d734d8c9dfca4066b46">depth</a>;</div>
<div class="line"><a name="l00525"></a><span class="lineno"> 525</span>  } <a class="code" href="a00037.html#adbdf280699dd84c7619cd8d9edc0d958">bridge</a>;</div>
<div class="line"><a name="l00527"></a><span class="lineno"><a class="line" href="a00041.html"> 527</a></span>  <span class="keyword">struct </span><a class="code" href="a00041.html">hwloc_osdev_attr_s</a> {</div>
<div class="line"><a name="l00528"></a><span class="lineno"><a class="line" href="a00041.html#a31e019e27e54ac6138d04be639bb96f9"> 528</a></span>  <a class="code" href="a00074.html#ga90c1e82a60ba5871d07645169e636987">hwloc_obj_osdev_type_t</a> <a class="code" href="a00041.html#a31e019e27e54ac6138d04be639bb96f9">type</a>;</div>
<div class="line"><a name="l00529"></a><span class="lineno"> 529</span>  } <a class="code" href="a00037.html#a22904c25fe44b323bab5c9bc52660fca">osdev</a>;</div>
<div class="line"><a name="l00530"></a><span class="lineno"> 530</span> };</div>
<div class="line"><a name="l00531"></a><span class="lineno"> 531</span> </div>
<div class="line"><a name="l00546"></a><span class="lineno"><a class="line" href="a00034.html"> 546</a></span> <span class="keyword">struct </span><a class="code" href="a00034.html">hwloc_distances_s</a> {</div>
<div class="line"><a name="l00547"></a><span class="lineno"><a class="line" href="a00034.html#a6fe066eaf62ee448aa05bab8e7217ff7"> 547</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00034.html#a6fe066eaf62ee448aa05bab8e7217ff7">relative_depth</a>; </div>
<div class="line"><a name="l00549"></a><span class="lineno"><a class="line" href="a00034.html#a4ca2af858cebbce7324ec49903d09474"> 549</a></span>  <span class="keywordtype">unsigned</span> <a class="code" href="a00034.html#a4ca2af858cebbce7324ec49903d09474">nbobjs</a>; </div>
<div class="line"><a name="l00554"></a><span class="lineno"><a class="line" href="a00034.html#a0f70f48d1bfb18e5e2008825da2967c9"> 554</a></span>  <span class="keywordtype">float</span> *<a class="code" href="a00034.html#a0f70f48d1bfb18e5e2008825da2967c9">latency</a>; </div>
<div class="line"><a name="l00559"></a><span class="lineno"><a class="line" href="a00034.html#aab61bd1d1ae2e121bfe793c973ec829e"> 559</a></span>  <span class="keywordtype">float</span> <a class="code" href="a00034.html#aab61bd1d1ae2e121bfe793c973ec829e">latency_max</a>; </div>
<div class="line"><a name="l00560"></a><span class="lineno"><a class="line" href="a00034.html#a204416418049a272bfb51602fc676342"> 560</a></span>  <span class="keywordtype">float</span> <a class="code" href="a00034.html#a204416418049a272bfb51602fc676342">latency_base</a>; </div>
<div class="line"><a name="l00564"></a><span class="lineno"> 564</span> };</div>
<div class="line"><a name="l00565"></a><span class="lineno"> 565</span> </div>
<div class="line"><a name="l00567"></a><span class="lineno"><a class="line" href="a00038.html"> 567</a></span> <span class="keyword">struct </span><a class="code" href="a00038.html">hwloc_obj_info_s</a> {</div>
<div class="line"><a name="l00568"></a><span class="lineno"><a class="line" href="a00038.html#a115dde58f40338a2d3276d59c099857d"> 568</a></span>  <span class="keywordtype">char</span> *<a class="code" href="a00038.html#a115dde58f40338a2d3276d59c099857d">name</a>; </div>
<div class="line"><a name="l00569"></a><span class="lineno"><a class="line" href="a00038.html#a522efd7f5262a4493a73fa3476a041ce"> 569</a></span>  <span class="keywordtype">char</span> *<a class="code" href="a00038.html#a522efd7f5262a4493a73fa3476a041ce">value</a>; </div>
<div class="line"><a name="l00570"></a><span class="lineno"> 570</span> };</div>
<div class="line"><a name="l00571"></a><span class="lineno"> 571</span> </div>
<div class="line"><a name="l00580"></a><span class="lineno"> 580</span> <span class="keyword">struct </span>hwloc_topology;</div>
<div class="line"><a name="l00585"></a><span class="lineno"><a class="line" href="a00076.html#ga9d1e76ee15a7dee158b786c30b6a6e38"> 585</a></span> <span class="keyword">typedef</span> <span class="keyword">struct </span>hwloc_topology * <a class="code" href="a00076.html#ga9d1e76ee15a7dee158b786c30b6a6e38">hwloc_topology_t</a>;</div>
<div class="line"><a name="l00586"></a><span class="lineno"> 586</span> </div>
<div class="line"><a name="l00593"></a><span class="lineno"> 593</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00076.html#ga03fd4a16d8b9ee1ffc32b25fd2f6bdfa">hwloc_topology_init</a> (hwloc_topology_t *topologyp);</div>
<div class="line"><a name="l00594"></a><span class="lineno"> 594</span> </div>
<div class="line"><a name="l00612"></a><span class="lineno"> 612</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00076.html#gabdf58d87ad77f6615fccdfe0535ff826">hwloc_topology_load</a>(hwloc_topology_t topology);</div>
<div class="line"><a name="l00613"></a><span class="lineno"> 613</span> </div>
<div class="line"><a name="l00618"></a><span class="lineno"> 618</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> <a class="code" href="a00076.html#ga9f34a640b6fd28d23699d4d084667b15">hwloc_topology_destroy</a> (hwloc_topology_t topology);</div>
<div class="line"><a name="l00619"></a><span class="lineno"> 619</span> </div>
<div class="line"><a name="l00631"></a><span class="lineno"> 631</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> <a class="code" href="a00076.html#gaf6746bc3a558ef1ac8348b4491d091b5">hwloc_topology_check</a>(hwloc_topology_t topology);</div>
<div class="line"><a name="l00632"></a><span class="lineno"> 632</span> </div>
<div class="line"><a name="l00667"></a><span class="lineno"> 667</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#gafcf30842e8cb47b4c3dcaebecea31e17">hwloc_topology_ignore_type</a>(hwloc_topology_t topology, <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type);</div>
<div class="line"><a name="l00668"></a><span class="lineno"> 668</span> </div>
<div class="line"><a name="l00677"></a><span class="lineno"> 677</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#ga1f987bca941d6949faf7b1554dd7bc12">hwloc_topology_ignore_type_keep_structure</a>(hwloc_topology_t topology, <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type);</div>
<div class="line"><a name="l00678"></a><span class="lineno"> 678</span> </div>
<div class="line"><a name="l00686"></a><span class="lineno"> 686</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#ga7c9cf147442d65d755c664ccde3bb3ef">hwloc_topology_ignore_all_keep_structure</a>(hwloc_topology_t topology);</div>
<div class="line"><a name="l00687"></a><span class="lineno"> 687</span> </div>
<div class="line"><a name="l00693"></a><span class="lineno"><a class="line" href="a00077.html#gada025d3ec20b4b420f8038d23d6e7bde"> 693</a></span> <span class="keyword">enum</span> <a class="code" href="a00077.html#gada025d3ec20b4b420f8038d23d6e7bde">hwloc_topology_flags_e</a> {</div>
<div class="line"><a name="l00701"></a><span class="lineno"><a class="line" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea129b4fea1300be22bbaf0bb0958994c8"> 701</a></span>  <a class="code" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea129b4fea1300be22bbaf0bb0958994c8">HWLOC_TOPOLOGY_FLAG_WHOLE_SYSTEM</a> = (1UL<<0),</div>
<div class="line"><a name="l00702"></a><span class="lineno"> 702</span> </div>
<div class="line"><a name="l00721"></a><span class="lineno"><a class="line" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea6ecb6abc6a0bb75e81564f8bca85783b"> 721</a></span>  <a class="code" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea6ecb6abc6a0bb75e81564f8bca85783b">HWLOC_TOPOLOGY_FLAG_IS_THISSYSTEM</a> = (1UL<<1),</div>
<div class="line"><a name="l00722"></a><span class="lineno"> 722</span> </div>
<div class="line"><a name="l00733"></a><span class="lineno"><a class="line" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea46ae25e8896278840b1800ae9ce4de41"> 733</a></span>  <a class="code" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea46ae25e8896278840b1800ae9ce4de41">HWLOC_TOPOLOGY_FLAG_IO_DEVICES</a> = (1UL<<2),</div>
<div class="line"><a name="l00734"></a><span class="lineno"> 734</span> </div>
<div class="line"><a name="l00742"></a><span class="lineno"><a class="line" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea426b18c349f15d7046bb391d96fa947c"> 742</a></span>  <a class="code" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea426b18c349f15d7046bb391d96fa947c">HWLOC_TOPOLOGY_FLAG_IO_BRIDGES</a> = (1UL<<3),</div>
<div class="line"><a name="l00743"></a><span class="lineno"> 743</span> </div>
<div class="line"><a name="l00751"></a><span class="lineno"><a class="line" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea4a41dc181649ef81c2dcd44a54e271b9"> 751</a></span>  <a class="code" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea4a41dc181649ef81c2dcd44a54e271b9">HWLOC_TOPOLOGY_FLAG_WHOLE_IO</a> = (1UL<<4),</div>
<div class="line"><a name="l00752"></a><span class="lineno"> 752</span> </div>
<div class="line"><a name="l00759"></a><span class="lineno"><a class="line" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdeaae509a0bed4a7067e0116c75c661178d"> 759</a></span>  <a class="code" href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdeaae509a0bed4a7067e0116c75c661178d">HWLOC_TOPOLOGY_FLAG_ICACHES</a> = (1UL<<5)</div>
<div class="line"><a name="l00760"></a><span class="lineno"> 760</span> };</div>
<div class="line"><a name="l00761"></a><span class="lineno"> 761</span> </div>
<div class="line"><a name="l00771"></a><span class="lineno"> 771</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#gaaeed4df656979e5f16befea9d29b814b">hwloc_topology_set_flags</a> (hwloc_topology_t topology, <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> flags);</div>
<div class="line"><a name="l00772"></a><span class="lineno"> 772</span> </div>
<div class="line"><a name="l00779"></a><span class="lineno"> 779</span> HWLOC_DECLSPEC <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> <a class="code" href="a00077.html#ga09318f81c1d4713be907d64748a6f93c">hwloc_topology_get_flags</a> (hwloc_topology_t topology);</div>
<div class="line"><a name="l00780"></a><span class="lineno"> 780</span> </div>
<div class="line"><a name="l00795"></a><span class="lineno"> 795</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#ga341fc17b5867a4715570baab131f68cd">hwloc_topology_set_pid</a>(hwloc_topology_t __hwloc_restrict topology, hwloc_pid_t pid);</div>
<div class="line"><a name="l00796"></a><span class="lineno"> 796</span> </div>
<div class="line"><a name="l00823"></a><span class="lineno"> 823</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#gac0ea95d5f2ad78408bc267a0441c7c97">hwloc_topology_set_fsroot</a>(hwloc_topology_t __hwloc_restrict topology, <span class="keyword">const</span> <span class="keywordtype">char</span> * __hwloc_restrict fsroot_path);</div>
<div class="line"><a name="l00824"></a><span class="lineno"> 824</span> </div>
<div class="line"><a name="l00852"></a><span class="lineno"> 852</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#ga4fab186bb6181a00bcf585825fddd38d">hwloc_topology_set_synthetic</a>(hwloc_topology_t __hwloc_restrict topology, <span class="keyword">const</span> <span class="keywordtype">char</span> * __hwloc_restrict description);</div>
<div class="line"><a name="l00853"></a><span class="lineno"> 853</span> </div>
<div class="line"><a name="l00880"></a><span class="lineno"> 880</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#ga879439b7ee99407ee911b3ac64e9a25e">hwloc_topology_set_xml</a>(hwloc_topology_t __hwloc_restrict topology, <span class="keyword">const</span> <span class="keywordtype">char</span> * __hwloc_restrict xmlpath);</div>
<div class="line"><a name="l00881"></a><span class="lineno"> 881</span> </div>
<div class="line"><a name="l00908"></a><span class="lineno"> 908</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#ga2745616b65595e1c1e579ecc7e461fa8">hwloc_topology_set_xmlbuffer</a>(hwloc_topology_t __hwloc_restrict topology, <span class="keyword">const</span> <span class="keywordtype">char</span> * __hwloc_restrict buffer, <span class="keywordtype">int</span> size);</div>
<div class="line"><a name="l00909"></a><span class="lineno"> 909</span> </div>
<div class="line"><a name="l00929"></a><span class="lineno"> 929</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#gad1f15795219e2c3ca6d44ba0db604c4f">hwloc_topology_set_custom</a>(hwloc_topology_t topology);</div>
<div class="line"><a name="l00930"></a><span class="lineno"> 930</span> </div>
<div class="line"><a name="l00948"></a><span class="lineno"> 948</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#ga90ed5733946b2e9aba90d2e2c1fbfbd7">hwloc_topology_set_distance_matrix</a>(hwloc_topology_t __hwloc_restrict topology,</div>
<div class="line"><a name="l00949"></a><span class="lineno"> 949</span>  <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type, <span class="keywordtype">unsigned</span> nbobjs,</div>
<div class="line"><a name="l00950"></a><span class="lineno"> 950</span>  <span class="keywordtype">unsigned</span> *os_index, <span class="keywordtype">float</span> *distances);</div>
<div class="line"><a name="l00951"></a><span class="lineno"> 951</span> </div>
<div class="line"><a name="l00959"></a><span class="lineno"> 959</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00077.html#ga68ffdcfd9175cdf40709801092f18017">hwloc_topology_is_thissystem</a>(hwloc_topology_t __hwloc_restrict topology) __hwloc_attribute_pure;</div>
<div class="line"><a name="l00960"></a><span class="lineno"> 960</span> </div>
<div class="line"><a name="l00962"></a><span class="lineno"><a class="line" href="a00052.html"> 962</a></span> <span class="keyword">struct </span><a class="code" href="a00052.html">hwloc_topology_discovery_support</a> {</div>
<div class="line"><a name="l00964"></a><span class="lineno"><a class="line" href="a00052.html#ad7bb4ecf7a82f5a04fc632e9592ad3ab"> 964</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00052.html#ad7bb4ecf7a82f5a04fc632e9592ad3ab">pu</a>;</div>
<div class="line"><a name="l00965"></a><span class="lineno"> 965</span> };</div>
<div class="line"><a name="l00966"></a><span class="lineno"> 966</span> </div>
<div class="line"><a name="l00968"></a><span class="lineno"><a class="line" href="a00043.html"> 968</a></span> <span class="keyword">struct </span><a class="code" href="a00043.html">hwloc_topology_cpubind_support</a> {</div>
<div class="line"><a name="l00970"></a><span class="lineno"><a class="line" href="a00043.html#a9403d51657a4d546b3ea9553a2973a27"> 970</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#a9403d51657a4d546b3ea9553a2973a27">set_thisproc_cpubind</a>;</div>
<div class="line"><a name="l00972"></a><span class="lineno"><a class="line" href="a00043.html#a77a09ddd78ee3e9ff5f532a6ac74f7eb"> 972</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#a77a09ddd78ee3e9ff5f532a6ac74f7eb">get_thisproc_cpubind</a>;</div>
<div class="line"><a name="l00974"></a><span class="lineno"><a class="line" href="a00043.html#aa166223d1c2a6de7256ab2d8b675a87e"> 974</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#aa166223d1c2a6de7256ab2d8b675a87e">set_proc_cpubind</a>;</div>
<div class="line"><a name="l00976"></a><span class="lineno"><a class="line" href="a00043.html#aae705bc447adc163ead377362c4dfe9f"> 976</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#aae705bc447adc163ead377362c4dfe9f">get_proc_cpubind</a>;</div>
<div class="line"><a name="l00978"></a><span class="lineno"><a class="line" href="a00043.html#a57a89a4b5f1f74fa6cfe176f1e8b0798"> 978</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#a57a89a4b5f1f74fa6cfe176f1e8b0798">set_thisthread_cpubind</a>;</div>
<div class="line"><a name="l00980"></a><span class="lineno"><a class="line" href="a00043.html#a80d762e532d677dff262d83cc7bb1c60"> 980</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#a80d762e532d677dff262d83cc7bb1c60">get_thisthread_cpubind</a>;</div>
<div class="line"><a name="l00982"></a><span class="lineno"><a class="line" href="a00043.html#a46fba33e307909ce256624687799dd6d"> 982</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#a46fba33e307909ce256624687799dd6d">set_thread_cpubind</a>;</div>
<div class="line"><a name="l00984"></a><span class="lineno"><a class="line" href="a00043.html#a8dd4d8531ed2eebdce1507e7d104154e"> 984</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#a8dd4d8531ed2eebdce1507e7d104154e">get_thread_cpubind</a>;</div>
<div class="line"><a name="l00986"></a><span class="lineno"><a class="line" href="a00043.html#ad2d5c94b738d92b7d2ede87e4e96321d"> 986</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#ad2d5c94b738d92b7d2ede87e4e96321d">get_thisproc_last_cpu_location</a>;</div>
<div class="line"><a name="l00988"></a><span class="lineno"><a class="line" href="a00043.html#a2554620148b7992a5093f338f5ae254f"> 988</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#a2554620148b7992a5093f338f5ae254f">get_proc_last_cpu_location</a>;</div>
<div class="line"><a name="l00990"></a><span class="lineno"><a class="line" href="a00043.html#a6be1f042fdce6bf41b4ea39f6f193808"> 990</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00043.html#a6be1f042fdce6bf41b4ea39f6f193808">get_thisthread_last_cpu_location</a>;</div>
<div class="line"><a name="l00991"></a><span class="lineno"> 991</span> };</div>
<div class="line"><a name="l00992"></a><span class="lineno"> 992</span> </div>
<div class="line"><a name="l00994"></a><span class="lineno"><a class="line" href="a00053.html"> 994</a></span> <span class="keyword">struct </span><a class="code" href="a00053.html">hwloc_topology_membind_support</a> {</div>
<div class="line"><a name="l00996"></a><span class="lineno"><a class="line" href="a00053.html#a36b3e388df9c6a249427cab7e3724749"> 996</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#a36b3e388df9c6a249427cab7e3724749">set_thisproc_membind</a>;</div>
<div class="line"><a name="l00998"></a><span class="lineno"><a class="line" href="a00053.html#a3fd51e6fa5f0dd800322301b46b08559"> 998</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#a3fd51e6fa5f0dd800322301b46b08559">get_thisproc_membind</a>;</div>
<div class="line"><a name="l01000"></a><span class="lineno"><a class="line" href="a00053.html#a756f44912894b176bf979a1b65f12aac"> 1000</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#a756f44912894b176bf979a1b65f12aac">set_proc_membind</a>;</div>
<div class="line"><a name="l01002"></a><span class="lineno"><a class="line" href="a00053.html#a9880cd2d605e316fc020167c49ca69ad"> 1002</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#a9880cd2d605e316fc020167c49ca69ad">get_proc_membind</a>;</div>
<div class="line"><a name="l01004"></a><span class="lineno"><a class="line" href="a00053.html#a0697af2e41f2e82b8ce71e3cc13f7eac"> 1004</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#a0697af2e41f2e82b8ce71e3cc13f7eac">set_thisthread_membind</a>;</div>
<div class="line"><a name="l01006"></a><span class="lineno"><a class="line" href="a00053.html#a63b0b2e26157b472f5717ee93cc7c535"> 1006</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#a63b0b2e26157b472f5717ee93cc7c535">get_thisthread_membind</a>;</div>
<div class="line"><a name="l01008"></a><span class="lineno"><a class="line" href="a00053.html#a476c06f96b65c08b287cf2369966123b"> 1008</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#a476c06f96b65c08b287cf2369966123b">set_area_membind</a>;</div>
<div class="line"><a name="l01010"></a><span class="lineno"><a class="line" href="a00053.html#a0a84e24a06f2fa487fe8c9605c6f68b3"> 1010</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#a0a84e24a06f2fa487fe8c9605c6f68b3">get_area_membind</a>;</div>
<div class="line"><a name="l01012"></a><span class="lineno"><a class="line" href="a00053.html#ae551abb27d2aa9ce008583488b845b98"> 1012</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#ae551abb27d2aa9ce008583488b845b98">alloc_membind</a>;</div>
<div class="line"><a name="l01014"></a><span class="lineno"><a class="line" href="a00053.html#a221098c339dbfab27bd2c9f5d32f123b"> 1014</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#a221098c339dbfab27bd2c9f5d32f123b">firsttouch_membind</a>;</div>
<div class="line"><a name="l01016"></a><span class="lineno"><a class="line" href="a00053.html#ae7cdb1f1b5f0242a69f85b5a5538c764"> 1016</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#ae7cdb1f1b5f0242a69f85b5a5538c764">bind_membind</a>;</div>
<div class="line"><a name="l01018"></a><span class="lineno"><a class="line" href="a00053.html#a3c44c6012860bbeba8a0f4c19710858d"> 1018</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#a3c44c6012860bbeba8a0f4c19710858d">interleave_membind</a>;</div>
<div class="line"><a name="l01020"></a><span class="lineno"><a class="line" href="a00053.html#afe608fb85eb2aa9706221ccb5fc4d415"> 1020</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#afe608fb85eb2aa9706221ccb5fc4d415">replicate_membind</a>;</div>
<div class="line"><a name="l01022"></a><span class="lineno"><a class="line" href="a00053.html#ab0921af6e0cd6975812a80b8e5c7435c"> 1022</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#ab0921af6e0cd6975812a80b8e5c7435c">nexttouch_membind</a>;</div>
<div class="line"><a name="l01023"></a><span class="lineno"> 1023</span> </div>
<div class="line"><a name="l01025"></a><span class="lineno"><a class="line" href="a00053.html#aafa7683871a6a760246f9b35209caec5"> 1025</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="a00053.html#aafa7683871a6a760246f9b35209caec5">migrate_membind</a>;</div>
<div class="line"><a name="l01026"></a><span class="lineno"> 1026</span> };</div>
<div class="line"><a name="l01027"></a><span class="lineno"> 1027</span> </div>
<div class="line"><a name="l01034"></a><span class="lineno"><a class="line" href="a00054.html"> 1034</a></span> <span class="keyword">struct </span><a class="code" href="a00054.html">hwloc_topology_support</a> {</div>
<div class="line"><a name="l01035"></a><span class="lineno"><a class="line" href="a00054.html#aea3fbd7653d987d81f848636c420504d"> 1035</a></span>  <span class="keyword">struct </span><a class="code" href="a00052.html">hwloc_topology_discovery_support</a> *<a class="code" href="a00054.html#aea3fbd7653d987d81f848636c420504d">discovery</a>;</div>
<div class="line"><a name="l01036"></a><span class="lineno"><a class="line" href="a00054.html#adef2bb91f74c3e70a2a071393caf5f56"> 1036</a></span>  <span class="keyword">struct </span><a class="code" href="a00043.html">hwloc_topology_cpubind_support</a> *<a class="code" href="a00054.html#adef2bb91f74c3e70a2a071393caf5f56">cpubind</a>;</div>
<div class="line"><a name="l01037"></a><span class="lineno"><a class="line" href="a00054.html#ac6eb62ae8bc0a68dce679a7107a36194"> 1037</a></span>  <span class="keyword">struct </span><a class="code" href="a00053.html">hwloc_topology_membind_support</a> *<a class="code" href="a00054.html#ac6eb62ae8bc0a68dce679a7107a36194">membind</a>;</div>
<div class="line"><a name="l01038"></a><span class="lineno"> 1038</span> };</div>
<div class="line"><a name="l01039"></a><span class="lineno"> 1039</span> </div>
<div class="line"><a name="l01041"></a><span class="lineno"> 1041</span> HWLOC_DECLSPEC <span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="a00054.html">hwloc_topology_support</a> *<a class="code" href="a00077.html#gab8c76173c4a8ce1a9a9366012b1388e6">hwloc_topology_get_support</a>(hwloc_topology_t __hwloc_restrict topology);</div>
<div class="line"><a name="l01042"></a><span class="lineno"> 1042</span> </div>
<div class="line"><a name="l01053"></a><span class="lineno"> 1053</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> <a class="code" href="a00077.html#ga2cc7b7b155cba58dda203e54f1637b9c">hwloc_topology_set_userdata</a>(hwloc_topology_t topology, <span class="keyword">const</span> <span class="keywordtype">void</span> *userdata);</div>
<div class="line"><a name="l01054"></a><span class="lineno"> 1054</span> </div>
<div class="line"><a name="l01060"></a><span class="lineno"> 1060</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> * <a class="code" href="a00077.html#ga91f992f8d6c4905b2d3c4f43e509c2a3">hwloc_topology_get_userdata</a>(hwloc_topology_t topology);</div>
<div class="line"><a name="l01061"></a><span class="lineno"> 1061</span> </div>
<div class="line"><a name="l01079"></a><span class="lineno"> 1079</span> HWLOC_DECLSPEC <span class="keywordtype">unsigned</span> <a class="code" href="a00078.html#gafa4f8dbc4c2e74c0da8019446353eed1">hwloc_topology_get_depth</a>(hwloc_topology_t __hwloc_restrict topology) __hwloc_attribute_pure;</div>
<div class="line"><a name="l01080"></a><span class="lineno"> 1080</span> </div>
<div class="line"><a name="l01103"></a><span class="lineno"> 1103</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00078.html#ga8bec782e21be313750da70cf7428b374">hwloc_get_type_depth</a> (hwloc_topology_t topology, <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type);</div>
<div class="line"><a name="l01104"></a><span class="lineno"> 1104</span> </div>
<div class="line"><a name="l01105"></a><span class="lineno"><a class="line" href="a00078.html#gaf4e663cf42bbe20756b849c6293ef575"> 1105</a></span> <span class="keyword">enum</span> <a class="code" href="a00078.html#gaf4e663cf42bbe20756b849c6293ef575">hwloc_get_type_depth_e</a> {</div>
<div class="line"><a name="l01106"></a><span class="lineno"><a class="line" href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575a0565ab92ab72cb0cec91e23003294aad"> 1106</a></span>  <a class="code" href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575a0565ab92ab72cb0cec91e23003294aad">HWLOC_TYPE_DEPTH_UNKNOWN</a> = -1, </div>
<div class="line"><a name="l01107"></a><span class="lineno"><a class="line" href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575ae99465995cacde6c210d5fc2e409798c"> 1107</a></span>  <a class="code" href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575ae99465995cacde6c210d5fc2e409798c">HWLOC_TYPE_DEPTH_MULTIPLE</a> = -2, </div>
<div class="line"><a name="l01108"></a><span class="lineno"><a class="line" href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575af93b50182973e4a718d9d4db9e253a90"> 1108</a></span>  <a class="code" href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575af93b50182973e4a718d9d4db9e253a90">HWLOC_TYPE_DEPTH_BRIDGE</a> = -3, </div>
<div class="line"><a name="l01109"></a><span class="lineno"><a class="line" href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575ad8b1516e699b57ce1c8d107fbd2f674c"> 1109</a></span>  <a class="code" href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575ad8b1516e699b57ce1c8d107fbd2f674c">HWLOC_TYPE_DEPTH_PCI_DEVICE</a> = -4, </div>
<div class="line"><a name="l01110"></a><span class="lineno"><a class="line" href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575afe9a2131073eebbe129d4aa2928d3f46"> 1110</a></span>  <a class="code" href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575afe9a2131073eebbe129d4aa2928d3f46">HWLOC_TYPE_DEPTH_OS_DEVICE</a> = -5 </div>
<div class="line"><a name="l01111"></a><span class="lineno"> 1111</span> };</div>
<div class="line"><a name="l01112"></a><span class="lineno"> 1112</span> </div>
<div class="line"><a name="l01122"></a><span class="lineno"> 1122</span> <span class="keyword">static</span> __hwloc_inline <span class="keywordtype">int</span></div>
<div class="line"><a name="l01123"></a><span class="lineno"> 1123</span> <a class="code" href="a00078.html#ga8125328e69eba709c33ea8055c12589b">hwloc_get_type_or_below_depth</a> (hwloc_topology_t topology, <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type) __hwloc_attribute_pure;</div>
<div class="line"><a name="l01124"></a><span class="lineno"> 1124</span> </div>
<div class="line"><a name="l01134"></a><span class="lineno"> 1134</span> <span class="keyword">static</span> __hwloc_inline <span class="keywordtype">int</span></div>
<div class="line"><a name="l01135"></a><span class="lineno"> 1135</span> <a class="code" href="a00078.html#ga8a9ee573b7d2190272095d10712a7cca">hwloc_get_type_or_above_depth</a> (hwloc_topology_t topology, <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type) __hwloc_attribute_pure;</div>
<div class="line"><a name="l01136"></a><span class="lineno"> 1136</span> </div>
<div class="line"><a name="l01141"></a><span class="lineno"> 1141</span> HWLOC_DECLSPEC <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> <a class="code" href="a00078.html#ga8cc04ad9eb03b0b74d420adf8cc11ad2">hwloc_get_depth_type</a> (hwloc_topology_t topology, <span class="keywordtype">unsigned</span> depth) __hwloc_attribute_pure;</div>
<div class="line"><a name="l01142"></a><span class="lineno"> 1142</span> </div>
<div class="line"><a name="l01145"></a><span class="lineno"> 1145</span> HWLOC_DECLSPEC <span class="keywordtype">unsigned</span> <a class="code" href="a00078.html#gab17065e3d53455973844568d9f21c72c">hwloc_get_nbobjs_by_depth</a> (hwloc_topology_t topology, <span class="keywordtype">unsigned</span> depth) __hwloc_attribute_pure;</div>
<div class="line"><a name="l01146"></a><span class="lineno"> 1146</span> </div>
<div class="line"><a name="l01152"></a><span class="lineno"> 1152</span> <span class="keyword">static</span> __hwloc_inline <span class="keywordtype">int</span></div>
<div class="line"><a name="l01153"></a><span class="lineno"> 1153</span> <a class="code" href="a00078.html#ga789a3f65aedff644be64a18526a03065">hwloc_get_nbobjs_by_type</a> (hwloc_topology_t topology, <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type) __hwloc_attribute_pure;</div>
<div class="line"><a name="l01154"></a><span class="lineno"> 1154</span> </div>
<div class="line"><a name="l01160"></a><span class="lineno"> 1160</span> <span class="keyword">static</span> __hwloc_inline hwloc_obj_t</div>
<div class="line"><a name="l01161"></a><span class="lineno"> 1161</span> <a class="code" href="a00078.html#ga2d4b12fc187dfc53b35f2fa21d21044d">hwloc_get_root_obj</a> (hwloc_topology_t topology) __hwloc_attribute_pure;</div>
<div class="line"><a name="l01162"></a><span class="lineno"> 1162</span> </div>
<div class="line"><a name="l01164"></a><span class="lineno"> 1164</span> HWLOC_DECLSPEC hwloc_obj_t <a class="code" href="a00078.html#gabf8a98ad085460a4982cc7b74c344b71">hwloc_get_obj_by_depth</a> (hwloc_topology_t topology, <span class="keywordtype">unsigned</span> depth, <span class="keywordtype">unsigned</span> idx) __hwloc_attribute_pure;</div>
<div class="line"><a name="l01165"></a><span class="lineno"> 1165</span> </div>
<div class="line"><a name="l01172"></a><span class="lineno"> 1172</span> <span class="keyword">static</span> __hwloc_inline hwloc_obj_t</div>
<div class="line"><a name="l01173"></a><span class="lineno"> 1173</span> <a class="code" href="a00078.html#ga6f414dd80a2b943967a0ac92da3181a2">hwloc_get_obj_by_type</a> (hwloc_topology_t topology, <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type, <span class="keywordtype">unsigned</span> idx) __hwloc_attribute_pure;</div>
<div class="line"><a name="l01174"></a><span class="lineno"> 1174</span> </div>
<div class="line"><a name="l01179"></a><span class="lineno"> 1179</span> <span class="keyword">static</span> __hwloc_inline hwloc_obj_t</div>
<div class="line"><a name="l01180"></a><span class="lineno"> 1180</span> <a class="code" href="a00078.html#ga8cf03328ed09901a03664d9498177126">hwloc_get_next_obj_by_depth</a> (hwloc_topology_t topology, <span class="keywordtype">unsigned</span> depth, hwloc_obj_t prev);</div>
<div class="line"><a name="l01181"></a><span class="lineno"> 1181</span> </div>
<div class="line"><a name="l01188"></a><span class="lineno"> 1188</span> <span class="keyword">static</span> __hwloc_inline hwloc_obj_t</div>
<div class="line"><a name="l01189"></a><span class="lineno"> 1189</span> <a class="code" href="a00078.html#ga759e88eaf5a230ad283e9d4c42486735">hwloc_get_next_obj_by_type</a> (hwloc_topology_t topology, <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type,</div>
<div class="line"><a name="l01190"></a><span class="lineno"> 1190</span>  hwloc_obj_t prev);</div>
<div class="line"><a name="l01191"></a><span class="lineno"> 1191</span> </div>
<div class="line"><a name="l01201"></a><span class="lineno"> 1201</span> HWLOC_DECLSPEC <span class="keyword">const</span> <span class="keywordtype">char</span> * <a class="code" href="a00079.html#ga5ca0bf94bbbb080d0eff17a57bd90422">hwloc_obj_type_string</a> (<a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> type) __hwloc_attribute_const;</div>
<div class="line"><a name="l01202"></a><span class="lineno"> 1202</span> </div>
<div class="line"><a name="l01229"></a><span class="lineno"> 1229</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00079.html#ga8f8452fa8e707cad59b8a73a6fa06059">hwloc_obj_type_sscanf</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">string</span>,</div>
<div class="line"><a name="l01230"></a><span class="lineno"> 1230</span>  <a class="code" href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a> *typep,</div>
<div class="line"><a name="l01231"></a><span class="lineno"> 1231</span>  <span class="keywordtype">int</span> *depthattrp,</div>
<div class="line"><a name="l01232"></a><span class="lineno"> 1232</span>  <span class="keywordtype">void</span> *typeattrp, <span class="keywordtype">size_t</span> typeattrsize);</div>
<div class="line"><a name="l01233"></a><span class="lineno"> 1233</span> </div>
<div class="line"><a name="l01244"></a><span class="lineno"> 1244</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00079.html#gadb8765c260edea80c52cd06a76639ba4">hwloc_obj_type_snprintf</a>(<span class="keywordtype">char</span> * __hwloc_restrict <span class="keywordtype">string</span>, <span class="keywordtype">size_t</span> size, hwloc_obj_t obj,</div>
<div class="line"><a name="l01245"></a><span class="lineno"> 1245</span>  <span class="keywordtype">int</span> verbose);</div>
<div class="line"><a name="l01246"></a><span class="lineno"> 1246</span> </div>
<div class="line"><a name="l01258"></a><span class="lineno"> 1258</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00079.html#ga870e876931c282a1c7aee2f031912ce3">hwloc_obj_attr_snprintf</a>(<span class="keywordtype">char</span> * __hwloc_restrict <span class="keywordtype">string</span>, <span class="keywordtype">size_t</span> size, hwloc_obj_t obj, <span class="keyword">const</span> <span class="keywordtype">char</span> * __hwloc_restrict separator,</div>
<div class="line"><a name="l01259"></a><span class="lineno"> 1259</span>  <span class="keywordtype">int</span> verbose);</div>
<div class="line"><a name="l01260"></a><span class="lineno"> 1260</span> </div>
<div class="line"><a name="l01268"></a><span class="lineno"> 1268</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00079.html#ga8e0472dfa655c68c0c9072e1ee3a1e03">hwloc_obj_cpuset_snprintf</a>(<span class="keywordtype">char</span> * __hwloc_restrict str, <span class="keywordtype">size_t</span> size, <span class="keywordtype">size_t</span> nobj, <span class="keyword">const</span> hwloc_obj_t * __hwloc_restrict objs);</div>
<div class="line"><a name="l01269"></a><span class="lineno"> 1269</span> </div>
<div class="line"><a name="l01276"></a><span class="lineno"> 1276</span> <span class="keyword">static</span> __hwloc_inline <span class="keyword">const</span> <span class="keywordtype">char</span> *</div>
<div class="line"><a name="l01277"></a><span class="lineno"> 1277</span> <a class="code" href="a00079.html#gab358661a92bb27d8542b255cc9f6f25e">hwloc_obj_get_info_by_name</a>(hwloc_obj_t obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *name) __hwloc_attribute_pure;</div>
<div class="line"><a name="l01278"></a><span class="lineno"> 1278</span> </div>
<div class="line"><a name="l01293"></a><span class="lineno"> 1293</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> <a class="code" href="a00079.html#ga7e90c5398a9d77df31d7d45faf0f316b">hwloc_obj_add_info</a>(hwloc_obj_t obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *name, <span class="keyword">const</span> <span class="keywordtype">char</span> *value);</div>
<div class="line"><a name="l01294"></a><span class="lineno"> 1294</span> </div>
<div class="line"><a name="l01363"></a><span class="lineno"><a class="line" href="a00080.html#ga217dc8d373f8958cc93c154ebce1c71c"> 1363</a></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> {</div>
<div class="line"><a name="l01366"></a><span class="lineno"><a class="line" href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71ca2e0dd0128dac6b03408c7dd170477fdc"> 1366</a></span>  <a class="code" href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71ca2e0dd0128dac6b03408c7dd170477fdc">HWLOC_CPUBIND_PROCESS</a> = (1<<0),</div>
<div class="line"><a name="l01367"></a><span class="lineno"> 1367</span> </div>
<div class="line"><a name="l01370"></a><span class="lineno"><a class="line" href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71caf1b6bbad00d7b1017b918e3719f4d421"> 1370</a></span>  <a class="code" href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71caf1b6bbad00d7b1017b918e3719f4d421">HWLOC_CPUBIND_THREAD</a> = (1<<1),</div>
<div class="line"><a name="l01371"></a><span class="lineno"> 1371</span> </div>
<div class="line"><a name="l01395"></a><span class="lineno"><a class="line" href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71ca679a7e0f0c7ee06b123565f90d98e7fa"> 1395</a></span>  <a class="code" href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71ca679a7e0f0c7ee06b123565f90d98e7fa">HWLOC_CPUBIND_STRICT</a> = (1<<2),</div>
<div class="line"><a name="l01396"></a><span class="lineno"> 1396</span> </div>
<div class="line"><a name="l01412"></a><span class="lineno"><a class="line" href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71ca41ce440443cc3087caed95ab60edcad6"> 1412</a></span>  <a class="code" href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71ca41ce440443cc3087caed95ab60edcad6">HWLOC_CPUBIND_NOMEMBIND</a> = (1<<3)</div>
<div class="line"><a name="l01413"></a><span class="lineno"> 1413</span> } <a class="code" href="a00080.html#ga217dc8d373f8958cc93c154ebce1c71c">hwloc_cpubind_flags_t</a>;</div>
<div class="line"><a name="l01414"></a><span class="lineno"> 1414</span> </div>
<div class="line"><a name="l01420"></a><span class="lineno"> 1420</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00080.html#ga80bc07473a8edf840cae17bd7ec21d48">hwloc_set_cpubind</a>(hwloc_topology_t topology, hwloc_const_cpuset_t set, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01421"></a><span class="lineno"> 1421</span> </div>
<div class="line"><a name="l01427"></a><span class="lineno"> 1427</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00080.html#gacba7ecb979baf824d5240fa2cb2a8be6">hwloc_get_cpubind</a>(hwloc_topology_t topology, hwloc_cpuset_t set, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01428"></a><span class="lineno"> 1428</span> </div>
<div class="line"><a name="l01440"></a><span class="lineno"> 1440</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00080.html#ga296db8a3c6d49b51fb83d6f3e45c02a6">hwloc_set_proc_cpubind</a>(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_cpuset_t set, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01441"></a><span class="lineno"> 1441</span> </div>
<div class="line"><a name="l01453"></a><span class="lineno"> 1453</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00080.html#gac82de91f788fa82dacf99c6e0d4b7158">hwloc_get_proc_cpubind</a>(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01454"></a><span class="lineno"> 1454</span> </div>
<div class="line"><a name="l01455"></a><span class="lineno"> 1455</span> <span class="preprocessor">#ifdef hwloc_thread_t</span></div>
<div class="line"><a name="l01456"></a><span class="lineno"> 1456</span> </div>
<div class="line"><a name="l01463"></a><span class="lineno"> 1463</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00080.html#gae42c01b2addcfbf6048b9a516dd7a906">hwloc_set_thread_cpubind</a>(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_const_cpuset_t set, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01464"></a><span class="lineno"> 1464</span> <span class="preprocessor">#endif</span></div>
<div class="line"><a name="l01465"></a><span class="lineno"> 1465</span> </div>
<div class="line"><a name="l01466"></a><span class="lineno"> 1466</span> <span class="preprocessor">#ifdef hwloc_thread_t</span></div>
<div class="line"><a name="l01467"></a><span class="lineno"> 1467</span> </div>
<div class="line"><a name="l01474"></a><span class="lineno"> 1474</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00080.html#gaf13f765642b5d0d9a9813e6bb043671b">hwloc_get_thread_cpubind</a>(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_cpuset_t set, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01475"></a><span class="lineno"> 1475</span> <span class="preprocessor">#endif</span></div>
<div class="line"><a name="l01476"></a><span class="lineno"> 1476</span> </div>
<div class="line"><a name="l01490"></a><span class="lineno"> 1490</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00080.html#gafdb374627358bf09203b5a4215b13032">hwloc_get_last_cpu_location</a>(hwloc_topology_t topology, hwloc_cpuset_t set, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01491"></a><span class="lineno"> 1491</span> </div>
<div class="line"><a name="l01508"></a><span class="lineno"> 1508</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00080.html#ga910a05c2d47f68a3155bf176b50fa555">hwloc_get_proc_last_cpu_location</a>(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01509"></a><span class="lineno"> 1509</span> </div>
<div class="line"><a name="l01586"></a><span class="lineno"><a class="line" href="a00081.html#gac9764f79505775d06407b40f5e4661e8"> 1586</a></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> {</div>
<div class="line"><a name="l01589"></a><span class="lineno"><a class="line" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8a18675bb80ebc1bce5b652e9de8f3998c"> 1589</a></span>  <a class="code" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8a18675bb80ebc1bce5b652e9de8f3998c">HWLOC_MEMBIND_DEFAULT</a> = 0,</div>
<div class="line"><a name="l01590"></a><span class="lineno"> 1590</span> </div>
<div class="line"><a name="l01599"></a><span class="lineno"><a class="line" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8a979c7aa78dd32780858f30f47a72cca0"> 1599</a></span>  <a class="code" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8a979c7aa78dd32780858f30f47a72cca0">HWLOC_MEMBIND_FIRSTTOUCH</a> = 1,</div>
<div class="line"><a name="l01600"></a><span class="lineno"> 1600</span> </div>
<div class="line"><a name="l01603"></a><span class="lineno"><a class="line" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8ad811fa4b2a6002c4d63695a408ffde2c"> 1603</a></span>  <a class="code" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8ad811fa4b2a6002c4d63695a408ffde2c">HWLOC_MEMBIND_BIND</a> = 2,</div>
<div class="line"><a name="l01604"></a><span class="lineno"> 1604</span> </div>
<div class="line"><a name="l01612"></a><span class="lineno"><a class="line" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8ae370075e5af016d42310f87ea5af236b"> 1612</a></span>  <a class="code" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8ae370075e5af016d42310f87ea5af236b">HWLOC_MEMBIND_INTERLEAVE</a> = 3,</div>
<div class="line"><a name="l01613"></a><span class="lineno"> 1613</span> </div>
<div class="line"><a name="l01625"></a><span class="lineno"><a class="line" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8afb37480fe5f4236eb7dd4aef26f691e9"> 1625</a></span>  <a class="code" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8afb37480fe5f4236eb7dd4aef26f691e9">HWLOC_MEMBIND_REPLICATE</a> = 4,</div>
<div class="line"><a name="l01626"></a><span class="lineno"> 1626</span> </div>
<div class="line"><a name="l01632"></a><span class="lineno"><a class="line" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8aecdd4164d647708fbb51a00d98dbb138"> 1632</a></span>  <a class="code" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8aecdd4164d647708fbb51a00d98dbb138">HWLOC_MEMBIND_NEXTTOUCH</a> = 5,</div>
<div class="line"><a name="l01633"></a><span class="lineno"> 1633</span> </div>
<div class="line"><a name="l01638"></a><span class="lineno"><a class="line" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8a3185bd869b67817fb2bd5164bf360402"> 1638</a></span>  <a class="code" href="a00081.html#ggac9764f79505775d06407b40f5e4661e8a3185bd869b67817fb2bd5164bf360402">HWLOC_MEMBIND_MIXED</a> = -1</div>
<div class="line"><a name="l01639"></a><span class="lineno"> 1639</span> } <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a>;</div>
<div class="line"><a name="l01640"></a><span class="lineno"> 1640</span> </div>
<div class="line"><a name="l01654"></a><span class="lineno"><a class="line" href="a00081.html#gab00475fd98815bf4fb9aaf752030e7d2"> 1654</a></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> {</div>
<div class="line"><a name="l01659"></a><span class="lineno"><a class="line" href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2a1b1b74aef138f64aff214a8cbdfe8eb4"> 1659</a></span>  <a class="code" href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2a1b1b74aef138f64aff214a8cbdfe8eb4">HWLOC_MEMBIND_PROCESS</a> = (1<<0),</div>
<div class="line"><a name="l01660"></a><span class="lineno"> 1660</span> </div>
<div class="line"><a name="l01664"></a><span class="lineno"><a class="line" href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2a1dc7dd5cdcd5796893a325a524555298"> 1664</a></span>  <a class="code" href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2a1dc7dd5cdcd5796893a325a524555298">HWLOC_MEMBIND_THREAD</a> = (1<<1),</div>
<div class="line"><a name="l01665"></a><span class="lineno"> 1665</span> </div>
<div class="line"><a name="l01672"></a><span class="lineno"><a class="line" href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2a0335311a0ee04166df2888d52b4a42c6"> 1672</a></span>  <a class="code" href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2a0335311a0ee04166df2888d52b4a42c6">HWLOC_MEMBIND_STRICT</a> = (1<<2),</div>
<div class="line"><a name="l01673"></a><span class="lineno"> 1673</span> </div>
<div class="line"><a name="l01678"></a><span class="lineno"><a class="line" href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2aa6e49e54f52827cb143cc869cfd748af"> 1678</a></span>  <a class="code" href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2aa6e49e54f52827cb143cc869cfd748af">HWLOC_MEMBIND_MIGRATE</a> = (1<<3),</div>
<div class="line"><a name="l01679"></a><span class="lineno"> 1679</span> </div>
<div class="line"><a name="l01691"></a><span class="lineno"><a class="line" href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2aad6b9eaf2ee324ca58dc8f58094b9997"> 1691</a></span>  <a class="code" href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2aad6b9eaf2ee324ca58dc8f58094b9997">HWLOC_MEMBIND_NOCPUBIND</a> = (1<<4)</div>
<div class="line"><a name="l01692"></a><span class="lineno"> 1692</span> } <a class="code" href="a00081.html#gab00475fd98815bf4fb9aaf752030e7d2">hwloc_membind_flags_t</a>;</div>
<div class="line"><a name="l01693"></a><span class="lineno"> 1693</span> </div>
<div class="line"><a name="l01706"></a><span class="lineno"> 1706</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#ga5cac0bcbe770b43fc63a6b00ea4a7a9d">hwloc_set_membind_nodeset</a>(hwloc_topology_t topology, hwloc_const_nodeset_t nodeset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01707"></a><span class="lineno"> 1707</span> </div>
<div class="line"><a name="l01721"></a><span class="lineno"> 1721</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#ga53a493e13ad8e5f924b50c07713ee5df">hwloc_set_membind</a>(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01722"></a><span class="lineno"> 1722</span> </div>
<div class="line"><a name="l01763"></a><span class="lineno"> 1763</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#ga84ee275e84286d17a5853c52272a6a95">hwloc_get_membind_nodeset</a>(hwloc_topology_t topology, hwloc_nodeset_t nodeset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> * policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01764"></a><span class="lineno"> 1764</span> </div>
<div class="line"><a name="l01810"></a><span class="lineno"> 1810</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#gabf567d2e3b956591a43de0c1941943b0">hwloc_get_membind</a>(hwloc_topology_t topology, hwloc_cpuset_t cpuset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> * policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01811"></a><span class="lineno"> 1811</span> </div>
<div class="line"><a name="l01821"></a><span class="lineno"> 1821</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#ga21b042d94266a26a9c82b98c4bb30d01">hwloc_set_proc_membind_nodeset</a>(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_nodeset_t nodeset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01822"></a><span class="lineno"> 1822</span> </div>
<div class="line"><a name="l01832"></a><span class="lineno"> 1832</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#ga94b91473febe49fc7af09a0f4a72e53a">hwloc_set_proc_membind</a>(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_cpuset_t cpuset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01833"></a><span class="lineno"> 1833</span> </div>
<div class="line"><a name="l01870"></a><span class="lineno"> 1870</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#gac5075b7a2bf55f48f4622351817addad">hwloc_get_proc_membind_nodeset</a>(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_nodeset_t nodeset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> * policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01871"></a><span class="lineno"> 1871</span> </div>
<div class="line"><a name="l01911"></a><span class="lineno"> 1911</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#gada7b3bb7f278542dbb38dc3d6f527c29">hwloc_get_proc_membind</a>(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t cpuset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> * policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01912"></a><span class="lineno"> 1912</span> </div>
<div class="line"><a name="l01919"></a><span class="lineno"> 1919</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#ga7f11bd709ac0cb93af613e2dd84165ad">hwloc_set_area_membind_nodeset</a>(hwloc_topology_t topology, <span class="keyword">const</span> <span class="keywordtype">void</span> *addr, <span class="keywordtype">size_t</span> len, hwloc_const_nodeset_t nodeset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01920"></a><span class="lineno"> 1920</span> </div>
<div class="line"><a name="l01927"></a><span class="lineno"> 1927</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#ga93d2698ae5d7330be5e9f8ece6bc9b2c">hwloc_set_area_membind</a>(hwloc_topology_t topology, <span class="keyword">const</span> <span class="keywordtype">void</span> *addr, <span class="keywordtype">size_t</span> len, hwloc_const_cpuset_t cpuset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01928"></a><span class="lineno"> 1928</span> </div>
<div class="line"><a name="l01951"></a><span class="lineno"> 1951</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#ga5b674a9e043814bfd1c927fd0137fb19">hwloc_get_area_membind_nodeset</a>(hwloc_topology_t topology, <span class="keyword">const</span> <span class="keywordtype">void</span> *addr, <span class="keywordtype">size_t</span> len, hwloc_nodeset_t nodeset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> * policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01952"></a><span class="lineno"> 1952</span> </div>
<div class="line"><a name="l01977"></a><span class="lineno"> 1977</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#gaf75f365807447cfdc73e4e04e3469d84">hwloc_get_area_membind</a>(hwloc_topology_t topology, <span class="keyword">const</span> <span class="keywordtype">void</span> *addr, <span class="keywordtype">size_t</span> len, hwloc_cpuset_t cpuset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> * policy, <span class="keywordtype">int</span> flags);</div>
<div class="line"><a name="l01978"></a><span class="lineno"> 1978</span> </div>
<div class="line"><a name="l01986"></a><span class="lineno"> 1986</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> *<a class="code" href="a00081.html#ga972b335a86a7d5e7b34bce2b243c41bc">hwloc_alloc</a>(hwloc_topology_t topology, <span class="keywordtype">size_t</span> len);</div>
<div class="line"><a name="l01987"></a><span class="lineno"> 1987</span> </div>
<div class="line"><a name="l01999"></a><span class="lineno"> 1999</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> *<a class="code" href="a00081.html#ga0ff3076f7f3633637699b809bcceceb1">hwloc_alloc_membind_nodeset</a>(hwloc_topology_t topology, <span class="keywordtype">size_t</span> len, hwloc_const_nodeset_t nodeset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> policy, <span class="keywordtype">int</span> flags) __hwloc_attribute_malloc;</div>
<div class="line"><a name="l02000"></a><span class="lineno"> 2000</span> </div>
<div class="line"><a name="l02012"></a><span class="lineno"> 2012</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> *<a class="code" href="a00081.html#ga1058b0b9216bc6fd9c3734ea9dca1e54">hwloc_alloc_membind</a>(hwloc_topology_t topology, <span class="keywordtype">size_t</span> len, hwloc_const_cpuset_t cpuset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> policy, <span class="keywordtype">int</span> flags) __hwloc_attribute_malloc;</div>
<div class="line"><a name="l02013"></a><span class="lineno"> 2013</span> </div>
<div class="line"><a name="l02020"></a><span class="lineno"> 2020</span> <span class="keyword">static</span> __hwloc_inline <span class="keywordtype">void</span> *</div>
<div class="line"><a name="l02021"></a><span class="lineno"> 2021</span> <a class="code" href="a00081.html#ga7d473e80f11d774421688e36e9926136">hwloc_alloc_membind_policy_nodeset</a>(hwloc_topology_t topology, <span class="keywordtype">size_t</span> len, hwloc_const_nodeset_t nodeset, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> policy, <span class="keywordtype">int</span> flags) __hwloc_attribute_malloc;</div>
<div class="line"><a name="l02022"></a><span class="lineno"> 2022</span> </div>
<div class="line"><a name="l02027"></a><span class="lineno"> 2027</span> <span class="keyword">static</span> __hwloc_inline <span class="keywordtype">void</span> *</div>
<div class="line"><a name="l02028"></a><span class="lineno"> 2028</span> <a class="code" href="a00081.html#ga4f7240065719cf923eb0cc078afcdcc2">hwloc_alloc_membind_policy</a>(hwloc_topology_t topology, <span class="keywordtype">size_t</span> len, hwloc_const_cpuset_t set, <a class="code" href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a> policy, <span class="keywordtype">int</span> flags) __hwloc_attribute_malloc;</div>
<div class="line"><a name="l02029"></a><span class="lineno"> 2029</span> </div>
<div class="line"><a name="l02033"></a><span class="lineno"> 2033</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00081.html#ga32dbd4f54e9e4a7179f2dde37ffe6ad7">hwloc_free</a>(hwloc_topology_t topology, <span class="keywordtype">void</span> *addr, <span class="keywordtype">size_t</span> len);</div>
<div class="line"><a name="l02034"></a><span class="lineno"> 2034</span> </div>
<div class="line"><a name="l02057"></a><span class="lineno"> 2057</span> HWLOC_DECLSPEC hwloc_obj_t <a class="code" href="a00082.html#ga77c753751f3b90fac14117523fe604df">hwloc_topology_insert_misc_object_by_cpuset</a>(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, <span class="keyword">const</span> <span class="keywordtype">char</span> *name);</div>
<div class="line"><a name="l02058"></a><span class="lineno"> 2058</span> </div>
<div class="line"><a name="l02074"></a><span class="lineno"> 2074</span> HWLOC_DECLSPEC hwloc_obj_t <a class="code" href="a00082.html#ga1472cdf93327dfff4b5b2aedfde29cf3">hwloc_topology_insert_misc_object_by_parent</a>(hwloc_topology_t topology, hwloc_obj_t parent, <span class="keyword">const</span> <span class="keywordtype">char</span> *name);</div>
<div class="line"><a name="l02075"></a><span class="lineno"> 2075</span> </div>
<div class="line"><a name="l02077"></a><span class="lineno"><a class="line" href="a00082.html#ga9d80f08eb25b7ac22f1b998dc8bf521f"> 2077</a></span> <span class="keyword">enum</span> <a class="code" href="a00082.html#ga9d80f08eb25b7ac22f1b998dc8bf521f">hwloc_restrict_flags_e</a> {</div>
<div class="line"><a name="l02082"></a><span class="lineno"><a class="line" href="a00082.html#gga9d80f08eb25b7ac22f1b998dc8bf521fa4d18407f5520793b50b9e892f5bb55d1"> 2082</a></span>  <a class="code" href="a00082.html#gga9d80f08eb25b7ac22f1b998dc8bf521fa4d18407f5520793b50b9e892f5bb55d1">HWLOC_RESTRICT_FLAG_ADAPT_DISTANCES</a> = (1<<0),</div>
<div class="line"><a name="l02083"></a><span class="lineno"> 2083</span> </div>
<div class="line"><a name="l02088"></a><span class="lineno"><a class="line" href="a00082.html#gga9d80f08eb25b7ac22f1b998dc8bf521fa699969227a09bbc1a7de51dc9fb7be4b"> 2088</a></span>  <a class="code" href="a00082.html#gga9d80f08eb25b7ac22f1b998dc8bf521fa699969227a09bbc1a7de51dc9fb7be4b">HWLOC_RESTRICT_FLAG_ADAPT_MISC</a> = (1<<1),</div>
<div class="line"><a name="l02089"></a><span class="lineno"> 2089</span> </div>
<div class="line"><a name="l02094"></a><span class="lineno"><a class="line" href="a00082.html#gga9d80f08eb25b7ac22f1b998dc8bf521faa95d6985e36ec1e55f68b210297a85cb"> 2094</a></span>  <a class="code" href="a00082.html#gga9d80f08eb25b7ac22f1b998dc8bf521faa95d6985e36ec1e55f68b210297a85cb">HWLOC_RESTRICT_FLAG_ADAPT_IO</a> = (1<<2)</div>
<div class="line"><a name="l02095"></a><span class="lineno"> 2095</span> };</div>
<div class="line"><a name="l02096"></a><span class="lineno"> 2096</span> </div>
<div class="line"><a name="l02118"></a><span class="lineno"> 2118</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00082.html#gaffdb5403e5178b0d29852dd3319de3fc">hwloc_topology_restrict</a>(hwloc_topology_t __hwloc_restrict topology, hwloc_const_cpuset_t cpuset, <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> flags);</div>
<div class="line"><a name="l02119"></a><span class="lineno"> 2119</span> </div>
<div class="line"><a name="l02127"></a><span class="lineno"> 2127</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00082.html#ga62a161fc5e6f120344dc69a7bee4e587">hwloc_topology_dup</a>(hwloc_topology_t *newtopology, hwloc_topology_t oldtopology);</div>
<div class="line"><a name="l02128"></a><span class="lineno"> 2128</span> </div>
<div class="line"><a name="l02162"></a><span class="lineno"> 2162</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00083.html#ga58220f648a972140865d11940bccec81">hwloc_custom_insert_topology</a>(hwloc_topology_t newtopology, hwloc_obj_t newparent, hwloc_topology_t oldtopology, hwloc_obj_t oldroot);</div>
<div class="line"><a name="l02163"></a><span class="lineno"> 2163</span> </div>
<div class="line"><a name="l02185"></a><span class="lineno"> 2185</span> HWLOC_DECLSPEC hwloc_obj_t <a class="code" href="a00083.html#ga60c404d4f0544e1070f549af8be6bd73">hwloc_custom_insert_group_object_by_parent</a>(hwloc_topology_t topology, hwloc_obj_t parent, <span class="keywordtype">int</span> groupdepth);</div>
<div class="line"><a name="l02186"></a><span class="lineno"> 2186</span> </div>
<div class="line"><a name="l02212"></a><span class="lineno"> 2212</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00084.html#ga2bf166eda4d3605362ac86f77684002a">hwloc_topology_export_xml</a>(hwloc_topology_t topology, <span class="keyword">const</span> <span class="keywordtype">char</span> *xmlpath);</div>
<div class="line"><a name="l02213"></a><span class="lineno"> 2213</span> </div>
<div class="line"><a name="l02232"></a><span class="lineno"> 2232</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00084.html#ga7cbf8a2d8579d192911007650366fc8a">hwloc_topology_export_xmlbuffer</a>(hwloc_topology_t topology, <span class="keywordtype">char</span> **xmlbuffer, <span class="keywordtype">int</span> *buflen);</div>
<div class="line"><a name="l02233"></a><span class="lineno"> 2233</span> </div>
<div class="line"><a name="l02235"></a><span class="lineno"> 2235</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> <a class="code" href="a00084.html#ga293e4a6489f15fd16ad22a5734561cf1">hwloc_free_xmlbuffer</a>(hwloc_topology_t topology, <span class="keywordtype">char</span> *xmlbuffer);</div>
<div class="line"><a name="l02236"></a><span class="lineno"> 2236</span> </div>
<div class="line"><a name="l02255"></a><span class="lineno"> 2255</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> <a class="code" href="a00084.html#ga9d6ff0f7a8dd45be9aa8575ef31978cc">hwloc_topology_set_userdata_export_callback</a>(hwloc_topology_t topology,</div>
<div class="line"><a name="l02256"></a><span class="lineno"> 2256</span>  <span class="keywordtype">void</span> (*export_cb)(<span class="keywordtype">void</span> *reserved, hwloc_topology_t topology, hwloc_obj_t obj));</div>
<div class="line"><a name="l02257"></a><span class="lineno"> 2257</span> </div>
<div class="line"><a name="l02283"></a><span class="lineno"> 2283</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00084.html#gaa541bdd628416dbbe97d0df69d3de958">hwloc_export_obj_userdata</a>(<span class="keywordtype">void</span> *reserved, hwloc_topology_t topology, hwloc_obj_t obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *name, <span class="keyword">const</span> <span class="keywordtype">void</span> *buffer, <span class="keywordtype">size_t</span> length);</div>
<div class="line"><a name="l02284"></a><span class="lineno"> 2284</span> </div>
<div class="line"><a name="l02298"></a><span class="lineno"> 2298</span> HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00084.html#ga1b7358137cec27bd073f58a606ecbaba">hwloc_export_obj_userdata_base64</a>(<span class="keywordtype">void</span> *reserved, hwloc_topology_t topology, hwloc_obj_t obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *name, <span class="keyword">const</span> <span class="keywordtype">void</span> *buffer, <span class="keywordtype">size_t</span> length);</div>
<div class="line"><a name="l02299"></a><span class="lineno"> 2299</span> </div>
<div class="line"><a name="l02322"></a><span class="lineno"> 2322</span> HWLOC_DECLSPEC <span class="keywordtype">void</span> <a class="code" href="a00084.html#ga5ac6917ea7289955fb1ffda4353af9b0">hwloc_topology_set_userdata_import_callback</a>(hwloc_topology_t topology,</div>
<div class="line"><a name="l02323"></a><span class="lineno"> 2323</span>  <span class="keywordtype">void</span> (*import_cb)(hwloc_topology_t topology, hwloc_obj_t obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *name, <span class="keyword">const</span> <span class="keywordtype">void</span> *buffer, <span class="keywordtype">size_t</span> length));</div>
<div class="line"><a name="l02324"></a><span class="lineno"> 2324</span> </div>
<div class="line"><a name="l02336"></a><span class="lineno"><a class="line" href="a00085.html#ga7ac6f97cc40bd50c40285084f869ba63"> 2336</a></span> <span class="keyword">enum</span> <a class="code" href="a00085.html#ga7ac6f97cc40bd50c40285084f869ba63">hwloc_topology_export_synthetic_flags_e</a> {</div>
<div class="line"><a name="l02342"></a><span class="lineno"><a class="line" href="a00085.html#gga7ac6f97cc40bd50c40285084f869ba63a3b3bd4ba2ef9990810865e561034ccc9"> 2342</a></span>  <a class="code" href="a00085.html#gga7ac6f97cc40bd50c40285084f869ba63a3b3bd4ba2ef9990810865e561034ccc9">HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_NO_EXTENDED_TYPES</a> = (1UL<<0),</div>
<div class="line"><a name="l02343"></a><span class="lineno"> 2343</span> </div>
<div class="line"><a name="l02350"></a><span class="lineno"><a class="line" href="a00085.html#gga7ac6f97cc40bd50c40285084f869ba63aaa2702ffba050bab079b3041aec737d4"> 2350</a></span>  <a class="code" href="a00085.html#gga7ac6f97cc40bd50c40285084f869ba63aaa2702ffba050bab079b3041aec737d4">HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_NO_ATTRS</a> = (1UL<<1)</div>
<div class="line"><a name="l02351"></a><span class="lineno"> 2351</span> };</div>
<div class="line"><a name="l02352"></a><span class="lineno"> 2352</span> </div>
<div class="line"><a name="l02371"></a><span class="lineno"> 2371</span>  HWLOC_DECLSPEC <span class="keywordtype">int</span> <a class="code" href="a00085.html#ga24b7864a1c588309c4749f621f03b4c7">hwloc_topology_export_synthetic</a>(hwloc_topology_t topology, <span class="keywordtype">char</span> *buffer, <span class="keywordtype">size_t</span> buflen, <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> flags);</div>
<div class="line"><a name="l02372"></a><span class="lineno"> 2372</span> </div>
<div class="line"><a name="l02377"></a><span class="lineno"> 2377</span> <span class="preprocessor">#ifdef __cplusplus</span></div>
<div class="line"><a name="l02378"></a><span class="lineno"> 2378</span> } <span class="comment">/* extern "C" */</span></div>
<div class="line"><a name="l02379"></a><span class="lineno"> 2379</span> <span class="preprocessor">#endif</span></div>
<div class="line"><a name="l02380"></a><span class="lineno"> 2380</span> </div>
<div class="line"><a name="l02381"></a><span class="lineno"> 2381</span> </div>
<div class="line"><a name="l02382"></a><span class="lineno"> 2382</span> <span class="comment">/* high-level helpers */</span></div>
<div class="line"><a name="l02383"></a><span class="lineno"> 2383</span> <span class="preprocessor">#include <hwloc/helper.h></span></div>
<div class="line"><a name="l02384"></a><span class="lineno"> 2384</span> </div>
<div class="line"><a name="l02385"></a><span class="lineno"> 2385</span> <span class="comment">/* inline code of some functions above */</span></div>
<div class="line"><a name="l02386"></a><span class="lineno"> 2386</span> <span class="preprocessor">#include <hwloc/inlines.h></span></div>
<div class="line"><a name="l02387"></a><span class="lineno"> 2387</span> </div>
<div class="line"><a name="l02388"></a><span class="lineno"> 2388</span> <span class="comment">/* topology diffs */</span></div>
<div class="line"><a name="l02389"></a><span class="lineno"> 2389</span> <span class="preprocessor">#include <hwloc/diff.h></span></div>
<div class="line"><a name="l02390"></a><span class="lineno"> 2390</span> </div>
<div class="line"><a name="l02391"></a><span class="lineno"> 2391</span> <span class="comment">/* deprecated headers */</span></div>
<div class="line"><a name="l02392"></a><span class="lineno"> 2392</span> <span class="preprocessor">#include <hwloc/deprecated.h></span></div>
<div class="line"><a name="l02393"></a><span class="lineno"> 2393</span> </div>
<div class="line"><a name="l02394"></a><span class="lineno"> 2394</span> <span class="preprocessor">#endif </span><span class="comment">/* HWLOC_H */</span><span class="preprocessor"></span></div>
<div class="ttc" id="a00042_html_aee735352d9f1686fd290fc6d6397c334"><div class="ttname"><a href="a00042.html#aee735352d9f1686fd290fc6d6397c334">hwloc_obj_attr_u::hwloc_pcidev_attr_s::class_id</a></div><div class="ttdeci">unsigned short class_id</div><div class="ttdef"><b>Definition:</b> hwloc.h:506</div></div>
<div class="ttc" id="a00041_html_a31e019e27e54ac6138d04be639bb96f9"><div class="ttname"><a href="a00041.html#a31e019e27e54ac6138d04be639bb96f9">hwloc_obj_attr_u::hwloc_osdev_attr_s::type</a></div><div class="ttdeci">hwloc_obj_osdev_type_t type</div><div class="ttdef"><b>Definition:</b> hwloc.h:528</div></div>
<div class="ttc" id="a00043_html_ad2d5c94b738d92b7d2ede87e4e96321d"><div class="ttname"><a href="a00043.html#ad2d5c94b738d92b7d2ede87e4e96321d">hwloc_topology_cpubind_support::get_thisproc_last_cpu_location</a></div><div class="ttdeci">unsigned char get_thisproc_last_cpu_location</div><div class="ttdef"><b>Definition:</b> hwloc.h:986</div></div>
<div class="ttc" id="a00030_html_a00ce9d99fc8792d1044fe25dc58605fe"><div class="ttname"><a href="a00030.html#a00ce9d99fc8792d1044fe25dc58605fe">hwloc_obj_attr_u::hwloc_bridge_attr_s::upstream</a></div><div class="ttdeci">union hwloc_obj_attr_u::hwloc_bridge_attr_s::@0 upstream</div></div>
<div class="ttc" id="a00081_html_ga0ff3076f7f3633637699b809bcceceb1"><div class="ttname"><a href="a00081.html#ga0ff3076f7f3633637699b809bcceceb1">hwloc_alloc_membind_nodeset</a></div><div class="ttdeci">void * hwloc_alloc_membind_nodeset(hwloc_topology_t topology, size_t len, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags)</div><div class="ttdoc">Allocate some memory on the given physical nodeset nodeset. </div></div>
<div class="ttc" id="a00074_html_ga791c9875c8fe20f3e1e5871e0657e59b"><div class="ttname"><a href="a00074.html#ga791c9875c8fe20f3e1e5871e0657e59b">hwloc_obj_cache_type_e</a></div><div class="ttdeci">hwloc_obj_cache_type_e</div><div class="ttdoc">Cache type. </div><div class="ttdef"><b>Definition:</b> hwloc.h:252</div></div>
<div class="ttc" id="a00081_html_ggab00475fd98815bf4fb9aaf752030e7d2aad6b9eaf2ee324ca58dc8f58094b9997"><div class="ttname"><a href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2aad6b9eaf2ee324ca58dc8f58094b9997">HWLOC_MEMBIND_NOCPUBIND</a></div><div class="ttdoc">Avoid any effect on CPU binding. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1691</div></div>
<div class="ttc" id="a00077_html_ggada025d3ec20b4b420f8038d23d6e7bdea4a41dc181649ef81c2dcd44a54e271b9"><div class="ttname"><a href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea4a41dc181649ef81c2dcd44a54e271b9">HWLOC_TOPOLOGY_FLAG_WHOLE_IO</a></div><div class="ttdoc">Detect the whole PCI hierarchy. </div><div class="ttdef"><b>Definition:</b> hwloc.h:751</div></div>
<div class="ttc" id="a00077_html_ga879439b7ee99407ee911b3ac64e9a25e"><div class="ttname"><a href="a00077.html#ga879439b7ee99407ee911b3ac64e9a25e">hwloc_topology_set_xml</a></div><div class="ttdeci">int hwloc_topology_set_xml(hwloc_topology_t restrict topology, const char *restrict xmlpath)</div><div class="ttdoc">Enable XML-file based topology. </div></div>
<div class="ttc" id="a00077_html_ggada025d3ec20b4b420f8038d23d6e7bdeaae509a0bed4a7067e0116c75c661178d"><div class="ttname"><a href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdeaae509a0bed4a7067e0116c75c661178d">HWLOC_TOPOLOGY_FLAG_ICACHES</a></div><div class="ttdoc">Detect instruction caches. </div><div class="ttdef"><b>Definition:</b> hwloc.h:759</div></div>
<div class="ttc" id="a00053_html_a9880cd2d605e316fc020167c49ca69ad"><div class="ttname"><a href="a00053.html#a9880cd2d605e316fc020167c49ca69ad">hwloc_topology_membind_support::get_proc_membind</a></div><div class="ttdeci">unsigned char get_proc_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1002</div></div>
<div class="ttc" id="a00080_html_ga296db8a3c6d49b51fb83d6f3e45c02a6"><div class="ttname"><a href="a00080.html#ga296db8a3c6d49b51fb83d6f3e45c02a6">hwloc_set_proc_cpubind</a></div><div class="ttdeci">int hwloc_set_proc_cpubind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_const_cpuset_t set, int flags)</div><div class="ttdoc">Bind a process pid on cpus given in physical bitmap set. </div></div>
<div class="ttc" id="a00036_html_a68766f0b1c4d61b5bad87e3b81dacfde"><div class="ttname"><a href="a00036.html#a68766f0b1c4d61b5bad87e3b81dacfde">hwloc_obj::os_level</a></div><div class="ttdeci">signed os_level</div><div class="ttdoc">OS-provided physical level, -1 if unknown or meaningless. </div><div class="ttdef"><b>Definition:</b> hwloc.h:358</div></div>
<div class="ttc" id="a00036_html_adc494f6aed939992be1c55cca5822900"><div class="ttname"><a href="a00036.html#adc494f6aed939992be1c55cca5822900">hwloc_obj::parent</a></div><div class="ttdeci">struct hwloc_obj * parent</div><div class="ttdoc">Parent, NULL if root (system object) </div><div class="ttdef"><b>Definition:</b> hwloc.h:365</div></div>
<div class="ttc" id="a00053_html_a3fd51e6fa5f0dd800322301b46b08559"><div class="ttname"><a href="a00053.html#a3fd51e6fa5f0dd800322301b46b08559">hwloc_topology_membind_support::get_thisproc_membind</a></div><div class="ttdeci">unsigned char get_thisproc_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:998</div></div>
<div class="ttc" id="a00077_html_ga91f992f8d6c4905b2d3c4f43e509c2a3"><div class="ttname"><a href="a00077.html#ga91f992f8d6c4905b2d3c4f43e509c2a3">hwloc_topology_get_userdata</a></div><div class="ttdeci">void * hwloc_topology_get_userdata(hwloc_topology_t topology)</div><div class="ttdoc">Retrieve the topology-specific userdata pointer. </div></div>
<div class="ttc" id="a00081_html_ggac9764f79505775d06407b40f5e4661e8afb37480fe5f4236eb7dd4aef26f691e9"><div class="ttname"><a href="a00081.html#ggac9764f79505775d06407b40f5e4661e8afb37480fe5f4236eb7dd4aef26f691e9">HWLOC_MEMBIND_REPLICATE</a></div><div class="ttdoc">Replicate memory on the given nodes; reads from this memory will attempt to be serviced from the NUMA...</div><div class="ttdef"><b>Definition:</b> hwloc.h:1625</div></div>
<div class="ttc" id="a00074_html_gacd37bb612667dc437d66bfb175a8dc55"><div class="ttname"><a href="a00074.html#gacd37bb612667dc437d66bfb175a8dc55">hwloc_obj_type_t</a></div><div class="ttdeci">hwloc_obj_type_t</div><div class="ttdoc">Type of topology object. </div><div class="ttdef"><b>Definition:</b> hwloc.h:160</div></div>
<div class="ttc" id="a00080_html_ga80bc07473a8edf840cae17bd7ec21d48"><div class="ttname"><a href="a00080.html#ga80bc07473a8edf840cae17bd7ec21d48">hwloc_set_cpubind</a></div><div class="ttdeci">int hwloc_set_cpubind(hwloc_topology_t topology, hwloc_const_cpuset_t set, int flags)</div><div class="ttdoc">Bind current process or thread on cpus given in physical bitmap set. </div></div>
<div class="ttc" id="a00080_html_ga217dc8d373f8958cc93c154ebce1c71c"><div class="ttname"><a href="a00080.html#ga217dc8d373f8958cc93c154ebce1c71c">hwloc_cpubind_flags_t</a></div><div class="ttdeci">hwloc_cpubind_flags_t</div><div class="ttdoc">Process/Thread binding flags. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1363</div></div>
<div class="ttc" id="a00031_html_a801e8a668e28caf06c8b88e9ae5c10db"><div class="ttname"><a href="a00031.html#a801e8a668e28caf06c8b88e9ae5c10db">hwloc_obj_attr_u::hwloc_cache_attr_s::linesize</a></div><div class="ttdeci">unsigned linesize</div><div class="ttdoc">Cache-line size in bytes. 0 if unknown. </div><div class="ttdef"><b>Definition:</b> hwloc.h:493</div></div>
<div class="ttc" id="a00083_html_ga58220f648a972140865d11940bccec81"><div class="ttname"><a href="a00083.html#ga58220f648a972140865d11940bccec81">hwloc_custom_insert_topology</a></div><div class="ttdeci">int hwloc_custom_insert_topology(hwloc_topology_t newtopology, hwloc_obj_t newparent, hwloc_topology_t oldtopology, hwloc_obj_t oldroot)</div><div class="ttdoc">Insert an existing topology inside a custom topology. </div></div>
<div class="ttc" id="a00074_html_ga48a4803c72574191d7ead1c62aaf9860"><div class="ttname"><a href="a00074.html#ga48a4803c72574191d7ead1c62aaf9860">hwloc_obj_bridge_type_e</a></div><div class="ttdeci">hwloc_obj_bridge_type_e</div><div class="ttdoc">Type of one side (upstream or downstream) of an I/O bridge. </div><div class="ttdef"><b>Definition:</b> hwloc.h:260</div></div>
<div class="ttc" id="a00039_html"><div class="ttname"><a href="a00039.html">hwloc_obj_memory_s::hwloc_obj_memory_page_type_s</a></div><div class="ttdoc">Array of local memory page types, NULL if no local memory and page_types is 0. </div><div class="ttdef"><b>Definition:</b> hwloc.h:329</div></div>
<div class="ttc" id="a00077_html_ggada025d3ec20b4b420f8038d23d6e7bdea426b18c349f15d7046bb391d96fa947c"><div class="ttname"><a href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea426b18c349f15d7046bb391d96fa947c">HWLOC_TOPOLOGY_FLAG_IO_BRIDGES</a></div><div class="ttdoc">Detect PCI bridges. </div><div class="ttdef"><b>Definition:</b> hwloc.h:742</div></div>
<div class="ttc" id="a00073_html_ga37e35730fa7e775b5bb0afe893d6d508"><div class="ttname"><a href="a00073.html#ga37e35730fa7e775b5bb0afe893d6d508">hwloc_nodeset_t</a></div><div class="ttdeci">hwloc_bitmap_t hwloc_nodeset_t</div><div class="ttdoc">A node set is a bitmap whose bits are set according to NUMA memory node physical OS indexes...</div><div class="ttdef"><b>Definition:</b> hwloc.h:141</div></div>
<div class="ttc" id="a00053_html_a221098c339dbfab27bd2c9f5d32f123b"><div class="ttname"><a href="a00053.html#a221098c339dbfab27bd2c9f5d32f123b">hwloc_topology_membind_support::firsttouch_membind</a></div><div class="ttdeci">unsigned char firsttouch_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1014</div></div>
<div class="ttc" id="a00081_html_ga21b042d94266a26a9c82b98c4bb30d01"><div class="ttname"><a href="a00081.html#ga21b042d94266a26a9c82b98c4bb30d01">hwloc_set_proc_membind_nodeset</a></div><div class="ttdeci">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)</div><div class="ttdoc">Set the default memory binding policy of the specified process to prefer the NUMA node(s) specified b...</div></div>
<div class="ttc" id="a00084_html_gaa541bdd628416dbbe97d0df69d3de958"><div class="ttname"><a href="a00084.html#gaa541bdd628416dbbe97d0df69d3de958">hwloc_export_obj_userdata</a></div><div class="ttdeci">int hwloc_export_obj_userdata(void *reserved, hwloc_topology_t topology, hwloc_obj_t obj, const char *name, const void *buffer, size_t length)</div><div class="ttdoc">Export some object userdata to XML. </div></div>
<div class="ttc" id="a00039_html_aa5b9fa36f1dc47ff3c345fe4dd06b260"><div class="ttname"><a href="a00039.html#aa5b9fa36f1dc47ff3c345fe4dd06b260">hwloc_obj_memory_s::hwloc_obj_memory_page_type_s::count</a></div><div class="ttdeci">hwloc_uint64_t count</div><div class="ttdoc">Number of pages of this size. </div><div class="ttdef"><b>Definition:</b> hwloc.h:331</div></div>
<div class="ttc" id="a00036_html_aac3f6da35c9b57599909a44ce2b716c1"><div class="ttname"><a href="a00036.html#aac3f6da35c9b57599909a44ce2b716c1">hwloc_obj::arity</a></div><div class="ttdeci">unsigned arity</div><div class="ttdoc">Number of children. </div><div class="ttdef"><b>Definition:</b> hwloc.h:371</div></div>
<div class="ttc" id="a00084_html_ga293e4a6489f15fd16ad22a5734561cf1"><div class="ttname"><a href="a00084.html#ga293e4a6489f15fd16ad22a5734561cf1">hwloc_free_xmlbuffer</a></div><div class="ttdeci">void hwloc_free_xmlbuffer(hwloc_topology_t topology, char *xmlbuffer)</div><div class="ttdoc">Free a buffer allocated by hwloc_topology_export_xmlbuffer() </div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55addb5f843e1812445a84e6b2a844b1ebc"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55addb5f843e1812445a84e6b2a844b1ebc">HWLOC_OBJ_TYPE_MAX</a></div><div class="ttdef"><b>Definition:</b> hwloc.h:239</div></div>
<div class="ttc" id="a00080_html_gaf13f765642b5d0d9a9813e6bb043671b"><div class="ttname"><a href="a00080.html#gaf13f765642b5d0d9a9813e6bb043671b">hwloc_get_thread_cpubind</a></div><div class="ttdeci">int hwloc_get_thread_cpubind(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_cpuset_t set, int flags)</div><div class="ttdoc">Get the current physical binding of thread tid. </div></div>
<div class="ttc" id="a00039_html_a3f1d261766352288791512974665ce01"><div class="ttname"><a href="a00039.html#a3f1d261766352288791512974665ce01">hwloc_obj_memory_s::hwloc_obj_memory_page_type_s::size</a></div><div class="ttdeci">hwloc_uint64_t size</div><div class="ttdoc">Size of pages. </div><div class="ttdef"><b>Definition:</b> hwloc.h:330</div></div>
<div class="ttc" id="a00085_html_ga7ac6f97cc40bd50c40285084f869ba63"><div class="ttname"><a href="a00085.html#ga7ac6f97cc40bd50c40285084f869ba63">hwloc_topology_export_synthetic_flags_e</a></div><div class="ttdeci">hwloc_topology_export_synthetic_flags_e</div><div class="ttdoc">Flags for exporting synthetic topologies. </div><div class="ttdef"><b>Definition:</b> hwloc.h:2336</div></div>
<div class="ttc" id="a00077_html_ga68ffdcfd9175cdf40709801092f18017"><div class="ttname"><a href="a00077.html#ga68ffdcfd9175cdf40709801092f18017">hwloc_topology_is_thissystem</a></div><div class="ttdeci">int hwloc_topology_is_thissystem(hwloc_topology_t restrict topology)</div><div class="ttdoc">Does the topology context come from this system? </div></div>
<div class="ttc" id="a00036_html_a9a5dd75596edc48fe834f81988cdc0d6"><div class="ttname"><a href="a00036.html#a9a5dd75596edc48fe834f81988cdc0d6">hwloc_obj::distances</a></div><div class="ttdeci">struct hwloc_distances_s ** distances</div><div class="ttdoc">Distances between all objects at same depth below this object. </div><div class="ttdef"><b>Definition:</b> hwloc.h:470</div></div>
<div class="ttc" id="a00082_html_gga9d80f08eb25b7ac22f1b998dc8bf521fa699969227a09bbc1a7de51dc9fb7be4b"><div class="ttname"><a href="a00082.html#gga9d80f08eb25b7ac22f1b998dc8bf521fa699969227a09bbc1a7de51dc9fb7be4b">HWLOC_RESTRICT_FLAG_ADAPT_MISC</a></div><div class="ttdoc">Move Misc objects to ancestors if their parents are removed during restriction. If this flag is not s...</div><div class="ttdef"><b>Definition:</b> hwloc.h:2088</div></div>
<div class="ttc" id="a00030_html_ae2d9dd73ef1d32045c584a8e66d2f83f"><div class="ttname"><a href="a00030.html#ae2d9dd73ef1d32045c584a8e66d2f83f">hwloc_obj_attr_u::hwloc_bridge_attr_s::secondary_bus</a></div><div class="ttdeci">unsigned char secondary_bus</div><div class="ttdef"><b>Definition:</b> hwloc.h:520</div></div>
<div class="ttc" id="a00040_html_a865eba7b12b986d72dbe7a2cfd97c50d"><div class="ttname"><a href="a00040.html#a865eba7b12b986d72dbe7a2cfd97c50d">hwloc_obj_memory_s::page_types</a></div><div class="ttdeci">struct hwloc_obj_memory_s::hwloc_obj_memory_page_type_s * page_types</div></div>
<div class="ttc" id="a00078_html_ga6f414dd80a2b943967a0ac92da3181a2"><div class="ttname"><a href="a00078.html#ga6f414dd80a2b943967a0ac92da3181a2">hwloc_get_obj_by_type</a></div><div class="ttdeci">static hwloc_obj_t hwloc_get_obj_by_type(hwloc_topology_t topology, hwloc_obj_type_t type, unsigned idx)</div><div class="ttdoc">Returns the topology object at logical index idx with type type. </div></div>
<div class="ttc" id="a00053_html_a3c44c6012860bbeba8a0f4c19710858d"><div class="ttname"><a href="a00053.html#a3c44c6012860bbeba8a0f4c19710858d">hwloc_topology_membind_support::interleave_membind</a></div><div class="ttdeci">unsigned char interleave_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1018</div></div>
<div class="ttc" id="a00080_html_gga217dc8d373f8958cc93c154ebce1c71ca2e0dd0128dac6b03408c7dd170477fdc"><div class="ttname"><a href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71ca2e0dd0128dac6b03408c7dd170477fdc">HWLOC_CPUBIND_PROCESS</a></div><div class="ttdoc">Bind all threads of the current (possibly) multithreaded process. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1366</div></div>
<div class="ttc" id="a00042_html"><div class="ttname"><a href="a00042.html">hwloc_obj_attr_u::hwloc_pcidev_attr_s</a></div><div class="ttdoc">PCI Device specific Object Attributes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:503</div></div>
<div class="ttc" id="a00030_html"><div class="ttname"><a href="a00030.html">hwloc_obj_attr_u::hwloc_bridge_attr_s</a></div><div class="ttdoc">Bridge specific Object Attribues. </div><div class="ttdef"><b>Definition:</b> hwloc.h:512</div></div>
<div class="ttc" id="a00043_html_a6be1f042fdce6bf41b4ea39f6f193808"><div class="ttname"><a href="a00043.html#a6be1f042fdce6bf41b4ea39f6f193808">hwloc_topology_cpubind_support::get_thisthread_last_cpu_location</a></div><div class="ttdeci">unsigned char get_thisthread_last_cpu_location</div><div class="ttdef"><b>Definition:</b> hwloc.h:990</div></div>
<div class="ttc" id="a00078_html_gab17065e3d53455973844568d9f21c72c"><div class="ttname"><a href="a00078.html#gab17065e3d53455973844568d9f21c72c">hwloc_get_nbobjs_by_depth</a></div><div class="ttdeci">unsigned hwloc_get_nbobjs_by_depth(hwloc_topology_t topology, unsigned depth)</div><div class="ttdoc">Returns the width of level at depth depth. </div></div>
<div class="ttc" id="a00074_html_ga64f5d539df299c97ae80ce53fc4b56c0"><div class="ttname"><a href="a00074.html#ga64f5d539df299c97ae80ce53fc4b56c0">hwloc_obj_osdev_type_e</a></div><div class="ttdeci">hwloc_obj_osdev_type_e</div><div class="ttdoc">Type of a OS device. </div><div class="ttdef"><b>Definition:</b> hwloc.h:266</div></div>
<div class="ttc" id="a00036_html_a9d82690370275d42d652eccdea5d3ee5"><div class="ttname"><a href="a00036.html#a9d82690370275d42d652eccdea5d3ee5">hwloc_obj::depth</a></div><div class="ttdeci">unsigned depth</div><div class="ttdoc">Vertical index in the hierarchy. If the topology is symmetric, this is equal to the parent depth plus...</div><div class="ttdef"><b>Definition:</b> hwloc.h:351</div></div>
<div class="ttc" id="a00077_html_gada025d3ec20b4b420f8038d23d6e7bde"><div class="ttname"><a href="a00077.html#gada025d3ec20b4b420f8038d23d6e7bde">hwloc_topology_flags_e</a></div><div class="ttdeci">hwloc_topology_flags_e</div><div class="ttdoc">Flags to be set onto a topology context before load. </div><div class="ttdef"><b>Definition:</b> hwloc.h:693</div></div>
<div class="ttc" id="a00042_html_acac741aecd7a6db64f33409427e3971f"><div class="ttname"><a href="a00042.html#acac741aecd7a6db64f33409427e3971f">hwloc_obj_attr_u::hwloc_pcidev_attr_s::subdevice_id</a></div><div class="ttdeci">unsigned short subdevice_id</div><div class="ttdef"><b>Definition:</b> hwloc.h:507</div></div>
<div class="ttc" id="a00077_html_ggada025d3ec20b4b420f8038d23d6e7bdea6ecb6abc6a0bb75e81564f8bca85783b"><div class="ttname"><a href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea6ecb6abc6a0bb75e81564f8bca85783b">HWLOC_TOPOLOGY_FLAG_IS_THISSYSTEM</a></div><div class="ttdoc">Assume that the selected backend provides the topology for the system on which we are running...</div><div class="ttdef"><b>Definition:</b> hwloc.h:721</div></div>
<div class="ttc" id="a00054_html_aea3fbd7653d987d81f848636c420504d"><div class="ttname"><a href="a00054.html#aea3fbd7653d987d81f848636c420504d">hwloc_topology_support::discovery</a></div><div class="ttdeci">struct hwloc_topology_discovery_support * discovery</div><div class="ttdef"><b>Definition:</b> hwloc.h:1035</div></div>
<div class="ttc" id="a00031_html_ad8edc8ded2b7a70d6abbc874801930f4"><div class="ttname"><a href="a00031.html#ad8edc8ded2b7a70d6abbc874801930f4">hwloc_obj_attr_u::hwloc_cache_attr_s::type</a></div><div class="ttdeci">hwloc_obj_cache_type_t type</div><div class="ttdoc">Cache type. </div><div class="ttdef"><b>Definition:</b> hwloc.h:496</div></div>
<div class="ttc" id="a00036_html_abb709ec38f2970677e4e57d1d30be96d"><div class="ttname"><a href="a00036.html#abb709ec38f2970677e4e57d1d30be96d">hwloc_obj::name</a></div><div class="ttdeci">char * name</div><div class="ttdoc">Object description if any. </div><div class="ttdef"><b>Definition:</b> hwloc.h:343</div></div>
<div class="ttc" id="a00034_html_a204416418049a272bfb51602fc676342"><div class="ttname"><a href="a00034.html#a204416418049a272bfb51602fc676342">hwloc_distances_s::latency_base</a></div><div class="ttdeci">float latency_base</div><div class="ttdoc">The multiplier that should be applied to latency matrix to retrieve the original OS-provided latencie...</div><div class="ttdef"><b>Definition:</b> hwloc.h:560</div></div>
<div class="ttc" id="a00081_html_ga5b674a9e043814bfd1c927fd0137fb19"><div class="ttname"><a href="a00081.html#ga5b674a9e043814bfd1c927fd0137fb19">hwloc_get_area_membind_nodeset</a></div><div class="ttdeci">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)</div><div class="ttdoc">Query the physical NUMA node(s) and binding policy of the memory identified by (addr, len ). </div></div>
<div class="ttc" id="a00096_html_gae991a108af01d408be2776c5b2c467b2"><div class="ttname"><a href="a00096.html#gae991a108af01d408be2776c5b2c467b2">hwloc_const_bitmap_t</a></div><div class="ttdeci">const struct hwloc_bitmap_s * hwloc_const_bitmap_t</div><div class="ttdoc">a non-modifiable hwloc_bitmap_t </div><div class="ttdef"><b>Definition:</b> bitmap.h:52</div></div>
<div class="ttc" id="a00035_html"><div class="ttname"><a href="a00035.html">hwloc_obj_attr_u::hwloc_group_attr_s</a></div><div class="ttdoc">Group-specific Object Attributes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:499</div></div>
<div class="ttc" id="a00031_html_a5c8f7f39193736c2187ed626940835d5"><div class="ttname"><a href="a00031.html#a5c8f7f39193736c2187ed626940835d5">hwloc_obj_attr_u::hwloc_cache_attr_s::depth</a></div><div class="ttdeci">unsigned depth</div><div class="ttdoc">Depth of cache (e.g., L1, L2, ...etc.) </div><div class="ttdef"><b>Definition:</b> hwloc.h:492</div></div>
<div class="ttc" id="a00042_html_aad970ad19b62eb2d5df30e4802da4f4c"><div class="ttname"><a href="a00042.html#aad970ad19b62eb2d5df30e4802da4f4c">hwloc_obj_attr_u::hwloc_pcidev_attr_s::vendor_id</a></div><div class="ttdeci">unsigned short vendor_id</div><div class="ttdef"><b>Definition:</b> hwloc.h:507</div></div>
<div class="ttc" id="a00030_html_ac6a169b672d0e9f75756fd5665828b93"><div class="ttname"><a href="a00030.html#ac6a169b672d0e9f75756fd5665828b93">hwloc_obj_attr_u::hwloc_bridge_attr_s::downstream_type</a></div><div class="ttdeci">hwloc_obj_bridge_type_t downstream_type</div><div class="ttdef"><b>Definition:</b> hwloc.h:523</div></div>
<div class="ttc" id="a00053_html_a0a84e24a06f2fa487fe8c9605c6f68b3"><div class="ttname"><a href="a00053.html#a0a84e24a06f2fa487fe8c9605c6f68b3">hwloc_topology_membind_support::get_area_membind</a></div><div class="ttdeci">unsigned char get_area_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1010</div></div>
<div class="ttc" id="a00074_html_ga46323568968005137c32f6a1cd405b74"><div class="ttname"><a href="a00074.html#ga46323568968005137c32f6a1cd405b74">hwloc_compare_types_e</a></div><div class="ttdeci">hwloc_compare_types_e</div><div class="ttdef"><b>Definition:</b> hwloc.h:303</div></div>
<div class="ttc" id="a00037_html_a4203d713ce0f5beaa6ee0e9bdac70828"><div class="ttname"><a href="a00037.html#a4203d713ce0f5beaa6ee0e9bdac70828">hwloc_obj_attr_u::pcidev</a></div><div class="ttdeci">struct hwloc_obj_attr_u::hwloc_pcidev_attr_s pcidev</div></div>
<div class="ttc" id="a00082_html_gga9d80f08eb25b7ac22f1b998dc8bf521fa4d18407f5520793b50b9e892f5bb55d1"><div class="ttname"><a href="a00082.html#gga9d80f08eb25b7ac22f1b998dc8bf521fa4d18407f5520793b50b9e892f5bb55d1">HWLOC_RESTRICT_FLAG_ADAPT_DISTANCES</a></div><div class="ttdoc">Adapt distance matrices according to objects being removed during restriction. If this flag is not se...</div><div class="ttdef"><b>Definition:</b> hwloc.h:2082</div></div>
<div class="ttc" id="a00053_html_a476c06f96b65c08b287cf2369966123b"><div class="ttname"><a href="a00053.html#a476c06f96b65c08b287cf2369966123b">hwloc_topology_membind_support::set_area_membind</a></div><div class="ttdeci">unsigned char set_area_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1008</div></div>
<div class="ttc" id="a00042_html_aae99e035e8d1387d7b8768aaa8eceb0a"><div class="ttname"><a href="a00042.html#aae99e035e8d1387d7b8768aaa8eceb0a">hwloc_obj_attr_u::hwloc_pcidev_attr_s::bus</a></div><div class="ttdeci">unsigned char bus</div><div class="ttdef"><b>Definition:</b> hwloc.h:505</div></div>
<div class="ttc" id="a00081_html_ggac9764f79505775d06407b40f5e4661e8a979c7aa78dd32780858f30f47a72cca0"><div class="ttname"><a href="a00081.html#ggac9764f79505775d06407b40f5e4661e8a979c7aa78dd32780858f30f47a72cca0">HWLOC_MEMBIND_FIRSTTOUCH</a></div><div class="ttdoc">Allocate memory but do not immediately bind it to a specific locality. Instead, each page in the allo...</div><div class="ttdef"><b>Definition:</b> hwloc.h:1599</div></div>
<div class="ttc" id="a00080_html_gacba7ecb979baf824d5240fa2cb2a8be6"><div class="ttname"><a href="a00080.html#gacba7ecb979baf824d5240fa2cb2a8be6">hwloc_get_cpubind</a></div><div class="ttdeci">int hwloc_get_cpubind(hwloc_topology_t topology, hwloc_cpuset_t set, int flags)</div><div class="ttdoc">Get current process or thread binding. </div></div>
<div class="ttc" id="a00079_html_ga870e876931c282a1c7aee2f031912ce3"><div class="ttname"><a href="a00079.html#ga870e876931c282a1c7aee2f031912ce3">hwloc_obj_attr_snprintf</a></div><div class="ttdeci">int hwloc_obj_attr_snprintf(char *restrict string, size_t size, hwloc_obj_t obj, const char *restrict separator, int verbose)</div><div class="ttdoc">Stringify the attributes of a given topology object into a human-readable form. </div></div>
<div class="ttc" id="a00034_html_a6fe066eaf62ee448aa05bab8e7217ff7"><div class="ttname"><a href="a00034.html#a6fe066eaf62ee448aa05bab8e7217ff7">hwloc_distances_s::relative_depth</a></div><div class="ttdeci">unsigned relative_depth</div><div class="ttdoc">Relative depth of the considered objects below the object containing this distance information...</div><div class="ttdef"><b>Definition:</b> hwloc.h:547</div></div>
<div class="ttc" id="a00081_html_ggac9764f79505775d06407b40f5e4661e8a18675bb80ebc1bce5b652e9de8f3998c"><div class="ttname"><a href="a00081.html#ggac9764f79505775d06407b40f5e4661e8a18675bb80ebc1bce5b652e9de8f3998c">HWLOC_MEMBIND_DEFAULT</a></div><div class="ttdoc">Reset the memory allocation policy to the system default. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1589</div></div>
<div class="ttc" id="a00077_html_ga7c9cf147442d65d755c664ccde3bb3ef"><div class="ttname"><a href="a00077.html#ga7c9cf147442d65d755c664ccde3bb3ef">hwloc_topology_ignore_all_keep_structure</a></div><div class="ttdeci">int hwloc_topology_ignore_all_keep_structure(hwloc_topology_t topology)</div><div class="ttdoc">Ignore all objects that do not bring any structure. </div></div>
<div class="ttc" id="a00081_html_ga93d2698ae5d7330be5e9f8ece6bc9b2c"><div class="ttname"><a href="a00081.html#ga93d2698ae5d7330be5e9f8ece6bc9b2c">hwloc_set_area_membind</a></div><div class="ttdeci">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)</div><div class="ttdoc">Bind the already-allocated memory identified by (addr, len) to the NUMA node(s) near physical cpuset...</div></div>
<div class="ttc" id="a00037_html_adbdf280699dd84c7619cd8d9edc0d958"><div class="ttname"><a href="a00037.html#adbdf280699dd84c7619cd8d9edc0d958">hwloc_obj_attr_u::bridge</a></div><div class="ttdeci">struct hwloc_obj_attr_u::hwloc_bridge_attr_s bridge</div></div>
<div class="ttc" id="a00030_html_a336c8b22893d5d734d8c9dfca4066b46"><div class="ttname"><a href="a00030.html#a336c8b22893d5d734d8c9dfca4066b46">hwloc_obj_attr_u::hwloc_bridge_attr_s::depth</a></div><div class="ttdeci">unsigned depth</div><div class="ttdef"><b>Definition:</b> hwloc.h:524</div></div>
<div class="ttc" id="a00036_html_ad59bcd73a10260a0e239be5c4b5888bb"><div class="ttname"><a href="a00036.html#ad59bcd73a10260a0e239be5c4b5888bb">hwloc_obj::infos</a></div><div class="ttdeci">struct hwloc_obj_info_s * infos</div><div class="ttdoc">Array of stringified info type=name. </div><div class="ttdef"><b>Definition:</b> hwloc.h:473</div></div>
<div class="ttc" id="a00078_html_ga8a9ee573b7d2190272095d10712a7cca"><div class="ttname"><a href="a00078.html#ga8a9ee573b7d2190272095d10712a7cca">hwloc_get_type_or_above_depth</a></div><div class="ttdeci">static int hwloc_get_type_or_above_depth(hwloc_topology_t topology, hwloc_obj_type_t type)</div><div class="ttdoc">Returns the depth of objects of type type or above. </div></div>
<div class="ttc" id="a00081_html_ga94b91473febe49fc7af09a0f4a72e53a"><div class="ttname"><a href="a00081.html#ga94b91473febe49fc7af09a0f4a72e53a">hwloc_set_proc_membind</a></div><div class="ttdeci">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)</div><div class="ttdoc">Set the default memory binding policy of the specified process to prefer the NUMA node(s) near the sp...</div></div>
<div class="ttc" id="a00074_html_gga48a4803c72574191d7ead1c62aaf9860a8f3b4cecf3dab6073d74696d10863c60"><div class="ttname"><a href="a00074.html#gga48a4803c72574191d7ead1c62aaf9860a8f3b4cecf3dab6073d74696d10863c60">HWLOC_OBJ_BRIDGE_PCI</a></div><div class="ttdoc">PCI-side of a bridge. </div><div class="ttdef"><b>Definition:</b> hwloc.h:262</div></div>
<div class="ttc" id="a00078_html_ggaf4e663cf42bbe20756b849c6293ef575af93b50182973e4a718d9d4db9e253a90"><div class="ttname"><a href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575af93b50182973e4a718d9d4db9e253a90">HWLOC_TYPE_DEPTH_BRIDGE</a></div><div class="ttdoc">Virtual depth for bridge object level. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1108</div></div>
<div class="ttc" id="a00038_html_a522efd7f5262a4493a73fa3476a041ce"><div class="ttname"><a href="a00038.html#a522efd7f5262a4493a73fa3476a041ce">hwloc_obj_info_s::value</a></div><div class="ttdeci">char * value</div><div class="ttdoc">Info value. </div><div class="ttdef"><b>Definition:</b> hwloc.h:569</div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55a5269ef95be72f88465559d35c9b7ad56"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a5269ef95be72f88465559d35c9b7ad56">HWLOC_OBJ_GROUP</a></div><div class="ttdoc">Group objects. Objects which do not fit in the above but are detected by hwloc and are useful to take...</div><div class="ttdef"><b>Definition:</b> hwloc.h:204</div></div>
<div class="ttc" id="a00031_html_abe5e788943ed04302976740c829674c0"><div class="ttname"><a href="a00031.html#abe5e788943ed04302976740c829674c0">hwloc_obj_attr_u::hwloc_cache_attr_s::size</a></div><div class="ttdeci">hwloc_uint64_t size</div><div class="ttdoc">Size of cache in bytes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:491</div></div>
<div class="ttc" id="a00043_html"><div class="ttname"><a href="a00043.html">hwloc_topology_cpubind_support</a></div><div class="ttdoc">Flags describing actual PU binding support for this topology. </div><div class="ttdef"><b>Definition:</b> hwloc.h:968</div></div>
<div class="ttc" id="a00043_html_a77a09ddd78ee3e9ff5f532a6ac74f7eb"><div class="ttname"><a href="a00043.html#a77a09ddd78ee3e9ff5f532a6ac74f7eb">hwloc_topology_cpubind_support::get_thisproc_cpubind</a></div><div class="ttdeci">unsigned char get_thisproc_cpubind</div><div class="ttdef"><b>Definition:</b> hwloc.h:972</div></div>
<div class="ttc" id="a00082_html_ga77c753751f3b90fac14117523fe604df"><div class="ttname"><a href="a00082.html#ga77c753751f3b90fac14117523fe604df">hwloc_topology_insert_misc_object_by_cpuset</a></div><div class="ttdeci">hwloc_obj_t hwloc_topology_insert_misc_object_by_cpuset(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, const char *name)</div><div class="ttdoc">Add a MISC object to the topology. </div></div>
<div class="ttc" id="a00081_html_ggac9764f79505775d06407b40f5e4661e8ad811fa4b2a6002c4d63695a408ffde2c"><div class="ttname"><a href="a00081.html#ggac9764f79505775d06407b40f5e4661e8ad811fa4b2a6002c4d63695a408ffde2c">HWLOC_MEMBIND_BIND</a></div><div class="ttdoc">Allocate memory on the specified nodes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1603</div></div>
<div class="ttc" id="a00043_html_a8dd4d8531ed2eebdce1507e7d104154e"><div class="ttname"><a href="a00043.html#a8dd4d8531ed2eebdce1507e7d104154e">hwloc_topology_cpubind_support::get_thread_cpubind</a></div><div class="ttdeci">unsigned char get_thread_cpubind</div><div class="ttdef"><b>Definition:</b> hwloc.h:984</div></div>
<div class="ttc" id="a00041_html"><div class="ttname"><a href="a00041.html">hwloc_obj_attr_u::hwloc_osdev_attr_s</a></div><div class="ttdoc">OS Device specific Object Attributes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:527</div></div>
<div class="ttc" id="a00042_html_a59b2fce35f7cbde86c4fd305d0ccda5f"><div class="ttname"><a href="a00042.html#a59b2fce35f7cbde86c4fd305d0ccda5f">hwloc_obj_attr_u::hwloc_pcidev_attr_s::linkspeed</a></div><div class="ttdeci">float linkspeed</div><div class="ttdef"><b>Definition:</b> hwloc.h:509</div></div>
<div class="ttc" id="a00036_html_a7b89e8c189876c0158a9282aaaf17f50"><div class="ttname"><a href="a00036.html#a7b89e8c189876c0158a9282aaaf17f50">hwloc_obj::prev_sibling</a></div><div class="ttdeci">struct hwloc_obj * prev_sibling</div><div class="ttdoc">Previous object below the same parent. </div><div class="ttdef"><b>Definition:</b> hwloc.h:368</div></div>
<div class="ttc" id="a00036_html_a19e3d0a5951a7510fc4fc4722a9bf531"><div class="ttname"><a href="a00036.html#a19e3d0a5951a7510fc4fc4722a9bf531">hwloc_obj::allowed_nodeset</a></div><div class="ttdeci">hwloc_nodeset_t allowed_nodeset</div><div class="ttdoc">The set of allowed NUMA memory nodes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:457</div></div>
<div class="ttc" id="a00083_html_ga60c404d4f0544e1070f549af8be6bd73"><div class="ttname"><a href="a00083.html#ga60c404d4f0544e1070f549af8be6bd73">hwloc_custom_insert_group_object_by_parent</a></div><div class="ttdeci">hwloc_obj_t hwloc_custom_insert_group_object_by_parent(hwloc_topology_t topology, hwloc_obj_t parent, int groupdepth)</div><div class="ttdoc">Insert a new group object inside a custom topology. </div></div>
<div class="ttc" id="a00084_html_ga9d6ff0f7a8dd45be9aa8575ef31978cc"><div class="ttname"><a href="a00084.html#ga9d6ff0f7a8dd45be9aa8575ef31978cc">hwloc_topology_set_userdata_export_callback</a></div><div class="ttdeci">void hwloc_topology_set_userdata_export_callback(hwloc_topology_t topology, void(*export_cb)(void *reserved, hwloc_topology_t topology, hwloc_obj_t obj))</div><div class="ttdoc">Set the application-specific callback for exporting object userdata. </div></div>
<div class="ttc" id="a00081_html_ga7f11bd709ac0cb93af613e2dd84165ad"><div class="ttname"><a href="a00081.html#ga7f11bd709ac0cb93af613e2dd84165ad">hwloc_set_area_membind_nodeset</a></div><div class="ttdeci">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)</div><div class="ttdoc">Bind the already-allocated memory identified by (addr, len) to the NUMA node(s) in physical nodeset...</div></div>
<div class="ttc" id="a00081_html_ga32dbd4f54e9e4a7179f2dde37ffe6ad7"><div class="ttname"><a href="a00081.html#ga32dbd4f54e9e4a7179f2dde37ffe6ad7">hwloc_free</a></div><div class="ttdeci">int hwloc_free(hwloc_topology_t topology, void *addr, size_t len)</div><div class="ttdoc">Free memory that was previously allocated by hwloc_alloc() or hwloc_alloc_membind(). </div></div>
<div class="ttc" id="a00040_html_a208c27f4491077d7fb9ba5db8b29cb57"><div class="ttname"><a href="a00040.html#a208c27f4491077d7fb9ba5db8b29cb57">hwloc_obj_memory_s::page_types_len</a></div><div class="ttdeci">unsigned page_types_len</div><div class="ttdoc">Size of array page_types. </div><div class="ttdef"><b>Definition:</b> hwloc.h:323</div></div>
<div class="ttc" id="a00074_html_gga64f5d539df299c97ae80ce53fc4b56c0a52157d03694fdae82dddd57ca8c973b6"><div class="ttname"><a href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a52157d03694fdae82dddd57ca8c973b6">HWLOC_OBJ_OSDEV_OPENFABRICS</a></div><div class="ttdoc">Operating system openfabrics device. For instance the "mlx4_0" InfiniBand HCA device on Linux...</div><div class="ttdef"><b>Definition:</b> hwloc.h:274</div></div>
<div class="ttc" id="a00080_html_gae42c01b2addcfbf6048b9a516dd7a906"><div class="ttname"><a href="a00080.html#gae42c01b2addcfbf6048b9a516dd7a906">hwloc_set_thread_cpubind</a></div><div class="ttdeci">int hwloc_set_thread_cpubind(hwloc_topology_t topology, hwloc_thread_t thread, hwloc_const_cpuset_t set, int flags)</div><div class="ttdoc">Bind a thread thread on cpus given in physical bitmap set. </div></div>
<div class="ttc" id="a00042_html_a695f32df53f4ef728670bfcf31b74e0f"><div class="ttname"><a href="a00042.html#a695f32df53f4ef728670bfcf31b74e0f">hwloc_obj_attr_u::hwloc_pcidev_attr_s::func</a></div><div class="ttdeci">unsigned char func</div><div class="ttdef"><b>Definition:</b> hwloc.h:505</div></div>
<div class="ttc" id="a00052_html_ad7bb4ecf7a82f5a04fc632e9592ad3ab"><div class="ttname"><a href="a00052.html#ad7bb4ecf7a82f5a04fc632e9592ad3ab">hwloc_topology_discovery_support::pu</a></div><div class="ttdeci">unsigned char pu</div><div class="ttdoc">Detecting the number of PU objects is supported. </div><div class="ttdef"><b>Definition:</b> hwloc.h:964</div></div>
<div class="ttc" id="a00072_html_ga9c0b50c98add1adf57ed1ce85bb5190d"><div class="ttname"><a href="a00072.html#ga9c0b50c98add1adf57ed1ce85bb5190d">hwloc_get_api_version</a></div><div class="ttdeci">unsigned hwloc_get_api_version(void)</div><div class="ttdoc">Indicate at runtime which hwloc API version was used at build time. </div></div>
<div class="ttc" id="a00053_html_afe608fb85eb2aa9706221ccb5fc4d415"><div class="ttname"><a href="a00053.html#afe608fb85eb2aa9706221ccb5fc4d415">hwloc_topology_membind_support::replicate_membind</a></div><div class="ttdeci">unsigned char replicate_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1020</div></div>
<div class="ttc" id="a00034_html_a4ca2af858cebbce7324ec49903d09474"><div class="ttname"><a href="a00034.html#a4ca2af858cebbce7324ec49903d09474">hwloc_distances_s::nbobjs</a></div><div class="ttdeci">unsigned nbobjs</div><div class="ttdoc">Number of objects considered in the matrix. It is the number of descendant objects at relative_depth ...</div><div class="ttdef"><b>Definition:</b> hwloc.h:549</div></div>
<div class="ttc" id="a00077_html_ggada025d3ec20b4b420f8038d23d6e7bdea46ae25e8896278840b1800ae9ce4de41"><div class="ttname"><a href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea46ae25e8896278840b1800ae9ce4de41">HWLOC_TOPOLOGY_FLAG_IO_DEVICES</a></div><div class="ttdoc">Detect PCI devices. </div><div class="ttdef"><b>Definition:</b> hwloc.h:733</div></div>
<div class="ttc" id="a00078_html_ga759e88eaf5a230ad283e9d4c42486735"><div class="ttname"><a href="a00078.html#ga759e88eaf5a230ad283e9d4c42486735">hwloc_get_next_obj_by_type</a></div><div class="ttdeci">static hwloc_obj_t hwloc_get_next_obj_by_type(hwloc_topology_t topology, hwloc_obj_type_t type, hwloc_obj_t prev)</div><div class="ttdoc">Returns the next object of type type. </div></div>
<div class="ttc" id="a00077_html_ga09318f81c1d4713be907d64748a6f93c"><div class="ttname"><a href="a00077.html#ga09318f81c1d4713be907d64748a6f93c">hwloc_topology_get_flags</a></div><div class="ttdeci">unsigned long hwloc_topology_get_flags(hwloc_topology_t topology)</div><div class="ttdoc">Get OR'ed flags of a topology. </div></div>
<div class="ttc" id="a00081_html_ga84ee275e84286d17a5853c52272a6a95"><div class="ttname"><a href="a00081.html#ga84ee275e84286d17a5853c52272a6a95">hwloc_get_membind_nodeset</a></div><div class="ttdeci">int hwloc_get_membind_nodeset(hwloc_topology_t topology, hwloc_nodeset_t nodeset, hwloc_membind_policy_t *policy, int flags)</div><div class="ttdoc">Query the default memory binding policy and physical locality of the current process or thread...</div></div>
<div class="ttc" id="a00079_html_ga7e90c5398a9d77df31d7d45faf0f316b"><div class="ttname"><a href="a00079.html#ga7e90c5398a9d77df31d7d45faf0f316b">hwloc_obj_add_info</a></div><div class="ttdeci">void hwloc_obj_add_info(hwloc_obj_t obj, const char *name, const char *value)</div><div class="ttdoc">Add the given info name and value pair to the given object. </div></div>
<div class="ttc" id="a00054_html_ac6eb62ae8bc0a68dce679a7107a36194"><div class="ttname"><a href="a00054.html#ac6eb62ae8bc0a68dce679a7107a36194">hwloc_topology_support::membind</a></div><div class="ttdeci">struct hwloc_topology_membind_support * membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1037</div></div>
<div class="ttc" id="a00078_html_ga2d4b12fc187dfc53b35f2fa21d21044d"><div class="ttname"><a href="a00078.html#ga2d4b12fc187dfc53b35f2fa21d21044d">hwloc_get_root_obj</a></div><div class="ttdeci">static hwloc_obj_t hwloc_get_root_obj(hwloc_topology_t topology)</div><div class="ttdoc">Returns the top-object of the topology-tree. </div></div>
<div class="ttc" id="a00053_html_a0697af2e41f2e82b8ce71e3cc13f7eac"><div class="ttname"><a href="a00053.html#a0697af2e41f2e82b8ce71e3cc13f7eac">hwloc_topology_membind_support::set_thisthread_membind</a></div><div class="ttdeci">unsigned char set_thisthread_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1004</div></div>
<div class="ttc" id="a00043_html_aae705bc447adc163ead377362c4dfe9f"><div class="ttname"><a href="a00043.html#aae705bc447adc163ead377362c4dfe9f">hwloc_topology_cpubind_support::get_proc_cpubind</a></div><div class="ttdeci">unsigned char get_proc_cpubind</div><div class="ttdef"><b>Definition:</b> hwloc.h:976</div></div>
<div class="ttc" id="a00036_html_a84bd65634dbc55f4158b74443a9bd04f"><div class="ttname"><a href="a00036.html#a84bd65634dbc55f4158b74443a9bd04f">hwloc_obj::last_child</a></div><div class="ttdeci">struct hwloc_obj * last_child</div><div class="ttdoc">Last child. </div><div class="ttdef"><b>Definition:</b> hwloc.h:374</div></div>
<div class="ttc" id="a00081_html_ggac9764f79505775d06407b40f5e4661e8aecdd4164d647708fbb51a00d98dbb138"><div class="ttname"><a href="a00081.html#ggac9764f79505775d06407b40f5e4661e8aecdd4164d647708fbb51a00d98dbb138">HWLOC_MEMBIND_NEXTTOUCH</a></div><div class="ttdoc">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). </div><div class="ttdef"><b>Definition:</b> hwloc.h:1632</div></div>
<div class="ttc" id="a00077_html_gab8c76173c4a8ce1a9a9366012b1388e6"><div class="ttname"><a href="a00077.html#gab8c76173c4a8ce1a9a9366012b1388e6">hwloc_topology_get_support</a></div><div class="ttdeci">const struct hwloc_topology_support * hwloc_topology_get_support(hwloc_topology_t restrict topology)</div><div class="ttdoc">Retrieve the topology support. </div></div>
<div class="ttc" id="a00038_html"><div class="ttname"><a href="a00038.html">hwloc_obj_info_s</a></div><div class="ttdoc">Object info. </div><div class="ttdef"><b>Definition:</b> hwloc.h:567</div></div>
<div class="ttc" id="a00080_html_gafdb374627358bf09203b5a4215b13032"><div class="ttname"><a href="a00080.html#gafdb374627358bf09203b5a4215b13032">hwloc_get_last_cpu_location</a></div><div class="ttdeci">int hwloc_get_last_cpu_location(hwloc_topology_t topology, hwloc_cpuset_t set, int flags)</div><div class="ttdoc">Get the last physical CPU where the current process or thread ran. </div></div>
<div class="ttc" id="a00084_html_ga5ac6917ea7289955fb1ffda4353af9b0"><div class="ttname"><a href="a00084.html#ga5ac6917ea7289955fb1ffda4353af9b0">hwloc_topology_set_userdata_import_callback</a></div><div class="ttdeci">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))</div><div class="ttdoc">Set the application-specific callback for importing userdata. </div></div>
<div class="ttc" id="a00043_html_a46fba33e307909ce256624687799dd6d"><div class="ttname"><a href="a00043.html#a46fba33e307909ce256624687799dd6d">hwloc_topology_cpubind_support::set_thread_cpubind</a></div><div class="ttdeci">unsigned char set_thread_cpubind</div><div class="ttdef"><b>Definition:</b> hwloc.h:982</div></div>
<div class="ttc" id="a00036_html_accd40e29f71f19e88db62ea3df02adc8"><div class="ttname"><a href="a00036.html#accd40e29f71f19e88db62ea3df02adc8">hwloc_obj::attr</a></div><div class="ttdeci">union hwloc_obj_attr_u * attr</div><div class="ttdoc">Object type-specific Attributes, may be NULL if no attribute value was found. </div><div class="ttdef"><b>Definition:</b> hwloc.h:347</div></div>
<div class="ttc" id="a00036_html_af51d08a0a79dba517c06c5afedc8d2dc"><div class="ttname"><a href="a00036.html#af51d08a0a79dba517c06c5afedc8d2dc">hwloc_obj::first_child</a></div><div class="ttdeci">struct hwloc_obj * first_child</div><div class="ttdoc">First child. </div><div class="ttdef"><b>Definition:</b> hwloc.h:373</div></div>
<div class="ttc" id="a00082_html_ga9d80f08eb25b7ac22f1b998dc8bf521f"><div class="ttname"><a href="a00082.html#ga9d80f08eb25b7ac22f1b998dc8bf521f">hwloc_restrict_flags_e</a></div><div class="ttdeci">hwloc_restrict_flags_e</div><div class="ttdoc">Flags to be given to hwloc_topology_restrict(). </div><div class="ttdef"><b>Definition:</b> hwloc.h:2077</div></div>
<div class="ttc" id="a00036_html_a67925e0f2c47f50408fbdb9bddd0790f"><div class="ttname"><a href="a00036.html#a67925e0f2c47f50408fbdb9bddd0790f">hwloc_obj::cpuset</a></div><div class="ttdeci">hwloc_cpuset_t cpuset</div><div class="ttdoc">CPUs covered by this object. </div><div class="ttdef"><b>Definition:</b> hwloc.h:383</div></div>
<div class="ttc" id="a00030_html_a265dd2164aa2df4972e25a029da72125"><div class="ttname"><a href="a00030.html#a265dd2164aa2df4972e25a029da72125">hwloc_obj_attr_u::hwloc_bridge_attr_s::upstream_type</a></div><div class="ttdeci">hwloc_obj_bridge_type_t upstream_type</div><div class="ttdef"><b>Definition:</b> hwloc.h:516</div></div>
<div class="ttc" id="a00042_html_a3d70c84a12f7e93d14c8d47bf4fd9dc5"><div class="ttname"><a href="a00042.html#a3d70c84a12f7e93d14c8d47bf4fd9dc5">hwloc_obj_attr_u::hwloc_pcidev_attr_s::dev</a></div><div class="ttdeci">unsigned char dev</div><div class="ttdef"><b>Definition:</b> hwloc.h:505</div></div>
<div class="ttc" id="a00080_html_ga910a05c2d47f68a3155bf176b50fa555"><div class="ttname"><a href="a00080.html#ga910a05c2d47f68a3155bf176b50fa555">hwloc_get_proc_last_cpu_location</a></div><div class="ttdeci">int hwloc_get_proc_last_cpu_location(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, int flags)</div><div class="ttdoc">Get the last physical CPU where a process ran. </div></div>
<div class="ttc" id="a00077_html_gad1f15795219e2c3ca6d44ba0db604c4f"><div class="ttname"><a href="a00077.html#gad1f15795219e2c3ca6d44ba0db604c4f">hwloc_topology_set_custom</a></div><div class="ttdeci">int hwloc_topology_set_custom(hwloc_topology_t topology)</div><div class="ttdoc">Prepare the topology for custom assembly. </div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55aaf0964881117bdedf1a5e9332cd120dd"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55aaf0964881117bdedf1a5e9332cd120dd">HWLOC_OBJ_NODE</a></div><div class="ttdoc">NUMA node. A set of processors around memory which the processors can directly access. </div><div class="ttdef"><b>Definition:</b> hwloc.h:180</div></div>
<div class="ttc" id="a00034_html_a0f70f48d1bfb18e5e2008825da2967c9"><div class="ttname"><a href="a00034.html#a0f70f48d1bfb18e5e2008825da2967c9">hwloc_distances_s::latency</a></div><div class="ttdeci">float * latency</div><div class="ttdoc">Matrix of latencies between objects, stored as a one-dimension array. May be NULL if the distances co...</div><div class="ttdef"><b>Definition:</b> hwloc.h:554</div></div>
<div class="ttc" id="a00080_html_gga217dc8d373f8958cc93c154ebce1c71ca41ce440443cc3087caed95ab60edcad6"><div class="ttname"><a href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71ca41ce440443cc3087caed95ab60edcad6">HWLOC_CPUBIND_NOMEMBIND</a></div><div class="ttdoc">Avoid any effect on memory binding. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1412</div></div>
<div class="ttc" id="a00074_html_gga64f5d539df299c97ae80ce53fc4b56c0a46f8927e1c3e137eaa86cc8f6861fb83"><div class="ttname"><a href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a46f8927e1c3e137eaa86cc8f6861fb83">HWLOC_OBJ_OSDEV_COPROC</a></div><div class="ttdoc">Operating system co-processor device. For instance "mic0" for a Xeon Phi (MIC) on Linux...</div><div class="ttdef"><b>Definition:</b> hwloc.h:278</div></div>
<div class="ttc" id="a00042_html_a8fba44988deb98613c1505a4019a34dc"><div class="ttname"><a href="a00042.html#a8fba44988deb98613c1505a4019a34dc">hwloc_obj_attr_u::hwloc_pcidev_attr_s::domain</a></div><div class="ttdeci">unsigned short domain</div><div class="ttdef"><b>Definition:</b> hwloc.h:504</div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55a5d8117a54df1fbd3606ab19e42cb0ea9"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a5d8117a54df1fbd3606ab19e42cb0ea9">HWLOC_OBJ_PCI_DEVICE</a></div><div class="ttdoc">PCI device. These objects have neither CPU sets nor node sets. They are not added to the topology unl...</div><div class="ttdef"><b>Definition:</b> hwloc.h:228</div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55a3aa1b842d1fd4207ebce171f95a244ec"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a3aa1b842d1fd4207ebce171f95a244ec">HWLOC_OBJ_SYSTEM</a></div><div class="ttdoc">Whole system (may be a cluster of machines). The whole system that is accessible to hwloc...</div><div class="ttdef"><b>Definition:</b> hwloc.h:170</div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55abca6887e80cb291353b0a0c1da83f661"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55abca6887e80cb291353b0a0c1da83f661">HWLOC_OBJ_PU</a></div><div class="ttdoc">Processing Unit, or (Logical) Processor. An execution unit (may share a core with some other logical ...</div><div class="ttdef"><b>Definition:</b> hwloc.h:195</div></div>
<div class="ttc" id="a00030_html_af3f3f7d76bf03e8d2afa721c2b8d6771"><div class="ttname"><a href="a00030.html#af3f3f7d76bf03e8d2afa721c2b8d6771">hwloc_obj_attr_u::hwloc_bridge_attr_s::subordinate_bus</a></div><div class="ttdeci">unsigned char subordinate_bus</div><div class="ttdef"><b>Definition:</b> hwloc.h:520</div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55a3f4e83ffc4a259354959ae8a9eaa2a80"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a3f4e83ffc4a259354959ae8a9eaa2a80">HWLOC_OBJ_MACHINE</a></div><div class="ttdoc">Machine. The typical root object type. A set of processors and memory with cache coherency. </div><div class="ttdef"><b>Definition:</b> hwloc.h:175</div></div>
<div class="ttc" id="a00078_html_ga789a3f65aedff644be64a18526a03065"><div class="ttname"><a href="a00078.html#ga789a3f65aedff644be64a18526a03065">hwloc_get_nbobjs_by_type</a></div><div class="ttdeci">static int hwloc_get_nbobjs_by_type(hwloc_topology_t topology, hwloc_obj_type_t type)</div><div class="ttdoc">Returns the width of level type type. </div></div>
<div class="ttc" id="a00036_html_afa3c59a6dd3da8ffa48710780a1bfb34"><div class="ttname"><a href="a00036.html#afa3c59a6dd3da8ffa48710780a1bfb34">hwloc_obj::allowed_cpuset</a></div><div class="ttdeci">hwloc_cpuset_t allowed_cpuset</div><div class="ttdoc">The CPU set of allowed logical processors. </div><div class="ttdef"><b>Definition:</b> hwloc.h:415</div></div>
<div class="ttc" id="a00038_html_a115dde58f40338a2d3276d59c099857d"><div class="ttname"><a href="a00038.html#a115dde58f40338a2d3276d59c099857d">hwloc_obj_info_s::name</a></div><div class="ttdeci">char * name</div><div class="ttdoc">Info name. </div><div class="ttdef"><b>Definition:</b> hwloc.h:568</div></div>
<div class="ttc" id="a00053_html_a756f44912894b176bf979a1b65f12aac"><div class="ttname"><a href="a00053.html#a756f44912894b176bf979a1b65f12aac">hwloc_topology_membind_support::set_proc_membind</a></div><div class="ttdeci">unsigned char set_proc_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1000</div></div>
<div class="ttc" id="a00077_html_ggada025d3ec20b4b420f8038d23d6e7bdea129b4fea1300be22bbaf0bb0958994c8"><div class="ttname"><a href="a00077.html#ggada025d3ec20b4b420f8038d23d6e7bdea129b4fea1300be22bbaf0bb0958994c8">HWLOC_TOPOLOGY_FLAG_WHOLE_SYSTEM</a></div><div class="ttdoc">Detect the whole system, ignore reservations and offline settings. </div><div class="ttdef"><b>Definition:</b> hwloc.h:701</div></div>
<div class="ttc" id="a00030_html_acaf1ae02e37182bbb6966f8c4f35e499"><div class="ttname"><a href="a00030.html#acaf1ae02e37182bbb6966f8c4f35e499">hwloc_obj_attr_u::hwloc_bridge_attr_s::downstream</a></div><div class="ttdeci">union hwloc_obj_attr_u::hwloc_bridge_attr_s::@1 downstream</div></div>
<div class="ttc" id="a00078_html_ga8bec782e21be313750da70cf7428b374"><div class="ttname"><a href="a00078.html#ga8bec782e21be313750da70cf7428b374">hwloc_get_type_depth</a></div><div class="ttdeci">int hwloc_get_type_depth(hwloc_topology_t topology, hwloc_obj_type_t type)</div><div class="ttdoc">Returns the depth of objects of type type. </div></div>
<div class="ttc" id="a00081_html_ga972b335a86a7d5e7b34bce2b243c41bc"><div class="ttname"><a href="a00081.html#ga972b335a86a7d5e7b34bce2b243c41bc">hwloc_alloc</a></div><div class="ttdeci">void * hwloc_alloc(hwloc_topology_t topology, size_t len)</div><div class="ttdoc">Allocate some memory. </div></div>
<div class="ttc" id="a00034_html"><div class="ttname"><a href="a00034.html">hwloc_distances_s</a></div><div class="ttdoc">Distances between objects. </div><div class="ttdef"><b>Definition:</b> hwloc.h:546</div></div>
<div class="ttc" id="a00036_html_a76fd3ac94401cf32dfccc3a3a8de68a5"><div class="ttname"><a href="a00036.html#a76fd3ac94401cf32dfccc3a3a8de68a5">hwloc_obj::userdata</a></div><div class="ttdeci">void * userdata</div><div class="ttdoc">Application-given private data pointer, initialized to NULL, use it as you wish. See hwloc_topology_s...</div><div class="ttdef"><b>Definition:</b> hwloc.h:377</div></div>
<div class="ttc" id="a00053_html_ae7cdb1f1b5f0242a69f85b5a5538c764"><div class="ttname"><a href="a00053.html#ae7cdb1f1b5f0242a69f85b5a5538c764">hwloc_topology_membind_support::bind_membind</a></div><div class="ttdeci">unsigned char bind_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1016</div></div>
<div class="ttc" id="a00077_html_ga1f987bca941d6949faf7b1554dd7bc12"><div class="ttname"><a href="a00077.html#ga1f987bca941d6949faf7b1554dd7bc12">hwloc_topology_ignore_type_keep_structure</a></div><div class="ttdeci">int hwloc_topology_ignore_type_keep_structure(hwloc_topology_t topology, hwloc_obj_type_t type)</div><div class="ttdoc">Ignore an object type if it does not bring any structure. </div></div>
<div class="ttc" id="a00078_html_gaf4e663cf42bbe20756b849c6293ef575"><div class="ttname"><a href="a00078.html#gaf4e663cf42bbe20756b849c6293ef575">hwloc_get_type_depth_e</a></div><div class="ttdeci">hwloc_get_type_depth_e</div><div class="ttdef"><b>Definition:</b> hwloc.h:1105</div></div>
<div class="ttc" id="a00081_html_ggab00475fd98815bf4fb9aaf752030e7d2a0335311a0ee04166df2888d52b4a42c6"><div class="ttname"><a href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2a0335311a0ee04166df2888d52b4a42c6">HWLOC_MEMBIND_STRICT</a></div><div class="ttdef"><b>Definition:</b> hwloc.h:1672</div></div>
<div class="ttc" id="a00074_html_ga90c1e82a60ba5871d07645169e636987"><div class="ttname"><a href="a00074.html#ga90c1e82a60ba5871d07645169e636987">hwloc_obj_osdev_type_t</a></div><div class="ttdeci">enum hwloc_obj_osdev_type_e hwloc_obj_osdev_type_t</div><div class="ttdoc">Type of a OS device. </div></div>
<div class="ttc" id="a00081_html_ga53a493e13ad8e5f924b50c07713ee5df"><div class="ttname"><a href="a00081.html#ga53a493e13ad8e5f924b50c07713ee5df">hwloc_set_membind</a></div><div class="ttdeci">int hwloc_set_membind(hwloc_topology_t topology, hwloc_const_cpuset_t cpuset, hwloc_membind_policy_t policy, int flags)</div><div class="ttdoc">Set the default memory binding policy of the current process or thread to prefer the NUMA node(s) nea...</div></div>
<div class="ttc" id="a00078_html_ggaf4e663cf42bbe20756b849c6293ef575afe9a2131073eebbe129d4aa2928d3f46"><div class="ttname"><a href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575afe9a2131073eebbe129d4aa2928d3f46">HWLOC_TYPE_DEPTH_OS_DEVICE</a></div><div class="ttdoc">Virtual depth for software device object level. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1110</div></div>
<div class="ttc" id="a00043_html_a2554620148b7992a5093f338f5ae254f"><div class="ttname"><a href="a00043.html#a2554620148b7992a5093f338f5ae254f">hwloc_topology_cpubind_support::get_proc_last_cpu_location</a></div><div class="ttdeci">unsigned char get_proc_last_cpu_location</div><div class="ttdef"><b>Definition:</b> hwloc.h:988</div></div>
<div class="ttc" id="a00053_html_ab0921af6e0cd6975812a80b8e5c7435c"><div class="ttname"><a href="a00053.html#ab0921af6e0cd6975812a80b8e5c7435c">hwloc_topology_membind_support::nexttouch_membind</a></div><div class="ttdeci">unsigned char nexttouch_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1022</div></div>
<div class="ttc" id="a00077_html_ga2745616b65595e1c1e579ecc7e461fa8"><div class="ttname"><a href="a00077.html#ga2745616b65595e1c1e579ecc7e461fa8">hwloc_topology_set_xmlbuffer</a></div><div class="ttdeci">int hwloc_topology_set_xmlbuffer(hwloc_topology_t restrict topology, const char *restrict buffer, int size)</div><div class="ttdoc">Enable XML based topology using a memory buffer (instead of a file, as with hwloc_topology_set_xml())...</div></div>
<div class="ttc" id="a00084_html_ga1b7358137cec27bd073f58a606ecbaba"><div class="ttname"><a href="a00084.html#ga1b7358137cec27bd073f58a606ecbaba">hwloc_export_obj_userdata_base64</a></div><div class="ttdeci">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)</div><div class="ttdoc">Encode and export some object userdata to XML. </div></div>
<div class="ttc" id="a00053_html_aafa7683871a6a760246f9b35209caec5"><div class="ttname"><a href="a00053.html#aafa7683871a6a760246f9b35209caec5">hwloc_topology_membind_support::migrate_membind</a></div><div class="ttdeci">unsigned char migrate_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1025</div></div>
<div class="ttc" id="a00078_html_ggaf4e663cf42bbe20756b849c6293ef575ae99465995cacde6c210d5fc2e409798c"><div class="ttname"><a href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575ae99465995cacde6c210d5fc2e409798c">HWLOC_TYPE_DEPTH_MULTIPLE</a></div><div class="ttdoc">Objects of given type exist at different depth in the topology. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1107</div></div>
<div class="ttc" id="a00080_html_gac82de91f788fa82dacf99c6e0d4b7158"><div class="ttname"><a href="a00080.html#gac82de91f788fa82dacf99c6e0d4b7158">hwloc_get_proc_cpubind</a></div><div class="ttdeci">int hwloc_get_proc_cpubind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t set, int flags)</div><div class="ttdoc">Get the current physical binding of process pid. </div></div>
<div class="ttc" id="a00081_html_gac9764f79505775d06407b40f5e4661e8"><div class="ttname"><a href="a00081.html#gac9764f79505775d06407b40f5e4661e8">hwloc_membind_policy_t</a></div><div class="ttdeci">hwloc_membind_policy_t</div><div class="ttdoc">Memory binding policy. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1586</div></div>
<div class="ttc" id="a00081_html_ggac9764f79505775d06407b40f5e4661e8ae370075e5af016d42310f87ea5af236b"><div class="ttname"><a href="a00081.html#ggac9764f79505775d06407b40f5e4661e8ae370075e5af016d42310f87ea5af236b">HWLOC_MEMBIND_INTERLEAVE</a></div><div class="ttdoc">Allocate memory on the given nodes in an interleaved / round-robin manner. The precise layout of the ...</div><div class="ttdef"><b>Definition:</b> hwloc.h:1612</div></div>
<div class="ttc" id="a00053_html_a63b0b2e26157b472f5717ee93cc7c535"><div class="ttname"><a href="a00053.html#a63b0b2e26157b472f5717ee93cc7c535">hwloc_topology_membind_support::get_thisthread_membind</a></div><div class="ttdeci">unsigned char get_thisthread_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1006</div></div>
<div class="ttc" id="a00037_html_ae4ba157cc313e2cdd9a82f1c1df7aaa6"><div class="ttname"><a href="a00037.html#ae4ba157cc313e2cdd9a82f1c1df7aaa6">hwloc_obj_attr_u::group</a></div><div class="ttdeci">struct hwloc_obj_attr_u::hwloc_group_attr_s group</div></div>
<div class="ttc" id="a00085_html_gga7ac6f97cc40bd50c40285084f869ba63aaa2702ffba050bab079b3041aec737d4"><div class="ttname"><a href="a00085.html#gga7ac6f97cc40bd50c40285084f869ba63aaa2702ffba050bab079b3041aec737d4">HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_NO_ATTRS</a></div><div class="ttdoc">Do not export level attributes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:2350</div></div>
<div class="ttc" id="a00082_html_ga1472cdf93327dfff4b5b2aedfde29cf3"><div class="ttname"><a href="a00082.html#ga1472cdf93327dfff4b5b2aedfde29cf3">hwloc_topology_insert_misc_object_by_parent</a></div><div class="ttdeci">hwloc_obj_t hwloc_topology_insert_misc_object_by_parent(hwloc_topology_t topology, hwloc_obj_t parent, const char *name)</div><div class="ttdoc">Add a MISC object as a leaf of the topology. </div></div>
<div class="ttc" id="a00043_html_aa166223d1c2a6de7256ab2d8b675a87e"><div class="ttname"><a href="a00043.html#aa166223d1c2a6de7256ab2d8b675a87e">hwloc_topology_cpubind_support::set_proc_cpubind</a></div><div class="ttdeci">unsigned char set_proc_cpubind</div><div class="ttdef"><b>Definition:</b> hwloc.h:974</div></div>
<div class="ttc" id="a00074_html_ga1820ea0dfd8e9dca28f9ea7624df5ae2"><div class="ttname"><a href="a00074.html#ga1820ea0dfd8e9dca28f9ea7624df5ae2">hwloc_compare_types</a></div><div class="ttdeci">int hwloc_compare_types(hwloc_obj_type_t type1, hwloc_obj_type_t type2)</div><div class="ttdoc">Compare the depth of two object types. </div></div>
<div class="ttc" id="a00074_html_gga791c9875c8fe20f3e1e5871e0657e59ba3900b3b2db54941aac249e5a638a2d7a"><div class="ttname"><a href="a00074.html#gga791c9875c8fe20f3e1e5871e0657e59ba3900b3b2db54941aac249e5a638a2d7a">HWLOC_OBJ_CACHE_UNIFIED</a></div><div class="ttdoc">Unified cache. </div><div class="ttdef"><b>Definition:</b> hwloc.h:253</div></div>
<div class="ttc" id="a00036_html_a0d07fb7b8935e137c94d75a3eb492ae9"><div class="ttname"><a href="a00036.html#a0d07fb7b8935e137c94d75a3eb492ae9">hwloc_obj::logical_index</a></div><div class="ttdeci">unsigned logical_index</div><div class="ttdoc">Horizontal index in the whole list of similar objects, could be a "cousin_rank" since it's the rank w...</div><div class="ttdef"><b>Definition:</b> hwloc.h:356</div></div>
<div class="ttc" id="a00037_html"><div class="ttname"><a href="a00037.html">hwloc_obj_attr_u</a></div><div class="ttdoc">Object type-specific Attributes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:488</div></div>
<div class="ttc" id="a00078_html_ga8cf03328ed09901a03664d9498177126"><div class="ttname"><a href="a00078.html#ga8cf03328ed09901a03664d9498177126">hwloc_get_next_obj_by_depth</a></div><div class="ttdeci">static hwloc_obj_t hwloc_get_next_obj_by_depth(hwloc_topology_t topology, unsigned depth, hwloc_obj_t prev)</div><div class="ttdoc">Returns the next object at depth depth. </div></div>
<div class="ttc" id="a00084_html_ga2bf166eda4d3605362ac86f77684002a"><div class="ttname"><a href="a00084.html#ga2bf166eda4d3605362ac86f77684002a">hwloc_topology_export_xml</a></div><div class="ttdeci">int hwloc_topology_export_xml(hwloc_topology_t topology, const char *xmlpath)</div><div class="ttdoc">Export the topology into an XML file. </div></div>
<div class="ttc" id="a00074_html_gga791c9875c8fe20f3e1e5871e0657e59bacac60ecad4206f85aeb79bef1604b488"><div class="ttname"><a href="a00074.html#gga791c9875c8fe20f3e1e5871e0657e59bacac60ecad4206f85aeb79bef1604b488">HWLOC_OBJ_CACHE_DATA</a></div><div class="ttdoc">Data cache. </div><div class="ttdef"><b>Definition:</b> hwloc.h:254</div></div>
<div class="ttc" id="a00074_html_gga64f5d539df299c97ae80ce53fc4b56c0aa3a09798ef2836abb236dc3a645ffc90"><div class="ttname"><a href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0aa3a09798ef2836abb236dc3a645ffc90">HWLOC_OBJ_OSDEV_GPU</a></div><div class="ttdoc">Operating system GPU device. For instance ":0.0" for a GL display, "card0" for a Linux DRM device...</div><div class="ttdef"><b>Definition:</b> hwloc.h:269</div></div>
<div class="ttc" id="a00076_html_ga9f34a640b6fd28d23699d4d084667b15"><div class="ttname"><a href="a00076.html#ga9f34a640b6fd28d23699d4d084667b15">hwloc_topology_destroy</a></div><div class="ttdeci">void hwloc_topology_destroy(hwloc_topology_t topology)</div><div class="ttdoc">Terminate and free a topology context. </div></div>
<div class="ttc" id="a00081_html_ga1058b0b9216bc6fd9c3734ea9dca1e54"><div class="ttname"><a href="a00081.html#ga1058b0b9216bc6fd9c3734ea9dca1e54">hwloc_alloc_membind</a></div><div class="ttdeci">void * hwloc_alloc_membind(hwloc_topology_t topology, size_t len, hwloc_const_cpuset_t cpuset, hwloc_membind_policy_t policy, int flags)</div><div class="ttdoc">Allocate some memory on memory nodes near the given physical cpuset cpuset. </div></div>
<div class="ttc" id="a00077_html_ga341fc17b5867a4715570baab131f68cd"><div class="ttname"><a href="a00077.html#ga341fc17b5867a4715570baab131f68cd">hwloc_topology_set_pid</a></div><div class="ttdeci">int hwloc_topology_set_pid(hwloc_topology_t restrict topology, hwloc_pid_t pid)</div><div class="ttdoc">Change which pid the topology is viewed from. </div></div>
<div class="ttc" id="a00054_html"><div class="ttname"><a href="a00054.html">hwloc_topology_support</a></div><div class="ttdoc">Set of flags describing actual support for this topology. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1034</div></div>
<div class="ttc" id="a00036_html_aaa6043eee6f55869933c1d974efd9acd"><div class="ttname"><a href="a00036.html#aaa6043eee6f55869933c1d974efd9acd">hwloc_obj::sibling_rank</a></div><div class="ttdeci">unsigned sibling_rank</div><div class="ttdoc">Index in parent's children[] array. </div><div class="ttdef"><b>Definition:</b> hwloc.h:366</div></div>
<div class="ttc" id="a00074_html_gab6e1e7efedae8b341f3ee14fbe53d66c"><div class="ttname"><a href="a00074.html#gab6e1e7efedae8b341f3ee14fbe53d66c">hwloc_obj_cache_type_t</a></div><div class="ttdeci">enum hwloc_obj_cache_type_e hwloc_obj_cache_type_t</div><div class="ttdoc">Cache type. </div></div>
<div class="ttc" id="a00052_html"><div class="ttname"><a href="a00052.html">hwloc_topology_discovery_support</a></div><div class="ttdoc">Flags describing actual discovery support for this topology. </div><div class="ttdef"><b>Definition:</b> hwloc.h:962</div></div>
<div class="ttc" id="a00036_html_a08f0d0e16c619a6e653526cbee4ffea3"><div class="ttname"><a href="a00036.html#a08f0d0e16c619a6e653526cbee4ffea3">hwloc_obj::nodeset</a></div><div class="ttdeci">hwloc_nodeset_t nodeset</div><div class="ttdoc">NUMA nodes covered by this object or containing this object. </div><div class="ttdef"><b>Definition:</b> hwloc.h:426</div></div>
<div class="ttc" id="a00075_html_ga79b8ab56877ef99ac59b833203391c7d"><div class="ttname"><a href="a00075.html#ga79b8ab56877ef99ac59b833203391c7d">hwloc_obj_t</a></div><div class="ttdeci">struct hwloc_obj * hwloc_obj_t</div><div class="ttdoc">Convenience typedef; a pointer to a struct hwloc_obj. </div><div class="ttdef"><b>Definition:</b> hwloc.h:485</div></div>
<div class="ttc" id="a00081_html_ga7d473e80f11d774421688e36e9926136"><div class="ttname"><a href="a00081.html#ga7d473e80f11d774421688e36e9926136">hwloc_alloc_membind_policy_nodeset</a></div><div class="ttdeci">static void * hwloc_alloc_membind_policy_nodeset(hwloc_topology_t topology, size_t len, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags)</div><div class="ttdoc">Allocate some memory on the given nodeset nodeset. </div></div>
<div class="ttc" id="a00036_html_a04d05403da37bfe17cd63b7c7dd07b1f"><div class="ttname"><a href="a00036.html#a04d05403da37bfe17cd63b7c7dd07b1f">hwloc_obj::children</a></div><div class="ttdeci">struct hwloc_obj ** children</div><div class="ttdoc">Children, children[0 .. arity -1]. </div><div class="ttdef"><b>Definition:</b> hwloc.h:372</div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55a51e7280240fd9f25589cbbe538bdb075"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a51e7280240fd9f25589cbbe538bdb075">HWLOC_OBJ_OS_DEVICE</a></div><div class="ttdoc">Operating system device. These objects have neither CPU sets nor node sets. They are not added to the...</div><div class="ttdef"><b>Definition:</b> hwloc.h:233</div></div>
<div class="ttc" id="a00085_html_ga24b7864a1c588309c4749f621f03b4c7"><div class="ttname"><a href="a00085.html#ga24b7864a1c588309c4749f621f03b4c7">hwloc_topology_export_synthetic</a></div><div class="ttdeci">int hwloc_topology_export_synthetic(hwloc_topology_t topology, char *buffer, size_t buflen, unsigned long flags)</div><div class="ttdoc">Export the topology as a synthetic string. </div></div>
<div class="ttc" id="a00040_html"><div class="ttname"><a href="a00040.html">hwloc_obj_memory_s</a></div><div class="ttdoc">Object memory. </div><div class="ttdef"><b>Definition:</b> hwloc.h:318</div></div>
<div class="ttc" id="a00036_html_a0f41a1d67dc6b661906f2217563637f3"><div class="ttname"><a href="a00036.html#a0f41a1d67dc6b661906f2217563637f3">hwloc_obj::symmetric_subtree</a></div><div class="ttdeci">int symmetric_subtree</div><div class="ttdoc">Set if the subtree of objects below this object is symmetric, which means all children and their chil...</div><div class="ttdef"><b>Definition:</b> hwloc.h:476</div></div>
<div class="ttc" id="a00079_html_ga8f8452fa8e707cad59b8a73a6fa06059"><div class="ttname"><a href="a00079.html#ga8f8452fa8e707cad59b8a73a6fa06059">hwloc_obj_type_sscanf</a></div><div class="ttdeci">int hwloc_obj_type_sscanf(const char *string, hwloc_obj_type_t *typep, int *depthattrp, void *typeattrp, size_t typeattrsize)</div><div class="ttdoc">Return an object type and attributes from a type string. </div></div>
<div class="ttc" id="a00035_html_ad914eac61c77481e1b7037877bcc5579"><div class="ttname"><a href="a00035.html#ad914eac61c77481e1b7037877bcc5579">hwloc_obj_attr_u::hwloc_group_attr_s::depth</a></div><div class="ttdeci">unsigned depth</div><div class="ttdoc">Depth of group object. </div><div class="ttdef"><b>Definition:</b> hwloc.h:500</div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55a6825f10895fea60aca7a6ba9fe273db0"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a6825f10895fea60aca7a6ba9fe273db0">HWLOC_OBJ_BRIDGE</a></div><div class="ttdoc">Bridge. Any bridge that connects the host or an I/O bus, to another I/O bus. Bridge objects have neit...</div><div class="ttdef"><b>Definition:</b> hwloc.h:221</div></div>
<div class="ttc" id="a00053_html_a36b3e388df9c6a249427cab7e3724749"><div class="ttname"><a href="a00053.html#a36b3e388df9c6a249427cab7e3724749">hwloc_topology_membind_support::set_thisproc_membind</a></div><div class="ttdeci">unsigned char set_thisproc_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:996</div></div>
<div class="ttc" id="a00081_html_ggab00475fd98815bf4fb9aaf752030e7d2a1dc7dd5cdcd5796893a325a524555298"><div class="ttname"><a href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2a1dc7dd5cdcd5796893a325a524555298">HWLOC_MEMBIND_THREAD</a></div><div class="ttdoc">Set policy for a specific thread of the current process. This flag is mutually exclusive with HWLOC_M...</div><div class="ttdef"><b>Definition:</b> hwloc.h:1664</div></div>
<div class="ttc" id="a00079_html_gab358661a92bb27d8542b255cc9f6f25e"><div class="ttname"><a href="a00079.html#gab358661a92bb27d8542b255cc9f6f25e">hwloc_obj_get_info_by_name</a></div><div class="ttdeci">static const char * hwloc_obj_get_info_by_name(hwloc_obj_t obj, const char *name)</div><div class="ttdoc">Search the given key name in object infos and return the corresponding value. </div></div>
<div class="ttc" id="a00074_html_gga48a4803c72574191d7ead1c62aaf9860a2c7660f3864ad2810c1e72aad285e574"><div class="ttname"><a href="a00074.html#gga48a4803c72574191d7ead1c62aaf9860a2c7660f3864ad2810c1e72aad285e574">HWLOC_OBJ_BRIDGE_HOST</a></div><div class="ttdoc">Host-side of a bridge, only possible upstream. </div><div class="ttdef"><b>Definition:</b> hwloc.h:261</div></div>
<div class="ttc" id="a00036_html_a7f2343ed476fe4942e6fffd4cade1b40"><div class="ttname"><a href="a00036.html#a7f2343ed476fe4942e6fffd4cade1b40">hwloc_obj::next_sibling</a></div><div class="ttdeci">struct hwloc_obj * next_sibling</div><div class="ttdoc">Next object below the same parent. </div><div class="ttdef"><b>Definition:</b> hwloc.h:367</div></div>
<div class="ttc" id="a00076_html_gaf6746bc3a558ef1ac8348b4491d091b5"><div class="ttname"><a href="a00076.html#gaf6746bc3a558ef1ac8348b4491d091b5">hwloc_topology_check</a></div><div class="ttdeci">void hwloc_topology_check(hwloc_topology_t topology)</div><div class="ttdoc">Run internal checks on a topology structure. </div></div>
<div class="ttc" id="a00073_html_ga1f784433e9b606261f62d1134f6a3b25"><div class="ttname"><a href="a00073.html#ga1f784433e9b606261f62d1134f6a3b25">hwloc_const_cpuset_t</a></div><div class="ttdeci">hwloc_const_bitmap_t hwloc_const_cpuset_t</div><div class="ttdoc">A non-modifiable hwloc_cpuset_t. </div><div class="ttdef"><b>Definition:</b> hwloc.h:124</div></div>
<div class="ttc" id="a00081_html_ggab00475fd98815bf4fb9aaf752030e7d2a1b1b74aef138f64aff214a8cbdfe8eb4"><div class="ttname"><a href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2a1b1b74aef138f64aff214a8cbdfe8eb4">HWLOC_MEMBIND_PROCESS</a></div><div class="ttdoc">Set policy for all threads of the specified (possibly multithreaded) process. This flag is mutually e...</div><div class="ttdef"><b>Definition:</b> hwloc.h:1659</div></div>
<div class="ttc" id="a00036_html_a85a788017457129589318b6c39451acf"><div class="ttname"><a href="a00036.html#a85a788017457129589318b6c39451acf">hwloc_obj::next_cousin</a></div><div class="ttdeci">struct hwloc_obj * next_cousin</div><div class="ttdoc">Next object of same type and depth. </div><div class="ttdef"><b>Definition:</b> hwloc.h:361</div></div>
<div class="ttc" id="a00042_html_a499db3d8cc89eaba04fcaef3df1cba97"><div class="ttname"><a href="a00042.html#a499db3d8cc89eaba04fcaef3df1cba97">hwloc_obj_attr_u::hwloc_pcidev_attr_s::subvendor_id</a></div><div class="ttdeci">unsigned short subvendor_id</div><div class="ttdef"><b>Definition:</b> hwloc.h:507</div></div>
<div class="ttc" id="a00036_html_a9843acc28cfbba903b63ea14b137ff70"><div class="ttname"><a href="a00036.html#a9843acc28cfbba903b63ea14b137ff70">hwloc_obj::infos_count</a></div><div class="ttdeci">unsigned infos_count</div><div class="ttdoc">Size of infos array. </div><div class="ttdef"><b>Definition:</b> hwloc.h:474</div></div>
<div class="ttc" id="a00036_html_a91788a9da687beb7224cc1fd7b75208c"><div class="ttname"><a href="a00036.html#a91788a9da687beb7224cc1fd7b75208c">hwloc_obj::complete_cpuset</a></div><div class="ttdeci">hwloc_cpuset_t complete_cpuset</div><div class="ttdoc">The complete CPU set of logical processors of this object,. </div><div class="ttdef"><b>Definition:</b> hwloc.h:396</div></div>
<div class="ttc" id="a00073_html_ga2f5276235841ad66a79bedad16a5a10c"><div class="ttname"><a href="a00073.html#ga2f5276235841ad66a79bedad16a5a10c">hwloc_const_nodeset_t</a></div><div class="ttdeci">hwloc_const_bitmap_t hwloc_const_nodeset_t</div><div class="ttdoc">A non-modifiable hwloc_nodeset_t. </div><div class="ttdef"><b>Definition:</b> hwloc.h:144</div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55a1ac6e07775ae4324b3fe9dbd72c785ec"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a1ac6e07775ae4324b3fe9dbd72c785ec">HWLOC_OBJ_SOCKET</a></div><div class="ttdoc">Socket, physical package, or chip. In the physical meaning, i.e. that you can add or remove physicall...</div><div class="ttdef"><b>Definition:</b> hwloc.h:184</div></div>
<div class="ttc" id="a00078_html_ga8cc04ad9eb03b0b74d420adf8cc11ad2"><div class="ttname"><a href="a00078.html#ga8cc04ad9eb03b0b74d420adf8cc11ad2">hwloc_get_depth_type</a></div><div class="ttdeci">hwloc_obj_type_t hwloc_get_depth_type(hwloc_topology_t topology, unsigned depth)</div><div class="ttdoc">Returns the type of objects at depth depth. </div></div>
<div class="ttc" id="a00082_html_gaffdb5403e5178b0d29852dd3319de3fc"><div class="ttname"><a href="a00082.html#gaffdb5403e5178b0d29852dd3319de3fc">hwloc_topology_restrict</a></div><div class="ttdeci">int hwloc_topology_restrict(hwloc_topology_t restrict topology, hwloc_const_cpuset_t cpuset, unsigned long flags)</div><div class="ttdoc">Restrict the topology to the given CPU set. </div></div>
<div class="ttc" id="a00080_html_gga217dc8d373f8958cc93c154ebce1c71ca679a7e0f0c7ee06b123565f90d98e7fa"><div class="ttname"><a href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71ca679a7e0f0c7ee06b123565f90d98e7fa">HWLOC_CPUBIND_STRICT</a></div><div class="ttdoc">Request for strict binding from the OS. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1395</div></div>
<div class="ttc" id="a00037_html_ab5a8ae3bf490e6b1071fea53f7382836"><div class="ttname"><a href="a00037.html#ab5a8ae3bf490e6b1071fea53f7382836">hwloc_obj_attr_u::cache</a></div><div class="ttdeci">struct hwloc_obj_attr_u::hwloc_cache_attr_s cache</div></div>
<div class="ttc" id="a00082_html_gga9d80f08eb25b7ac22f1b998dc8bf521faa95d6985e36ec1e55f68b210297a85cb"><div class="ttname"><a href="a00082.html#gga9d80f08eb25b7ac22f1b998dc8bf521faa95d6985e36ec1e55f68b210297a85cb">HWLOC_RESTRICT_FLAG_ADAPT_IO</a></div><div class="ttdoc">Move I/O objects to ancestors if their parents are removed during restriction. If this flag is not se...</div><div class="ttdef"><b>Definition:</b> hwloc.h:2094</div></div>
<div class="ttc" id="a00030_html_a2c31e565a5f0d23d0a0a3dd3ec8f4b17"><div class="ttname"><a href="a00030.html#a2c31e565a5f0d23d0a0a3dd3ec8f4b17">hwloc_obj_attr_u::hwloc_bridge_attr_s::domain</a></div><div class="ttdeci">unsigned short domain</div><div class="ttdef"><b>Definition:</b> hwloc.h:519</div></div>
<div class="ttc" id="a00077_html_ga4fab186bb6181a00bcf585825fddd38d"><div class="ttname"><a href="a00077.html#ga4fab186bb6181a00bcf585825fddd38d">hwloc_topology_set_synthetic</a></div><div class="ttdeci">int hwloc_topology_set_synthetic(hwloc_topology_t restrict topology, const char *restrict description)</div><div class="ttdoc">Enable synthetic topology. </div></div>
<div class="ttc" id="a00084_html_ga7cbf8a2d8579d192911007650366fc8a"><div class="ttname"><a href="a00084.html#ga7cbf8a2d8579d192911007650366fc8a">hwloc_topology_export_xmlbuffer</a></div><div class="ttdeci">int hwloc_topology_export_xmlbuffer(hwloc_topology_t topology, char **xmlbuffer, int *buflen)</div><div class="ttdoc">Export the topology into a newly-allocated XML memory buffer. </div></div>
<div class="ttc" id="a00074_html_gga64f5d539df299c97ae80ce53fc4b56c0a689b0488c3c0d08d116751c6b9cb8871"><div class="ttname"><a href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a689b0488c3c0d08d116751c6b9cb8871">HWLOC_OBJ_OSDEV_BLOCK</a></div><div class="ttdoc">Operating system block device. For instance "sda" on Linux. </div><div class="ttdef"><b>Definition:</b> hwloc.h:267</div></div>
<div class="ttc" id="a00031_html"><div class="ttname"><a href="a00031.html">hwloc_obj_attr_u::hwloc_cache_attr_s</a></div><div class="ttdoc">Cache-specific Object Attributes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:490</div></div>
<div class="ttc" id="a00036_html_a8842d56c2975380f327ea401c5f53564"><div class="ttname"><a href="a00036.html#a8842d56c2975380f327ea401c5f53564">hwloc_obj::online_cpuset</a></div><div class="ttdeci">hwloc_cpuset_t online_cpuset</div><div class="ttdoc">The CPU set of online logical processors. </div><div class="ttdef"><b>Definition:</b> hwloc.h:407</div></div>
<div class="ttc" id="a00076_html_gabdf58d87ad77f6615fccdfe0535ff826"><div class="ttname"><a href="a00076.html#gabdf58d87ad77f6615fccdfe0535ff826">hwloc_topology_load</a></div><div class="ttdeci">int hwloc_topology_load(hwloc_topology_t topology)</div><div class="ttdoc">Build the actual topology. </div></div>
<div class="ttc" id="a00053_html_ae551abb27d2aa9ce008583488b845b98"><div class="ttname"><a href="a00053.html#ae551abb27d2aa9ce008583488b845b98">hwloc_topology_membind_support::alloc_membind</a></div><div class="ttdeci">unsigned char alloc_membind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1012</div></div>
<div class="ttc" id="a00031_html_ad06525e474d1e2d1423ed71bb998592d"><div class="ttname"><a href="a00031.html#ad06525e474d1e2d1423ed71bb998592d">hwloc_obj_attr_u::hwloc_cache_attr_s::associativity</a></div><div class="ttdeci">int associativity</div><div class="ttdoc">Ways of associativity, -1 if fully associative, 0 if unknown. </div><div class="ttdef"><b>Definition:</b> hwloc.h:494</div></div>
<div class="ttc" id="a00043_html_a57a89a4b5f1f74fa6cfe176f1e8b0798"><div class="ttname"><a href="a00043.html#a57a89a4b5f1f74fa6cfe176f1e8b0798">hwloc_topology_cpubind_support::set_thisthread_cpubind</a></div><div class="ttdeci">unsigned char set_thisthread_cpubind</div><div class="ttdef"><b>Definition:</b> hwloc.h:978</div></div>
<div class="ttc" id="a00077_html_ga90ed5733946b2e9aba90d2e2c1fbfbd7"><div class="ttname"><a href="a00077.html#ga90ed5733946b2e9aba90d2e2c1fbfbd7">hwloc_topology_set_distance_matrix</a></div><div class="ttdeci">int hwloc_topology_set_distance_matrix(hwloc_topology_t restrict topology, hwloc_obj_type_t type, unsigned nbobjs, unsigned *os_index, float *distances)</div><div class="ttdoc">Provide a distance matrix. </div></div>
<div class="ttc" id="a00077_html_gaaeed4df656979e5f16befea9d29b814b"><div class="ttname"><a href="a00077.html#gaaeed4df656979e5f16befea9d29b814b">hwloc_topology_set_flags</a></div><div class="ttdeci">int hwloc_topology_set_flags(hwloc_topology_t topology, unsigned long flags)</div><div class="ttdoc">Set OR'ed flags to non-yet-loaded topology. </div></div>
<div class="ttc" id="a00081_html_ga5cac0bcbe770b43fc63a6b00ea4a7a9d"><div class="ttname"><a href="a00081.html#ga5cac0bcbe770b43fc63a6b00ea4a7a9d">hwloc_set_membind_nodeset</a></div><div class="ttdeci">int hwloc_set_membind_nodeset(hwloc_topology_t topology, hwloc_const_nodeset_t nodeset, hwloc_membind_policy_t policy, int flags)</div><div class="ttdoc">Set the default memory binding policy of the current process or thread to prefer the NUMA node(s) spe...</div></div>
<div class="ttc" id="a00030_html_ab5c564e7c95b747dae9eb84ec0a2c31e"><div class="ttname"><a href="a00030.html#ab5c564e7c95b747dae9eb84ec0a2c31e">hwloc_obj_attr_u::hwloc_bridge_attr_s::pci</a></div><div class="ttdeci">struct hwloc_pcidev_attr_s pci</div><div class="ttdef"><b>Definition:</b> hwloc.h:514</div></div>
<div class="ttc" id="a00081_html_gab00475fd98815bf4fb9aaf752030e7d2"><div class="ttname"><a href="a00081.html#gab00475fd98815bf4fb9aaf752030e7d2">hwloc_membind_flags_t</a></div><div class="ttdeci">hwloc_membind_flags_t</div><div class="ttdoc">Memory binding flags. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1654</div></div>
<div class="ttc" id="a00074_html_gga64f5d539df299c97ae80ce53fc4b56c0ab715d81155f771573c8682dffc65021b"><div class="ttname"><a href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0ab715d81155f771573c8682dffc65021b">HWLOC_OBJ_OSDEV_NETWORK</a></div><div class="ttdoc">Operating system network device. For instance the "eth0" interface on Linux. </div><div class="ttdef"><b>Definition:</b> hwloc.h:272</div></div>
<div class="ttc" id="a00042_html_a13ad54c93d08d8ac808e4de9674c5ee7"><div class="ttname"><a href="a00042.html#a13ad54c93d08d8ac808e4de9674c5ee7">hwloc_obj_attr_u::hwloc_pcidev_attr_s::revision</a></div><div class="ttdeci">unsigned char revision</div><div class="ttdef"><b>Definition:</b> hwloc.h:508</div></div>
<div class="ttc" id="a00076_html_ga03fd4a16d8b9ee1ffc32b25fd2f6bdfa"><div class="ttname"><a href="a00076.html#ga03fd4a16d8b9ee1ffc32b25fd2f6bdfa">hwloc_topology_init</a></div><div class="ttdeci">int hwloc_topology_init(hwloc_topology_t *topologyp)</div><div class="ttdoc">Allocate a topology context. </div></div>
<div class="ttc" id="a00079_html_ga5ca0bf94bbbb080d0eff17a57bd90422"><div class="ttname"><a href="a00079.html#ga5ca0bf94bbbb080d0eff17a57bd90422">hwloc_obj_type_string</a></div><div class="ttdeci">const char * hwloc_obj_type_string(hwloc_obj_type_t type)</div><div class="ttdoc">Return a stringified topology object type. </div></div>
<div class="ttc" id="a00054_html_adef2bb91f74c3e70a2a071393caf5f56"><div class="ttname"><a href="a00054.html#adef2bb91f74c3e70a2a071393caf5f56">hwloc_topology_support::cpubind</a></div><div class="ttdeci">struct hwloc_topology_cpubind_support * cpubind</div><div class="ttdef"><b>Definition:</b> hwloc.h:1036</div></div>
<div class="ttc" id="a00074_html_ga0a947e8c5adcc729b126bd09c01a0153"><div class="ttname"><a href="a00074.html#ga0a947e8c5adcc729b126bd09c01a0153">hwloc_obj_bridge_type_t</a></div><div class="ttdeci">enum hwloc_obj_bridge_type_e hwloc_obj_bridge_type_t</div><div class="ttdoc">Type of one side (upstream or downstream) of an I/O bridge. </div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55a19f8a6953fa91efc76bcbcdf2d22de4d"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a19f8a6953fa91efc76bcbcdf2d22de4d">HWLOC_OBJ_MISC</a></div><div class="ttdoc">Miscellaneous objects. Objects without particular meaning, that can e.g. be added by the application ...</div><div class="ttdef"><b>Definition:</b> hwloc.h:216</div></div>
<div class="ttc" id="a00036_html_a8be6f63eca4da91000c832280db927b7"><div class="ttname"><a href="a00036.html#a8be6f63eca4da91000c832280db927b7">hwloc_obj::distances_count</a></div><div class="ttdeci">unsigned distances_count</div><div class="ttdef"><b>Definition:</b> hwloc.h:471</div></div>
<div class="ttc" id="a00040_html_aace044c7f3fd9dffe50202296bf1dc5a"><div class="ttname"><a href="a00040.html#aace044c7f3fd9dffe50202296bf1dc5a">hwloc_obj_memory_s::local_memory</a></div><div class="ttdeci">hwloc_uint64_t local_memory</div><div class="ttdoc">Local memory (in bytes) </div><div class="ttdef"><b>Definition:</b> hwloc.h:320</div></div>
<div class="ttc" id="a00078_html_ggaf4e663cf42bbe20756b849c6293ef575a0565ab92ab72cb0cec91e23003294aad"><div class="ttname"><a href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575a0565ab92ab72cb0cec91e23003294aad">HWLOC_TYPE_DEPTH_UNKNOWN</a></div><div class="ttdoc">No object of given type exists in the topology. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1106</div></div>
<div class="ttc" id="a00085_html_gga7ac6f97cc40bd50c40285084f869ba63a3b3bd4ba2ef9990810865e561034ccc9"><div class="ttname"><a href="a00085.html#gga7ac6f97cc40bd50c40285084f869ba63a3b3bd4ba2ef9990810865e561034ccc9">HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_NO_EXTENDED_TYPES</a></div><div class="ttdoc">Export extended types such as L2dcache as basic types such as Cache. </div><div class="ttdef"><b>Definition:</b> hwloc.h:2342</div></div>
<div class="ttc" id="a00053_html"><div class="ttname"><a href="a00053.html">hwloc_topology_membind_support</a></div><div class="ttdoc">Flags describing actual memory binding support for this topology. </div><div class="ttdef"><b>Definition:</b> hwloc.h:994</div></div>
<div class="ttc" id="a00079_html_ga8e0472dfa655c68c0c9072e1ee3a1e03"><div class="ttname"><a href="a00079.html#ga8e0472dfa655c68c0c9072e1ee3a1e03">hwloc_obj_cpuset_snprintf</a></div><div class="ttdeci">int hwloc_obj_cpuset_snprintf(char *restrict str, size_t size, size_t nobj, const hwloc_obj_t *restrict objs)</div><div class="ttdoc">Stringify the cpuset containing a set of objects. </div></div>
<div class="ttc" id="a00043_html_a9403d51657a4d546b3ea9553a2973a27"><div class="ttname"><a href="a00043.html#a9403d51657a4d546b3ea9553a2973a27">hwloc_topology_cpubind_support::set_thisproc_cpubind</a></div><div class="ttdeci">unsigned char set_thisproc_cpubind</div><div class="ttdef"><b>Definition:</b> hwloc.h:970</div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55a56ee0b7eca88f363b75b34fdde8c9ddc"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55a56ee0b7eca88f363b75b34fdde8c9ddc">HWLOC_OBJ_CACHE</a></div><div class="ttdoc">Cache. Can be L1i, L1d, L2, L3, ... </div><div class="ttdef"><b>Definition:</b> hwloc.h:188</div></div>
<div class="ttc" id="a00074_html_gga791c9875c8fe20f3e1e5871e0657e59ba6f98b0d422b38ba90c5f5c79a11b0658"><div class="ttname"><a href="a00074.html#gga791c9875c8fe20f3e1e5871e0657e59ba6f98b0d422b38ba90c5f5c79a11b0658">HWLOC_OBJ_CACHE_INSTRUCTION</a></div><div class="ttdoc">Instruction cache. Only used when the HWLOC_TOPOLOGY_FLAG_ICACHES topology flag is set...</div><div class="ttdef"><b>Definition:</b> hwloc.h:255</div></div>
<div class="ttc" id="a00036_html_a61a7a80a68eaccbaaa28269e678c81a9"><div class="ttname"><a href="a00036.html#a61a7a80a68eaccbaaa28269e678c81a9">hwloc_obj::os_index</a></div><div class="ttdeci">unsigned os_index</div><div class="ttdoc">OS-provided physical index number. </div><div class="ttdef"><b>Definition:</b> hwloc.h:342</div></div>
<div class="ttc" id="a00073_html_ga4bbf39b68b6f568fb92739e7c0ea7801"><div class="ttname"><a href="a00073.html#ga4bbf39b68b6f568fb92739e7c0ea7801">hwloc_cpuset_t</a></div><div class="ttdeci">hwloc_bitmap_t hwloc_cpuset_t</div><div class="ttdoc">A CPU set is a bitmap whose bits are set according to CPU physical OS indexes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:122</div></div>
<div class="ttc" id="a00074_html_gga64f5d539df299c97ae80ce53fc4b56c0a827ad1643360711a8b6c6af671366791"><div class="ttname"><a href="a00074.html#gga64f5d539df299c97ae80ce53fc4b56c0a827ad1643360711a8b6c6af671366791">HWLOC_OBJ_OSDEV_DMA</a></div><div class="ttdoc">Operating system dma engine device. For instance the "dma0chan0" DMA channel on Linux. </div><div class="ttdef"><b>Definition:</b> hwloc.h:276</div></div>
<div class="ttc" id="a00036_html_a1dc830816716213b5f797e4052487864"><div class="ttname"><a href="a00036.html#a1dc830816716213b5f797e4052487864">hwloc_obj::memory</a></div><div class="ttdeci">struct hwloc_obj_memory_s memory</div><div class="ttdoc">Memory attributes. </div><div class="ttdef"><b>Definition:</b> hwloc.h:345</div></div>
<div class="ttc" id="a00079_html_gadb8765c260edea80c52cd06a76639ba4"><div class="ttname"><a href="a00079.html#gadb8765c260edea80c52cd06a76639ba4">hwloc_obj_type_snprintf</a></div><div class="ttdeci">int hwloc_obj_type_snprintf(char *restrict string, size_t size, hwloc_obj_t obj, int verbose)</div><div class="ttdoc">Stringify the type of a given topology object into a human-readable form. </div></div>
<div class="ttc" id="a00036_html_ac715989f55ff5a0eb6be2969ee477ec0"><div class="ttname"><a href="a00036.html#ac715989f55ff5a0eb6be2969ee477ec0">hwloc_obj::prev_cousin</a></div><div class="ttdeci">struct hwloc_obj * prev_cousin</div><div class="ttdoc">Previous object of same type and depth. </div><div class="ttdef"><b>Definition:</b> hwloc.h:362</div></div>
<div class="ttc" id="a00036_html_ac38c4012127525ef74c5615c526f4c2e"><div class="ttname"><a href="a00036.html#ac38c4012127525ef74c5615c526f4c2e">hwloc_obj::complete_nodeset</a></div><div class="ttdeci">hwloc_nodeset_t complete_nodeset</div><div class="ttdoc">The complete NUMA node set of this object,. </div><div class="ttdef"><b>Definition:</b> hwloc.h:443</div></div>
<div class="ttc" id="a00081_html_gac5075b7a2bf55f48f4622351817addad"><div class="ttname"><a href="a00081.html#gac5075b7a2bf55f48f4622351817addad">hwloc_get_proc_membind_nodeset</a></div><div class="ttdeci">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)</div><div class="ttdoc">Query the default memory binding policy and physical locality of the specified process. </div></div>
<div class="ttc" id="a00096_html_gaa3c2bf4c776d603dcebbb61b0c923d84"><div class="ttname"><a href="a00096.html#gaa3c2bf4c776d603dcebbb61b0c923d84">hwloc_bitmap_t</a></div><div class="ttdeci">struct hwloc_bitmap_s * hwloc_bitmap_t</div><div class="ttdoc">Set of bits represented as an opaque pointer to an internal bitmap. </div><div class="ttdef"><b>Definition:</b> bitmap.h:50</div></div>
<div class="ttc" id="a00076_html_ga9d1e76ee15a7dee158b786c30b6a6e38"><div class="ttname"><a href="a00076.html#ga9d1e76ee15a7dee158b786c30b6a6e38">hwloc_topology_t</a></div><div class="ttdeci">struct hwloc_topology * hwloc_topology_t</div><div class="ttdoc">Topology context. </div><div class="ttdef"><b>Definition:</b> hwloc.h:585</div></div>
<div class="ttc" id="a00074_html_ggacd37bb612667dc437d66bfb175a8dc55ac793958f330bca371aa1535de8aff45f"><div class="ttname"><a href="a00074.html#ggacd37bb612667dc437d66bfb175a8dc55ac793958f330bca371aa1535de8aff45f">HWLOC_OBJ_CORE</a></div><div class="ttdoc">Core. A computation unit (may be shared by several logical processors). </div><div class="ttdef"><b>Definition:</b> hwloc.h:191</div></div>
<div class="ttc" id="a00078_html_gabf8a98ad085460a4982cc7b74c344b71"><div class="ttname"><a href="a00078.html#gabf8a98ad085460a4982cc7b74c344b71">hwloc_get_obj_by_depth</a></div><div class="ttdeci">hwloc_obj_t hwloc_get_obj_by_depth(hwloc_topology_t topology, unsigned depth, unsigned idx)</div><div class="ttdoc">Returns the topology object at logical index idx from depth depth. </div></div>
<div class="ttc" id="a00081_html_ggab00475fd98815bf4fb9aaf752030e7d2aa6e49e54f52827cb143cc869cfd748af"><div class="ttname"><a href="a00081.html#ggab00475fd98815bf4fb9aaf752030e7d2aa6e49e54f52827cb143cc869cfd748af">HWLOC_MEMBIND_MIGRATE</a></div><div class="ttdoc">Migrate existing allocated memory. If the memory cannot be migrated and the HWLOC_MEMBIND_STRICT flag...</div><div class="ttdef"><b>Definition:</b> hwloc.h:1678</div></div>
<div class="ttc" id="a00077_html_gafcf30842e8cb47b4c3dcaebecea31e17"><div class="ttname"><a href="a00077.html#gafcf30842e8cb47b4c3dcaebecea31e17">hwloc_topology_ignore_type</a></div><div class="ttdeci">int hwloc_topology_ignore_type(hwloc_topology_t topology, hwloc_obj_type_t type)</div><div class="ttdoc">Ignore an object type. </div></div>
<div class="ttc" id="a00081_html_gaf75f365807447cfdc73e4e04e3469d84"><div class="ttname"><a href="a00081.html#gaf75f365807447cfdc73e4e04e3469d84">hwloc_get_area_membind</a></div><div class="ttdeci">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)</div><div class="ttdoc">Query the CPUs near the physical NUMA node(s) and binding policy of the memory identified by (addr...</div></div>
<div class="ttc" id="a00080_html_gga217dc8d373f8958cc93c154ebce1c71caf1b6bbad00d7b1017b918e3719f4d421"><div class="ttname"><a href="a00080.html#gga217dc8d373f8958cc93c154ebce1c71caf1b6bbad00d7b1017b918e3719f4d421">HWLOC_CPUBIND_THREAD</a></div><div class="ttdoc">Bind current thread of current process. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1370</div></div>
<div class="ttc" id="a00043_html_a80d762e532d677dff262d83cc7bb1c60"><div class="ttname"><a href="a00043.html#a80d762e532d677dff262d83cc7bb1c60">hwloc_topology_cpubind_support::get_thisthread_cpubind</a></div><div class="ttdeci">unsigned char get_thisthread_cpubind</div><div class="ttdef"><b>Definition:</b> hwloc.h:980</div></div>
<div class="ttc" id="a00077_html_ga2cc7b7b155cba58dda203e54f1637b9c"><div class="ttname"><a href="a00077.html#ga2cc7b7b155cba58dda203e54f1637b9c">hwloc_topology_set_userdata</a></div><div class="ttdeci">void hwloc_topology_set_userdata(hwloc_topology_t topology, const void *userdata)</div><div class="ttdoc">Set the topology-specific userdata pointer. </div></div>
<div class="ttc" id="a00074_html_gga46323568968005137c32f6a1cd405b74a2f8297ea36eba46e7596e810a67298fb"><div class="ttname"><a href="a00074.html#gga46323568968005137c32f6a1cd405b74a2f8297ea36eba46e7596e810a67298fb">HWLOC_TYPE_UNORDERED</a></div><div class="ttdoc">Value returned by hwloc_compare_types when types can not be compared. </div><div class="ttdef"><b>Definition:</b> hwloc.h:304</div></div>
<div class="ttc" id="a00081_html_ga4f7240065719cf923eb0cc078afcdcc2"><div class="ttname"><a href="a00081.html#ga4f7240065719cf923eb0cc078afcdcc2">hwloc_alloc_membind_policy</a></div><div class="ttdeci">static void * hwloc_alloc_membind_policy(hwloc_topology_t topology, size_t len, hwloc_const_cpuset_t set, hwloc_membind_policy_t policy, int flags)</div><div class="ttdoc">Allocate some memory on the memory nodes near given cpuset cpuset. </div></div>
<div class="ttc" id="a00042_html_a35b66064ab7d768caf7154e410caf0fa"><div class="ttname"><a href="a00042.html#a35b66064ab7d768caf7154e410caf0fa">hwloc_obj_attr_u::hwloc_pcidev_attr_s::device_id</a></div><div class="ttdeci">unsigned short device_id</div><div class="ttdef"><b>Definition:</b> hwloc.h:507</div></div>
<div class="ttc" id="a00081_html_ggac9764f79505775d06407b40f5e4661e8a3185bd869b67817fb2bd5164bf360402"><div class="ttname"><a href="a00081.html#ggac9764f79505775d06407b40f5e4661e8a3185bd869b67817fb2bd5164bf360402">HWLOC_MEMBIND_MIXED</a></div><div class="ttdoc">Returned by get_membind() functions when multiple threads or parts of a memory area have differing me...</div><div class="ttdef"><b>Definition:</b> hwloc.h:1638</div></div>
<div class="ttc" id="a00036_html_acc4f0803f244867e68fe0036800be5de"><div class="ttname"><a href="a00036.html#acc4f0803f244867e68fe0036800be5de">hwloc_obj::type</a></div><div class="ttdeci">hwloc_obj_type_t type</div><div class="ttdoc">Type of object. </div><div class="ttdef"><b>Definition:</b> hwloc.h:341</div></div>
<div class="ttc" id="a00037_html_a22904c25fe44b323bab5c9bc52660fca"><div class="ttname"><a href="a00037.html#a22904c25fe44b323bab5c9bc52660fca">hwloc_obj_attr_u::osdev</a></div><div class="ttdeci">struct hwloc_obj_attr_u::hwloc_osdev_attr_s osdev</div></div>
<div class="ttc" id="a00078_html_ggaf4e663cf42bbe20756b849c6293ef575ad8b1516e699b57ce1c8d107fbd2f674c"><div class="ttname"><a href="a00078.html#ggaf4e663cf42bbe20756b849c6293ef575ad8b1516e699b57ce1c8d107fbd2f674c">HWLOC_TYPE_DEPTH_PCI_DEVICE</a></div><div class="ttdoc">Virtual depth for PCI device object level. </div><div class="ttdef"><b>Definition:</b> hwloc.h:1109</div></div>
<div class="ttc" id="a00081_html_gabf567d2e3b956591a43de0c1941943b0"><div class="ttname"><a href="a00081.html#gabf567d2e3b956591a43de0c1941943b0">hwloc_get_membind</a></div><div class="ttdeci">int hwloc_get_membind(hwloc_topology_t topology, hwloc_cpuset_t cpuset, hwloc_membind_policy_t *policy, int flags)</div><div class="ttdoc">Query the default memory binding policy and physical locality of the current process or thread (the l...</div></div>
<div class="ttc" id="a00078_html_gafa4f8dbc4c2e74c0da8019446353eed1"><div class="ttname"><a href="a00078.html#gafa4f8dbc4c2e74c0da8019446353eed1">hwloc_topology_get_depth</a></div><div class="ttdeci">unsigned hwloc_topology_get_depth(hwloc_topology_t restrict topology)</div><div class="ttdoc">Get the depth of the hierarchical tree of objects. </div></div>
<div class="ttc" id="a00034_html_aab61bd1d1ae2e121bfe793c973ec829e"><div class="ttname"><a href="a00034.html#aab61bd1d1ae2e121bfe793c973ec829e">hwloc_distances_s::latency_max</a></div><div class="ttdeci">float latency_max</div><div class="ttdoc">The maximal value in the latency matrix. </div><div class="ttdef"><b>Definition:</b> hwloc.h:559</div></div>
<div class="ttc" id="a00081_html_gada7b3bb7f278542dbb38dc3d6f527c29"><div class="ttname"><a href="a00081.html#gada7b3bb7f278542dbb38dc3d6f527c29">hwloc_get_proc_membind</a></div><div class="ttdeci">int hwloc_get_proc_membind(hwloc_topology_t topology, hwloc_pid_t pid, hwloc_cpuset_t cpuset, hwloc_membind_policy_t *policy, int flags)</div><div class="ttdoc">Query the default memory binding policy and physical locality of the specified process (the locality ...</div></div>
<div class="ttc" id="a00036_html"><div class="ttname"><a href="a00036.html">hwloc_obj</a></div><div class="ttdoc">Structure of a topology object. </div><div class="ttdef"><b>Definition:</b> hwloc.h:339</div></div>
<div class="ttc" id="a00082_html_ga62a161fc5e6f120344dc69a7bee4e587"><div class="ttname"><a href="a00082.html#ga62a161fc5e6f120344dc69a7bee4e587">hwloc_topology_dup</a></div><div class="ttdeci">int hwloc_topology_dup(hwloc_topology_t *newtopology, hwloc_topology_t oldtopology)</div><div class="ttdoc">Duplicate a topology. </div></div>
<div class="ttc" id="a00078_html_ga8125328e69eba709c33ea8055c12589b"><div class="ttname"><a href="a00078.html#ga8125328e69eba709c33ea8055c12589b">hwloc_get_type_or_below_depth</a></div><div class="ttdeci">static int hwloc_get_type_or_below_depth(hwloc_topology_t topology, hwloc_obj_type_t type)</div><div class="ttdoc">Returns the depth of objects of type type or below. </div></div>
<div class="ttc" id="a00077_html_gac0ea95d5f2ad78408bc267a0441c7c97"><div class="ttname"><a href="a00077.html#gac0ea95d5f2ad78408bc267a0441c7c97">hwloc_topology_set_fsroot</a></div><div class="ttdeci">int hwloc_topology_set_fsroot(hwloc_topology_t restrict topology, const char *restrict fsroot_path)</div><div class="ttdoc">Change the file-system root path when building the topology from sysfs/procfs. </div></div>
<div class="ttc" id="a00040_html_a8befd0b3f4f8b695cafed04b31f36a44"><div class="ttname"><a href="a00040.html#a8befd0b3f4f8b695cafed04b31f36a44">hwloc_obj_memory_s::total_memory</a></div><div class="ttdeci">hwloc_uint64_t total_memory</div><div class="ttdoc">Total memory (in bytes) in this object and its children. </div><div class="ttdef"><b>Definition:</b> hwloc.h:319</div></div>
</div><!-- fragment --></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Oct 7 2014 11:56:52 for Hardware Locality (hwloc) by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.8
</small></address>
</body>
</html>
|