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 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858
|
char netlib_id[]="\
@(#)netlib.c (c) Copyright 1993, 1994 Hewlett-Packard Company. Version 2.1pl3";
/****************************************************************/
/* */
/* netlib.c */
/* */
/* the common utility routines available to all... */
/* */
/* establish_control() establish the control socket */
/* calibrate_local_cpu() do local cpu calibration */
/* calibrate_remote_cpu() do remote cpu calibration */
/* send_request() send a request to the remote */
/* recv_response() receive a response from remote */
/* send_response() send a response to the remote */
/* recv_request() recv a request from the remote */
/* dump_request() dump request contents */
/* dump_response() dump response contents */
/* cpu_start() start measuring cpu */
/* cpu_stop() stop measuring cpu */
/* calc_cpu_util() calculate the cpu utilization */
/* calc_service_demand() calculate the service demand */
/* calc_thruput() calulate the tput in units */
/* calibrate() really calibrate local cpu */
/* identify_local() print local host information */
/* identify_remote() print remote host information */
/* format_number() format the number (KB, MB,etc) */
/* format_units() return the format in english */
/* msec_sleep() sleep for some msecs */
/* start_timer() start a timer */
/* */
/* the routines you get when DO_DLPI is defined... */
/* */
/* dl_open() open a file descriptor and */
/* attach to the card */
/* dl_mtu() find the MTU of the card */
/* dl_bind() bind the sap do the card */
/* dl_connect() sender's have of connect */
/* dl_accpet() receiver's half of connect */
/* dl_set_window() set the window size */
/* dl_stats() retrieve statistics */
/* dl_send_disc() initiate disconnect (sender) */
/* dl_recv_disc() accept disconnect (receiver) */
/****************************************************************/
/****************************************************************/
/* */
/* Global include files */
/* */
/****************************************************************/
/* It would seem that most of the includes being done here from */
/* "sys/" actually have higher-level wrappers at just /usr/include. */
/* This is based on a spot-check of a couple systems at my disposal. */
/* If you have trouble compiling you may want to add "sys/" raj 10/95 */
#include <limits.h>
#include <signal.h>
#include <sys/types.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#ifndef WIN32
/* at some point, I would like to get rid of all these "sys/" */
/* includes where appropriate. if you have a system that requires */
/* them, speak now, or your system may not comile later revisions of */
/* netperf. raj 1/96 */
#include <unistd.h>
#include <sys/stat.h>
#include <sys/times.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <errno.h>
#include <sys/utsname.h>
#include <sys/param.h>
#ifdef USE_LOOPER
#include <sys/mman.h>
#endif /* USE_LOOPER */
#else /* WIN32 */
#ifdef NT_SDK
/* this is an alternative for CPU util that is being worked-on, but I */
/* don't have an SDK for it. raj 1/96 */
#include <nt.h> /* robin */
#include <ntrtl.h> /* robin */
#include <nturtl.h> /* robin */
#endif /* NT_SDK */
#include <process.h>
#include <time.h>
#include <windows.h>
#include <winsock.h>
#define SIGALRM (14)
#define sleep(x) Sleep((x)*1000)
#endif /* WIN32 */
#ifdef _AIX
#include <sys/select.h>
#include <sys/sched.h>
#include <sys/pri.h>
#define PRIORITY PRI_LOW
#else/* _AIX */
#ifdef __sgi
#include <sys/prctl.h>
#include <sys/schedctl.h>
#define PRIORITY NDPLOMIN
#endif /* __sgi */
#endif /* _AIX */
#ifdef USE_PSTAT
#include <sys/dk.h>
#include <sys/pstat.h>
#endif /* USE_PSTAT */
/* not all systems seem to have the sysconf for page size. for those */
/* which do not, we will assume that the page size is 8192 bytes. */
/* this should be more than enough to be sure that there is no page */
/* or cache thrashing by looper processes on MP systems. otherwise */
/* that's really just too bad - such systems should define */
/* _SC_PAGE_SIZE - raj 4/95 */
#ifndef _SC_PAGE_SIZE
#define NETPERF_PAGE_SIZE 8192
#else
#define NETPERF_PAGE_SIZE sysconf(_SC_PAGE_SIZE)
#endif /* _SC_PAGE_SIZE */
#ifdef DO_DLPI
#include <sys/stream.h>
#include <sys/stropts.h>
#include <sys/poll.h>
#ifdef __osf__
#include <sys/dlpihdr.h>
#else /* __osf__ */
#include <sys/dlpi.h>
#ifdef __hpux
#include <sys/dlpi_ext.h>
#endif /* __hpux */
#endif /* __osf__ */
#endif /* DO_DLPI */
#ifdef HISTOGRAM
#include "hist.h"
#endif /* HISTOGRAM */
/****************************************************************/
/* */
/* Local Include Files */
/* */
/****************************************************************/
#define NETLIB
#include "netlib.h"
#include "netsh.h"
/****************************************************************/
/* */
/* Global constants, macros and variables */
/* */
/****************************************************************/
#ifdef WIN32
struct timezone {
int dummy ;
} ;
int win_kludge_socket = 0;
#endif /* WIN32 */
#ifndef LONG_LONG_MAX
#define LONG_LONG_MAX 9223372036854775807LL
#endif /* LONG_LONG_MAX */
/* older versions of netperf knew about the HP kernel IDLE counter. */
/* this is now obsolete - in favor of either pstat(), times, or a */
/* process-level looper process. we also now require support for the */
/* "long" integer type. raj 4/95. */
int
lib_num_loc_cpus; /* the number of cpus in the system */
#define PAGES_PER_CHILD 2
#ifdef USE_PSTAT
long long
*lib_idle_address[MAXCPUS], /* addresses of the per-cpu idle counters */
lib_start_count[MAXCPUS], /* idle counter initial value per-cpu */
lib_end_count[MAXCPUS]; /* idle counter final value per-cpu */
long long
*lib_base_pointer;
#else
#ifdef USE_LOOPER
long
*lib_idle_address[MAXCPUS], /* addresses of the per-cpu idle counters */
lib_start_count[MAXCPUS], /* idle counter initial value per-cpu */
lib_end_count[MAXCPUS]; /* idle counter final value per-cpu */
long
*lib_base_pointer;
#ifdef WIN32
HANDLE
lib_idle_pids[MAXCPUS]; /* the pids (ok, handles) of the per-cpu */
/* idle loopers */
#else
int
lib_idle_pids[MAXCPUS]; /* the pids of the per-cpu idle loopers */
#endif /* WIN32 */
int
lib_idle_fd;
#endif /* USE_LOOPER */
#endif /* USE_PSTAT */
int lib_use_idle;
int cpu_method;
/* if there is no IDLE counter in the kernel */
#ifdef USE_PSTAT
struct pst_dynamic pst_dynamic_info;
long cp_time1[PST_MAX_CPUSTATES];
long cp_time2[PST_MAX_CPUSTATES];
#else
#ifdef WIN32
#ifdef NT_SDK
LARGE_INTEGER systime_start; /* robin */
LARGE_INTEGER systime_end; /* robin */
KERNEL_USER_TIMES perf_start; /* robin */
KERNEL_USER_TIMES perf_end; /* robin */
SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION sysperf_start; /* robin */
SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION sysperf_end; /* robin */
#endif /* NT_SDK */
#else
struct tms times_data1,
times_data2;
#endif /* WIN32 */
#endif
struct timeval time1, time2;
struct timezone tz;
float lib_elapsed,
lib_local_maxrate,
lib_remote_maxrate,
lib_local_cpu_util,
lib_remote_cpu_util;
float lib_local_per_cpu_util[MAXCPUS];
int *request_array;
int *response_array;
int netlib_control;
int server_sock;
int tcp_proto_num;
/* in the past, I was overlaying a structure on an array of ints. now */
/* I am going to have a "real" structure, and point an array of ints */
/* at it. the real structure will be forced to the same alignment as */
/* the type "double." this change will mean that pre-2.1 netperfs */
/* cannot be mixed with 2.1 and later. raj 11/95 */
union netperf_request_struct netperf_request;
union netperf_response_struct netperf_response;
FILE *where;
char libfmt = 'm';
#ifdef DO_DLPI
/* some stuff for DLPI control messages */
#define DLPI_DATA_SIZE 2048
unsigned long control_data[DLPI_DATA_SIZE];
struct strbuf control_message = {DLPI_DATA_SIZE, 0, (char *)control_data};
#endif /* DO_DLPI */
int times_up;
#ifdef WIN32
/* we use a getopt implementation from net.sources */
/*
* get option letter from argument vector
*/
int
opterr = 1, /* should error messages be printed? */
optind = 1, /* index into parent argv vector */
optopt; /* character checked for validity */
char
*optarg; /* argument associated with option */
#define EMSG ""
char *progname; /* may also be defined elsewhere */
#endif /* WIN32 */
static int measuring_cpu;
#ifdef INTERVALS
static unsigned int usec_per_itvl;
void
stop_itimer()
{
struct itimerval new_interval;
struct itimerval old_interval;
new_interval.it_interval.tv_sec = 0;
new_interval.it_interval.tv_usec = 0;
new_interval.it_value.tv_sec = 0;
new_interval.it_value.tv_usec = 0;
if (setitimer(ITIMER_REAL,&new_interval,&old_interval) != 0) {
/* there was a problem arming the interval timer */
perror("clusterperf: cluster_root: setitimer");
exit(1);
}
return;
}
#endif /* INTERVALS */
#ifdef WIN32
static void
error(char *pch)
{
if (!opterr) {
return; /* without printing */
}
fprintf(stderr, "%s: %s: %c\n",
(NULL != progname) ? progname : "getopt", pch, optopt);
}
int
getopt(int argc, char **argv, char *ostr)
{
static char *place = EMSG; /* option letter processing */
register char *oli; /* option letter list index */
if (!*place) {
/* update scanning pointer */
if (optind >= argc || *(place = argv[optind]) != '-' || !*++place) {
return EOF;
}
if (*place == '-') {
/* found "--" */
++optind;
place = EMSG ; /* Added by shiva for Netperf */
return EOF;
}
}
/* option letter okay? */
if ((optopt = (int)*place++) == (int)':'
|| !(oli = strchr(ostr, optopt))) {
if (!*place) {
++optind;
}
error("illegal option");
return BADCH;
}
if (*++oli != ':') {
/* don't need argument */
optarg = NULL;
if (!*place)
++optind;
} else {
/* need an argument */
if (*place) {
optarg = place; /* no white space */
} else if (argc <= ++optind) {
/* no arg */
place = EMSG;
error("option requires an argument");
return BADCH;
} else {
optarg = argv[optind]; /* white space */
}
place = EMSG;
++optind;
}
return optopt; /* return option letter */
}
#endif /* WIN32 */
double
ntohd(net_double)
double net_double;
{
/* we rely on things being nicely packed */
union {
double whole_thing;
unsigned int words[2];
unsigned char bytes[8];
} conv_rec;
unsigned char scratch;
int i;
/* on those systems where ntohl is a no-op, we want to return the */
/* original value, unchanged */
if (ntohl(1L) == 1L) {
return(net_double);
}
conv_rec.whole_thing = net_double;
/* we know that in the message passing routines that ntohl will have */
/* been called on the 32 bit quantities. we need to put those back */
/* the way they belong before we swap */
conv_rec.words[0] = htonl(conv_rec.words[0]);
conv_rec.words[1] = htonl(conv_rec.words[1]);
/* now swap */
for (i=0; i<= 3; i++) {
scratch = conv_rec.bytes[i];
conv_rec.bytes[i] = conv_rec.bytes[7-i];
conv_rec.bytes[7-i] = scratch;
}
return(conv_rec.whole_thing);
}
double
htond(host_double)
double host_double;
{
/* we rely on things being nicely packed */
union {
double whole_thing;
unsigned int words[2];
unsigned char bytes[8];
} conv_rec;
unsigned char scratch;
int i;
/* on those systems where ntohl is a no-op, we want to return the */
/* original value, unchanged */
if (ntohl(1L) == 1L) {
return(host_double);
}
conv_rec.whole_thing = host_double;
/* now swap */
for (i=0; i<= 3; i++) {
scratch = conv_rec.bytes[i];
conv_rec.bytes[i] = conv_rec.bytes[7-i];
conv_rec.bytes[7-i] = scratch;
}
/* we know that in the message passing routines htonl will */
/* be called on the 32 bit quantities. we need to set things up so */
/* that when this happens, the proper order will go out on the */
/* network */
conv_rec.words[0] = htonl(conv_rec.words[0]);
conv_rec.words[1] = htonl(conv_rec.words[1]);
return(conv_rec.whole_thing);
}
int
get_num_cpus()
{
/* on HP-UX, even when we use the looper procs we need the pstat */
/* call */
int temp_cpus;
#ifdef __hpux
#include <sys/pstat.h>
struct pst_dynamic psd;
if (pstat_getdynamic((struct pst_dynamic *)&psd,
(size_t)sizeof(psd), (size_t)1, 0) != -1) {
temp_cpus = psd.psd_proc_cnt;
}
else {
temp_cpus = 1;
}
#else
#if defined(__sun) && defined(__SVR4)
/* must be Solaris ? */
#include <unistd.h>
temp_cpus = sysconf(_SC_NPROCESSORS_ONLN);
#else
#if defined __sgi
temp_cpus = sysconf(_SC_NPROC_ONLN);
#else /* not __sgi */
/* we need to know some other ways to do this, or just fall-back on */
/* a global command line option - raj 4/95 */
temp_cpus = shell_num_cpus;
#endif /* __sgi */
#endif /* __sun && __SVR4 */
#endif /* __hpux */
if (temp_cpus > MAXCPUS) {
fprintf(where,
"Sorry, this system has more CPUs (%d) than I can handle (%d).\n",
temp_cpus,
MAXCPUS);
fprintf(where,
"Please alter MAXCPUS in netlib.h and recompile.\n");
fflush(where);
exit(1);
}
return(temp_cpus);
}
#ifdef WIN32
void
gettimeofday( struct timeval *tv , struct timezone *not_used )
{
SYSTEMTIME sys_time ;
GetSystemTime( &sys_time ) ;
tv->tv_sec = (long)time(NULL) ;
tv->tv_usec = sys_time.wMilliseconds ;
}
#endif /* WIN32 */
/************************************************************************/
/* */
/* signal catcher */
/* */
/************************************************************************/
void
#ifdef __hpux
catcher(sig, code, scp)
int sig;
int code;
struct sigcontext *scp;
#else /* __hpux */
catcher(sig)
int sig;
#endif /* __hpux */
{
#ifdef __hpux
if (debug > 2) {
fprintf(where,"caught signal %d ",sig);
if (scp) {
fprintf(where,"while in syscall %d\n",
scp->sc_syscall);
}
else {
fprintf(where,"null scp\n");
}
fflush(where);
}
#endif /* RAJ_DEBUG */
switch(sig) {
case SIGINT:
fprintf(where,"netperf: caught SIGINT\n");
fflush(where);
exit(1);
break;
case SIGALRM:
if (--test_len_ticks == 0) {
/* the test is over */
if (times_up != 0) {
fprintf(where,"catcher: timer popped with times_up != 0\n");
fflush(where);
}
times_up = 1;
#ifdef INTERVALS
stop_itimer();
#endif /* INTERVALS */
break;
}
else {
#ifdef INTERVALS
#ifdef __hpux
/* the test is not over yet and we must have been using the */
/* interval timer. if we were in SYS_SIGSUSPEND we want to */
/* re-start the system call. Otherwise, we want to get out of */
/* the sigsuspend call. I NEED TO KNOW HOW TO DO THIS FOR OTHER */
/* OPERATING SYSTEMS. If you know how, please let me know. rick */
/* jones <raj@cup.hp.com> */
if (scp->sc_syscall != SYS_SIGSUSPEND) {
if (debug > 2) {
fprintf(where,
"catcher: Time to send burst > interval!\n");
fflush(where);
}
scp->sc_syscall_action = SIG_RESTART;
}
#endif /* __hpux */
if (demo_mode) {
/* spit-out what the performance was in units/s. based on our */
/* knowledge of the interval length we do not need to call */
/* gettimeofday() raj 2/95 */
fprintf(where,"%g\n",(units_this_tick *
(double) 1000000 /
(double) usec_per_itvl));
fflush(where);
units_this_tick = (double) 0.0;
}
#else /* INTERVALS */
fprintf(where,
"catcher: interval timer running unexpectedly!\n");
fflush(where);
times_up = 1;
#endif /* INTERVALS */
break;
}
}
return;
}
void
install_signal_catchers()
{
/* just a simple little routine to catch a bunch of signals */
#ifndef WIN32
struct sigaction action;
int i;
fprintf(where,"installing catcher for all signals\n");
fflush(where);
sigemptyset(&(action.sa_mask));
action.sa_handler = catcher;
#ifdef SA_INTERRUPT
action.sa_flags = SA_INTERRUPT;
#else /* SA_INTERRUPT */
action.sa_flags = 0;
#endif /* SA_INTERRUPT */
for (i = 1; i <= NSIG; i++) {
if (i != SIGALRM) {
if (sigaction(SIGALRM,&action,NULL) != 0) {
fprintf(where,
"Could not install signal catcher for sig %d, errno %d\n",
i,
errno);
fflush(where);
}
}
}
#else
return;
#endif /* WIN32 */
}
#ifdef WIN32
#define SIGALRM (14)
void
emulate_alarm( int seconds )
{
Sleep( seconds * 1000 ) ;
times_up = 1;
/* We have yet to find a good way to fully emulate the effects */
/* of signals and getting EINTR from system calls under */
/* winsock, so what we do here is close the socket out from */
/* under the other thread. it is rather kludgy, but should be */
/* sufficient to get this puppy shipped. the concept can be */
/* attributed/blamed :) on Robin raj 1/96 */
if (win_kludge_socket != 0) {
closesocket(win_kludge_socket);
}
}
#endif /* WIN32 */
void
start_timer(time)
int time;
{
#ifdef WIN32
struct sigaction {
int dummy ;
} ;
void emulate_alarm(int) ;
long thread_id ;
CreateThread(0,
0,
(LPTHREAD_START_ROUTINE)emulate_alarm,
(LPVOID)time,
0,
&thread_id ) ;
#else /* not WIN32 */
struct sigaction action;
if (debug) {
fprintf(where,"About to start a timer for %d seconds.\n",time);
fflush(where);
}
action.sa_handler = catcher;
sigemptyset(&(action.sa_mask));
sigaddset(&(action.sa_mask),SIGALRM);
#ifdef SA_INTERRUPT
/* on some systems (SunOS 4.blah), system calls are restarted. we do */
/* not want that */
action.sa_flags = SA_INTERRUPT;
#else /* SA_INTERRUPT */
action.sa_flags = 0;
#endif /* SA_INTERRUPT */
if (sigaction(SIGALRM, &action, NULL) < 0) {
fprintf(where,"start_timer: error installing alarm handler ");
fprintf(where,"errno %d\n",errno);
fflush(where);
exit(1);
}
/* this is the easy case - just set the timer for so many seconds */
if (alarm(time) != 0) {
fprintf(where,
"error starting alarm timer, errno %d\n",
errno);
fflush(where);
}
#endif /* WIN32 */
test_len_ticks = 1;
}
/* this routine will disable any running timer */
void
stop_timer()
{
#ifndef WIN32
alarm(0);
#else
/* at some point we may need some win32 equivalent */
#endif /* WIN32 */
}
#ifdef INTERVALS
/* this routine will enable the interval timer and set things up so */
/* that for a timed test the test will end at the proper time. it */
/* should detect the presence of POSIX.4 timer_* routines one of */
/* these days */
void
start_itimer( interval_len_msec )
unsigned int interval_len_msec;
{
unsigned int ticks_per_itvl;
struct itimerval new_interval;
struct itimerval old_interval;
/* if -DINTERVALS was used, we will use the ticking of the itimer to */
/* tell us when the test is over. while the user will be specifying */
/* some number of milliseconds, we know that the interval timer is */
/* really in units of 1/HZ. so, to prevent the test from running */
/* "long" it would be necessary to keep this in mind when calculating */
/* the number of itimer events */
ticks_per_itvl = ((interval_wate * sysconf(_SC_CLK_TCK) * 1000) /
1000000);
if (ticks_per_itvl == 0) ticks_per_itvl = 1;
/* how many usecs in each interval? */
usec_per_itvl = ticks_per_itvl * (1000000 / sysconf(_SC_CLK_TCK));
/* how many times will the timer pop before the test is over? */
if (test_time > 0) {
/* this was a timed test */
test_len_ticks = (test_time * 1000000) / usec_per_itvl;
}
else {
/* this was not a timed test, use MAXINT */
test_len_ticks = INT_MAX;
}
if (debug) {
fprintf(where,"setting the interval timer to %d sec %d usec ",
usec_per_itvl / 1000000,
usec_per_itvl % 1000000);
fprintf(where,"test len %d ticks\n",
test_len_ticks);
fflush(where);
}
/* if this was not a timed test, then we really aught to enable the */
/* signal catcher raj 2/95 */
new_interval.it_interval.tv_sec = usec_per_itvl / 1000000;
new_interval.it_interval.tv_usec = usec_per_itvl % 1000000;
new_interval.it_value.tv_sec = usec_per_itvl / 1000000;
new_interval.it_value.tv_usec = usec_per_itvl % 1000000;
if (setitimer(ITIMER_REAL,&new_interval,&old_interval) != 0) {
/* there was a problem arming the interval timer */
perror("clusterperf: cluster_root: setitimer");
exit(1);
}
}
#endif /* INTERVALS */
/****************************************************************/
/* */
/* netlib_init() */
/* */
/* initialize the performance library... */
/* */
/****************************************************************/
void
netlib_init()
{
int i;
where = stdout;
request_array = (int *)(&netperf_request);
response_array = (int *)(&netperf_response);
for (i = 0; i < MAXCPUS; i++) {
lib_local_per_cpu_util[i] = 0.0;
}
if (debug) {
fprintf(where,
"netlib_init: request_array at %p\n",
request_array);
fprintf(where,
"netlib_init: response_array at %p\n",
response_array);
fflush(where);
}
}
/* this routine will conver the string into an unsigned integer. it */
/* is used primarily for the command-line options taking a number */
/* (such as the socket size) which could be rather large. If someone */
/* enters 32M, then the number will be converted to 32 * 1024 * 1024. */
/* If they inter 32m, the number will be converted to 32 * 1000 * */
/* 1000 */
unsigned int
convert(string)
char *string;
{
unsigned int base;
base = atoi(string);
if (strstr(string,"K")) {
base *= 1024;
}
if (strstr(string,"M")) {
base *= (1024 * 1024);
}
if (strstr(string,"G")) {
base *= (1024 * 1024 * 1024);
}
if (strstr(string,"k")) {
base *= (1000);
}
if (strstr(string,"m")) {
base *= (1000 * 1000);
}
if (strstr(string,"g")) {
base *= (1000 * 1000 * 1000);
}
return(base);
}
/* this routine will allocate a circular list of buffers for either */
/* send or receive operations. each of these buffers will be aligned */
/* and offset as per the users request. the circumference of this */
/* ring will be controlled by the setting of send_width. the buffers */
/* will be filled with data from the file specified in fill_file. if */
/* fill_file is an empty string, the buffers will not be filled with */
/* any particular data */
struct ring_elt *
allocate_buffer_ring(width, buffer_size, alignment, offset)
int width;
int buffer_size;
int alignment;
int offset;
{
struct ring_elt *first_link = NULL;
struct ring_elt *temp_link = NULL;
struct ring_elt *prev_link;
int i;
int malloc_size;
int bytes_left;
int bytes_read;
int do_fill;
FILE *fill_source;
malloc_size = buffer_size + alignment + offset;
/* did the user wish to have the buffers pre-filled with data from a */
/* particular source? */
if (strcmp(fill_file,"") == 0) {
do_fill = 0;
fill_source = NULL;
}
else {
do_fill = 1;
fill_source = (FILE *)fopen(fill_file,"r");
if (fill_source == (FILE *)NULL) {
perror("Could not open requested fill file");
exit(1);
}
}
prev_link = NULL;
for (i = 1; i <= width; i++) {
/* get the ring element */
temp_link = (struct ring_elt *)malloc(sizeof(struct ring_elt));
/* remember the first one so we can close the ring at the end */
if (i == 1) {
first_link = temp_link;
}
temp_link->buffer_base = (char *)malloc(malloc_size);
temp_link->buffer_ptr = (char *)(( (long)(temp_link->buffer_base) +
(long)alignment - 1) &
~((long)alignment - 1));
temp_link->buffer_ptr += offset;
/* is where the buffer fill code goes. */
if (do_fill) {
bytes_left = buffer_size;
while (bytes_left) {
if (((bytes_read = fread(temp_link->buffer_ptr,
1,
bytes_left,
fill_source)) == 0) &&
(feof(fill_source))){
rewind(fill_source);
}
bytes_left -= bytes_read;
}
}
temp_link->next = prev_link;
prev_link = temp_link;
}
first_link->next = temp_link;
return(first_link); /* it's a circle, doesn't matter which we return */
}
/***********************************************************************/
/* */
/* dump_request() */
/* */
/* display the contents of the request array to the user. it will */
/* display the contents in decimal, hex, and ascii, with four bytes */
/* per line. */
/* */
/***********************************************************************/
void
dump_request()
{
int counter = 0;
fprintf(where,"request contents:\n");
for (counter = 0; counter < ((sizeof(netperf_request)/4)-3); counter += 4) {
fprintf(where,"%d:\t%8x %8x %8x %8x \t|%4.4s| |%4.4s| |%4.4s| |%4.4s|\n",
counter,
request_array[counter],
request_array[counter+1],
request_array[counter+2],
request_array[counter+3],
(char *)&request_array[counter],
(char *)&request_array[counter+1],
(char *)&request_array[counter+2],
(char *)&request_array[counter+3]);
}
fflush(where);
}
/***********************************************************************/
/* */
/* dump_response() */
/* */
/* display the content of the response array to the user. it will */
/* display the contents in decimal, hex, and ascii, with four bytes */
/* per line. */
/* */
/***********************************************************************/
void
dump_response()
{
int counter = 0;
fprintf(where,"response contents\n");
for (counter = 0; counter < ((sizeof(netperf_response)/4)-3); counter += 4) {
fprintf(where,"%d:\t%8x %8x %8x %8x \t>%4.4s< >%4.4s< >%4.4s< >%4.4s<\n",
counter,
response_array[counter],
response_array[counter+1],
response_array[counter+2],
response_array[counter+3],
(char *)&response_array[counter],
(char *)&response_array[counter+1],
(char *)&response_array[counter+2],
(char *)&response_array[counter+3]);
}
fflush(where);
}
/***********************************************************************/
/* */
/* format_number() */
/* */
/* return a pointer to a formatted string containing the value passed */
/* translated into the units specified. It assumes that the base units */
/* are bytes. If the format calls for bits, it will use SI units (10^) */
/* if the format calls for bytes, it will use CS units (2^)... */
/* This routine should look familiar to uses of the latest ttcp... */
/* */
/***********************************************************************/
char *
format_number(number)
double number;
{
static char fmtbuf[64];
switch (libfmt) {
case 'K':
sprintf(fmtbuf, "%-7.2f" , number / 1024.0);
break;
case 'M':
sprintf(fmtbuf, "%-7.2f", number / 1024.0 / 1024.0);
break;
case 'G':
sprintf(fmtbuf, "%-7.2f", number / 1024.0 / 1024.0 / 1024.0);
break;
case 'k':
sprintf(fmtbuf, "%-7.2f", number * 8 / 1000.0);
break;
case 'm':
sprintf(fmtbuf, "%-7.2f", number * 8 / 1000.0 / 1000.0);
break;
case 'g':
sprintf(fmtbuf, "%-7.2f", number * 8 / 1000.0 / 1000.0 / 1000.0);
break;
default:
sprintf(fmtbuf, "%-7.2f", number / 1024.0);
}
return fmtbuf;
}
char
format_cpu_method(method)
int method;
{
char method_char;
switch (method) {
case CPU_UNKNOWN:
method_char = 'U';
break;
case HP_IDLE_COUNTER:
method_char = 'I';
break;
case PSTAT:
method_char = 'P';
break;
case TIMES:
method_char = 'T';
break;
case GETRUSAGE:
method_char = 'R';
break;
case LOOPER:
method_char = 'L';
break;
case NT_METHOD:
method_char = 'N';
break;
default:
method_char = '?';
}
return method_char;
}
char *
format_units()
{
static char unitbuf[64];
switch (libfmt) {
case 'K':
sprintf(unitbuf, "%s", "KBytes");
break;
case 'M':
sprintf(unitbuf, "%s", "MBytes");
break;
case 'G':
sprintf(unitbuf, "%s", "GBytes");
break;
case 'k':
sprintf(unitbuf, "%s", "10^3bits");
break;
case 'm':
sprintf(unitbuf, "%s", "10^6bits");
break;
case 'g':
sprintf(unitbuf, "%s", "10^9bits");
break;
default:
sprintf(unitbuf, "%s", "KBytes");
}
return unitbuf;
}
/****************************************************************/
/* */
/* shutdown_control() */
/* */
/* tear-down the control connection between me and the server. */
/****************************************************************/
void
shutdown_control()
{
char *buf = (char *)&netperf_response;
int buflen = sizeof(netperf_response);
/* stuff for select, use fd_set for better compliance */
fd_set readfds;
struct timeval timeout;
if (debug) {
fprintf(where,
"shutdown_control: shutdown of control connection requested.\n");
fflush(where);
}
/* first, we say that we will be sending no more data on the */
/* connection */
if (shutdown(netlib_control,1) == -1) {
fprintf(where,
"shutdown_control: error in shutdown. errno %d\n",
errno);
fflush(where);
exit(1);
}
/* Now, we hang on a select waiting for the socket to become */
/* readable to receive the shutdown indication from the remote. this */
/* will be "just" like the recv_response() code */
/* we only select once. it is assumed that if the response is split */
/* (which should not be happening, that we will receive the whole */
/* thing and not have a problem ;-) */
FD_ZERO(&readfds);
FD_SET(netlib_control,&readfds);
timeout.tv_sec = 60; /* wait two minutes then punt */
timeout.tv_usec = 0;
/* select had better return one, or there was either a problem or a */
/* timeout... */
if (select(FD_SETSIZE,
&readfds,
0,
0,
&timeout) != 1) {
fprintf(where,
"shutdown_control: no response received. errno %d\n",
errno);
fflush(where);
exit(1);
}
/* we now assume that the socket has come ready for reading */
recv(netlib_control, buf, buflen,0);
}
/***********************************************************************/
/* */
/* send_request() */
/* */
/* send a netperf request on the control socket to the remote half of */
/* the connection. to get us closer to intervendor interoperability, */
/* we will call htonl on each of the int that compose the message to */
/* be sent. the server-half of the connection will call the ntohl */
/* routine to undo any changes that may have been made... */
/* */
/***********************************************************************/
void
send_request()
{
int counter=0;
/* display the contents of the request if the debug level is high */
/* enough. otherwise, just send the darned thing ;-) */
if (debug > 1) {
fprintf(where,"entered send_request...contents before htonl:\n");
dump_request();
}
/* put the entire request array into network order. We do this */
/* arbitrarily rather than trying to figure-out just how much */
/* of the request array contains real information. this should */
/* be simpler, and at any rate, the performance of sending */
/* control messages for this benchmark is not of any real */
/* concern. */
for (counter=0;counter < sizeof(netperf_request)/4; counter++) {
request_array[counter] = htonl(request_array[counter]);
}
if (debug > 1) {
fprintf(where,"send_request...contents after htonl:\n");
dump_request();
fprintf(where,
"\nsend_request: about to send %ld bytes from %p\n",
sizeof(netperf_request),
&netperf_request);
fflush(where);
}
if (send(netlib_control,
(char *)&netperf_request,
sizeof(netperf_request),
0) != sizeof(netperf_request)) {
perror("send_request: send call failure");
exit(1);
}
}
/***********************************************************************/
/* */
/* send_response() */
/* */
/* send a netperf response on the control socket to the remote half of */
/* the connection. to get us closer to intervendor interoperability, */
/* we will call htonl on each of the int that compose the message to */
/* be sent. the other half of the connection will call the ntohl */
/* routine to undo any changes that may have been made... */
/* */
/***********************************************************************/
void
send_response()
{
int counter=0;
/* display the contents of the request if the debug level is high */
/* enough. otherwise, just send the darned thing ;-) */
if (debug > 1) {
fprintf(where,
"send_response: contents of %u ints before htonl\n",
sizeof(netperf_response)/4);
dump_response();
}
/* put the entire response_array into network order. We do this */
/* arbitrarily rather than trying to figure-out just how much of the */
/* request array contains real information. this should be simpler, */
/* and at any rate, the performance of sending control messages for */
/* this benchmark is not of any real concern. */
for (counter=0;counter < sizeof(netperf_response)/4; counter++) {
response_array[counter] = htonl(response_array[counter]);
}
if (debug > 1) {
fprintf(where,
"send_response: contents after htonl\n");
dump_response();
fprintf(where,
"about to send %u bytes from %p\n",
sizeof(netperf_response),
&netperf_response);
fflush(where);
}
/*KC*/
if (send(server_sock,
(char *)&netperf_response,
sizeof(netperf_response),
0) != sizeof(netperf_response)) {
perror("send_response: send call failure");
exit(1);
}
}
/***********************************************************************/
/* */
/* recv_request() */
/* */
/* receive the remote's request on the control socket. we will put */
/* the entire response into host order before giving it to the */
/* calling routine. hopefully, this will go most of the way to */
/* insuring intervendor interoperability. if there are any problems, */
/* we will just punt the entire situation. */
/* */
/***********************************************************************/
void
recv_request()
{
int tot_bytes_recvd,
bytes_recvd,
bytes_left;
char *buf = (char *)&netperf_request;
int buflen = sizeof(netperf_request);
int counter;
tot_bytes_recvd = 0;
bytes_left = buflen;
while ((tot_bytes_recvd != buflen) &&
((bytes_recvd = recv(server_sock, buf, bytes_left,0)) > 0 )) {
tot_bytes_recvd += bytes_recvd;
buf += bytes_recvd;
bytes_left -= bytes_recvd;
}
/* put the request into host order */
for (counter = 0; counter < sizeof(netperf_request)/sizeof(int); counter++) {
request_array[counter] = ntohl(request_array[counter]);
}
if (debug) {
fprintf(where,
"recv_request: received %d bytes of request.\n",
tot_bytes_recvd);
fflush(where);
}
#ifdef WIN32
if (bytes_recvd == SOCKET_ERROR ) {
#else
if (bytes_recvd == -1) {
#endif /* WIN32 */
fprintf(where,
"recv_request: error on recv, errno %d\n",
errno);
fflush(where);
exit(1);
}
if (bytes_recvd == 0) {
/* the remote has shutdown the control connection, we should shut it */
/* down as well and exit */
if (debug) {
fprintf(where,
"recv_request: remote reqeusted shutdown of control\n");
fflush(where);
}
shutdown_control();
exit(0);
}
if (tot_bytes_recvd < buflen) {
if (debug > 1)
dump_request();
fprintf(where,
"recv_request: partial request received of %d bytes\n",
tot_bytes_recvd);
fflush(where);
exit(1);
}
if (debug > 1) {
dump_request();
}
}
/***********************************************************************/
/* */
/* recv_response() */
/* */
/* receive the remote's response on the control socket. we will put */
/* the entire response into host order before giving it to the */
/* calling routine. hopefully, this will go most of the way to */
/* insuring intervendor interoperability. if there are any problems, */
/* we will just punt the entire situation. */
/* */
/* The call to select at the beginning is to get us out of hang */
/* situations where the remote gives-up but we don't find-out about */
/* it. This seems to happen only rarely, but it would be nice to be */
/* somewhat robust ;-) */
/***********************************************************************/
void
recv_response()
{
int tot_bytes_recvd,
bytes_recvd = 0,
bytes_left;
char *buf = (char *)&netperf_response;
int buflen = sizeof(netperf_response);
int counter;
/* stuff for select, use fd_set for better compliance */
fd_set readfds;
struct timeval timeout;
tot_bytes_recvd = 0;
bytes_left = buflen;
/* zero out the response structure */
/* BUG FIX SJB 2/4/93 - should be < not <= */
for (counter = 0; counter < sizeof(netperf_response)/sizeof(int); counter++) {
response_array[counter] = 0;
}
/* we only select once. it is assumed that if the response is split */
/* (which should not be happening, that we will receive the whole */
/* thing and not have a problem ;-) */
FD_ZERO(&readfds);
FD_SET(netlib_control,&readfds);
timeout.tv_sec = 60; /* wait one minute then punt */
timeout.tv_usec = 0;
/* select had better return one, or there was either a problem or a */
/* timeout... */
if ((counter = select(FD_SETSIZE,
&readfds,
0,
0,
&timeout)) != 1) {
fprintf(where,
"netperf: receive_response: no response received. errno %d counter %d\n",
errno,
counter);
exit(1);
}
while ((tot_bytes_recvd != buflen) &&
((bytes_recvd = recv(netlib_control, buf, bytes_left,0)) > 0 )) {
tot_bytes_recvd += bytes_recvd;
buf += bytes_recvd;
bytes_left -= bytes_recvd;
}
if (debug) {
fprintf(where,"recv_response: received a %d byte response\n",
tot_bytes_recvd);
fflush(where);
}
/* put the response into host order */
for (counter = 0; counter < sizeof(netperf_response)/sizeof(int); counter++) {
response_array[counter] = ntohl(response_array[counter]);
}
if (bytes_recvd == -1) {
perror("recv_response");
exit(1);
}
if (tot_bytes_recvd < buflen) {
fprintf(stderr,
"recv_response: partial response received: %d bytes\n",
tot_bytes_recvd);
fflush(stderr);
if (debug > 1)
dump_response();
exit(1);
}
if (debug > 1) {
dump_response();
}
}
#ifdef USE_PSTAT
int
hi_32(big_int)
long long *big_int;
{
union overlay_u {
long long dword;
long words[2];
} *overlay;
overlay = (union overlay_u *)big_int;
/* on those systems which are byte swapped, we really wish to */
/* return words[1] - at least I think so - raj 4/95 */
if (htonl(1L) == 1L) {
/* we are a "normal" :) machine */
return(overlay->words[0]);
}
else {
return(overlay->words[1]);
}
}
int
lo_32(big_int)
long long *big_int;
{
union overlay_u {
long long dword;
long words[2];
} *overlay;
overlay = (union overlay_u *)big_int;
/* on those systems which are byte swapped, we really wish to */
/* return words[0] - at least I think so - raj 4/95 */
if (htonl(1L) == 1L) {
/* we are a "normal" :) machine */
return(overlay->words[1]);
}
else {
return(overlay->words[0]);
}
}
#endif /* USE_PSTAT */
#ifdef USE_LOOPER
/* calibrate_looper */
/* Loop a number of times, sleeping wait_time seconds each and */
/* count how high the idle counter gets each time. Return the */
/* measured cpu rate to the calling routine. raj 4/95 */
float
calibrate_looper(times,wait_time)
int times;
int wait_time;
{
long
firstcnt[MAXCPUS],
secondcnt[MAXCPUS];
float
elapsed,
temp_rate,
rate[MAXTIMES],
local_maxrate;
long
sec,
usec;
int
i,
j;
struct timeval time1, time2 ;
struct timezone tz;
if (times > MAXTIMES) {
times = MAXTIMES;
}
local_maxrate = (float)-1.0;
for(i = 0; i < times; i++) {
rate[i] = (float)0.0;
for (j = 0; j < lib_num_loc_cpus; j++) {
firstcnt[j] = *(lib_idle_address[j]);
}
gettimeofday (&time1, &tz);
sleep(wait_time);
gettimeofday (&time2, &tz);
if (time2.tv_usec < time1.tv_usec)
{
time2.tv_usec += 1000000;
time2.tv_sec -=1;
}
sec = time2.tv_sec - time1.tv_sec;
usec = time2.tv_usec - time1.tv_usec;
elapsed = (float)sec + ((float)usec/(float)1000000.0);
if(debug) {
fprintf(where, "Calibration for counter run: %d\n",i);
fprintf(where,"\tsec = %ld usec = %ld\n",sec,usec);
fprintf(where,"\telapsed time = %g\n",elapsed);
}
for (j = 0; j < lib_num_loc_cpus; j++) {
secondcnt[j] = *(lib_idle_address[j]);
if(debug) {
/* I know that there are situations where compilers know about */
/* long long, but the library fucntions do not... raj 4/95 */
fprintf(where,
"\tfirstcnt[%d] = 0x%8.8lx%8.8lx secondcnt[%d] = 0x%8.8lx%8.8lx\n",
j,
firstcnt[j],
firstcnt[j],
j,
secondcnt[j],
secondcnt[j]);
}
/* we assume that it would wrap no more than once. we also */
/* assume that the result of subtracting will "fit" raj 4/95 */
temp_rate = (secondcnt[j] >= firstcnt[j]) ?
(float)(secondcnt[j] - firstcnt[j])/elapsed :
(float)(secondcnt[j]-firstcnt[j]+MAXLONG)/elapsed;
if (temp_rate > rate[i]) rate[i] = temp_rate;
if(debug) {
fprintf(where,"\trate[%d] = %g\n",i,rate[i]);
fflush(where);
}
if (local_maxrate < rate[i]) local_maxrate = rate[i];
}
}
if(debug) {
fprintf(where,"\tlocal maxrate = %g per sec. \n",local_maxrate);
fflush(where);
}
return local_maxrate;
}
#endif /* USE_LOOPER */
#ifdef USE_PSTAT
#ifdef PSTAT_IPCINFO
/****************************************************************/
/* */
/* calibrate_pstat */
/* */
/* Loop a number of times, sleeping wait_time seconds each */
/* and count how high the idle counter gets each time. Return */
/* the measured cpu rate to the calling routine. */
/* */
/****************************************************************/
float
calibrate_pstat(times,wait_time)
int times;
int wait_time;
{
long long
firstcnt[MAXCPUS],
secondcnt[MAXCPUS];
float
elapsed,
temp_rate,
rate[MAXTIMES],
local_maxrate;
long
sec,
usec;
int
i,
j;
long count;
struct timeval time1, time2;
struct timezone tz;
struct pst_processor *psp;
if (times > MAXTIMES) {
times = MAXTIMES;
}
local_maxrate = -1.0;
psp = (struct pst_processor *)malloc(lib_num_loc_cpus * sizeof(*psp));
for(i = 0; i < times; i++) {
rate[i] = 0.0;
/* get the idle sycle counter for each processor */
if (pstat_getprocessor(psp, sizeof(*psp), lib_num_loc_cpus, 0) != -1) {
for (j = 0; j < lib_num_loc_cpus; j++) {
union overlay_u {
long long full;
long word[2];
} *overlay;
overlay = (union overlay_u *)&(firstcnt[j]);
overlay->word[0] = psp[j].psp_idlecycles.psc_hi;
overlay->word[1] = psp[j].psp_idlecycles.psc_lo;
}
}
else {
fprintf(where,"pstat_setprocessor failure errno %d\n");
fflush(where);
exit(1);
}
gettimeofday (&time1, &tz);
sleep(wait_time);
gettimeofday (&time2, &tz);
if (time2.tv_usec < time1.tv_usec)
{
time2.tv_usec += 1000000;
time2.tv_sec -=1;
}
sec = time2.tv_sec - time1.tv_sec;
usec = time2.tv_usec - time1.tv_usec;
elapsed = (float)sec + ((float)usec/(float)1000000.0);
if(debug) {
fprintf(where, "Calibration for counter run: %d\n",i);
fprintf(where,"\tsec = %ld usec = %ld\n",sec,usec);
fprintf(where,"\telapsed time = %g\n",elapsed);
}
if (pstat_getprocessor(psp, sizeof(*psp), lib_num_loc_cpus, 0) != -1) {
for (j = 0; j < lib_num_loc_cpus; j++) {
union overlay_u {
long long full;
long word[2];
} *overlay;
overlay = (union overlay_u *)&(secondcnt[j]);
overlay->word[0] = psp[j].psp_idlecycles.psc_hi;
overlay->word[1] = psp[j].psp_idlecycles.psc_lo;
if(debug) {
/* I know that there are situations where compilers know about */
/* long long, but the library fucntions do not... raj 4/95 */
fprintf(where,
"\tfirstcnt[%d] = 0x%8.8x%8.8x secondcnt[%d] = 0x%8.8x%8.8x\n",
j,
hi_32(&firstcnt[j]),
lo_32(&firstcnt[j]),
j,
hi_32(&secondcnt[j]),
lo_32(&secondcnt[j]));
}
temp_rate = (secondcnt[j] >= firstcnt[j]) ?
(float)(secondcnt[j] - firstcnt[j] )/elapsed :
(float)(secondcnt[j] - firstcnt[j] + LONG_LONG_MAX)/elapsed;
if (temp_rate > rate[i]) rate[i] = temp_rate;
if(debug) {
fprintf(where,"\trate[%d] = %g\n",i,rate[i]);
fflush(where);
}
if (local_maxrate < rate[i]) local_maxrate = rate[i];
}
}
else {
fprintf(where,"pstat failure; errno %d\n",errno);
fflush(where);
exit(1);
}
}
if(debug) {
fprintf(where,"\tlocal maxrate = %g per sec. \n",local_maxrate);
fflush(where);
}
return local_maxrate;
}
#endif /* PSTAT_IPCINFO */
#endif /* USE_PSTAT */
void libmain()
{
fprintf(where,"hello world\n");
fprintf(where,"debug: %d\n",debug);
}
/****************************************************************/
/* */
/* establish_control() */
/* */
/* set-up the control connection between me and the server so */
/* we can actually run some tests. if we cannot establish the */
/* control connection, we might as well punt... */
/* the variables for the control socket are kept in this lib */
/* so as to 'hide' them from the upper routines as much as */
/* possible so we can change them without affecting anyone... */
/****************************************************************/
struct sockaddr_in server; /* remote host address */
struct servent *sp; /* server entity */
struct hostent *hp; /* host entity */
void
establish_control(hostname,port)
char hostname[];
short int port;
{
unsigned int addr;
if (debug > 1) {
fprintf(where,"establish_control: entered with %s and %d\n",
hostname,
port);
}
/********************************************************/
/* Set up the control socket netlib_control first */
/* for the time being we will assume that all set-ups */
/* are for tcp/ip and sockets... */
/********************************************************/
bzero((char *)&server,
sizeof(server));
server.sin_port = htons(port);
/* it would seem that while HP-UX will allow an IP address (as a */
/* string) in a call to gethostbyname, other, less enlightened */
/* systems do not. fix from awjacks@ca.sandia.gov raj 10/95 */
/* order changed to check for IP address first. raj 7/96 */
if ((addr = inet_addr(hostname)) == -1) {
/* it was not an IP address, try it as a name */
if ((hp = gethostbyname(hostname)) == NULL) {
/* we have no idea what it is */
fprintf(where,
"establish_control: could not resolve the destination %s\n",
hostname);
fflush(where);
exit(1);
}
else {
/* it was a valid hostname */
bcopy(hp->h_addr,
(char *)&server.sin_addr,
hp->h_length);
server.sin_family = hp->h_addrtype;
}
}
else {
/* it was a valid IP address */
server.sin_addr.s_addr = addr;
server.sin_family = AF_INET;
}
if (debug > 1) {
fprintf(where,"resolved the destination... \n");
fflush(where);
}
if (debug > 1) {
fprintf(where,"creating a socket\n");
fflush(stdout);
}
netlib_control = socket(server.sin_family,
SOCK_STREAM,
tcp_proto_num);
if (netlib_control < 0){
perror("establish_control: control socket");
exit(1);
}
if (debug > 1) {
fprintf(where,"about to connect\n");
fflush(stdout);
}
if (connect(netlib_control,
(struct sockaddr *)&server,
sizeof(server)) <0){
perror("establish_control: control socket connect failed");
fprintf(stderr,
"Are you sure there is a netserver running on %s at port %d?\n",
hostname,
port);
fflush(stderr);
exit(1);
}
if (debug) {
fprintf(where,"establish_control: connect completes\n");
}
/********************************************************/
/* The Control Socket set-up is done, so now we want */
/* to test for connectivity on the connection */
/********************************************************/
if (debug)
netperf_request.content.request_type = DEBUG_ON;
else
netperf_request.content.request_type = DEBUG_OFF;
send_request();
recv_response();
if (netperf_response.content.response_type != DEBUG_OK) {
fprintf(stderr,"establish_control: Unknown response to debug check\n");
exit(1);
}
else if(debug)
fprintf(where,"establish_control: check for connectivity ok\n");
}
/***********************************************************************/
/* */
/* get_id() */
/* */
/* Return a string to the calling routine that contains the */
/* identifying information for the host we are running on. This */
/* information will then either be displayed locally, or returned to */
/* a remote caller for display there. */
/* */
/***********************************************************************/
void
get_id(id_string)
char *id_string;
{
#ifdef WIN32
SYSTEM_INFO system_info ;
char system_name[MAX_COMPUTERNAME_LENGTH+1] ;
int name_len = MAX_COMPUTERNAME_LENGTH + 1 ;
#else
struct utsname system_name;
#endif /* WIN32 */
#ifdef WIN32
GetSystemInfo( &system_info ) ;
if ( !GetComputerName(system_name , &name_len) )
strcpy(system_name , "no_name") ;
#else
if (uname(&system_name) <0) {
perror("identify_local: uname");
exit(1);
}
#endif /* WIN32 */
sprintf(id_string,
#ifdef WIN32
"%-15s%-15s%d.%d%-15s",
"Windows NT",
system_name ,
GetVersion() & 0xFF ,
GetVersion() & 0xFF00 ,
system_info.dwProcessorType ) ;
#else
"%-15s%-15s%-15s%-15s%-15s",
system_name.sysname,
system_name.nodename,
system_name.release,
system_name.version,
system_name.machine);
#endif /* WIN32 */
}
/***********************************************************************/
/* */
/* identify_local() */
/* */
/* Display identifying information about the local host to the user. */
/* At first release, this information will be the same as that which */
/* is returned by the uname -a command, with the exception of the */
/* idnumber field, which seems to be a non-POSIX item, and hence */
/* non-portable. */
/* */
/***********************************************************************/
void
identify_local()
{
char local_id[80];
get_id(local_id);
fprintf(where,"Local Information \n\
Sysname Nodename Release Version Machine\n");
fprintf(where,"%s\n",
local_id);
}
/***********************************************************************/
/* */
/* identify_remote() */
/* */
/* Display identifying information about the remote host to the user. */
/* At first release, this information will be the same as that which */
/* is returned by the uname -a command, with the exception of the */
/* idnumber field, which seems to be a non-POSIX item, and hence */
/* non-portable. A request is sent to the remote side, which will */
/* return a string containing the utsname information in a */
/* pre-formatted form, which is then displayed after the header. */
/* */
/***********************************************************************/
void
identify_remote()
{
char *remote_id="";
/* send a request for node info to the remote */
netperf_request.content.request_type = NODE_IDENTIFY;
send_request();
/* and now wait for the reply to come back */
recv_response();
if (netperf_response.content.serv_errno) {
errno = netperf_response.content.serv_errno;
perror("identify_remote: on remote");
exit(1);
}
fprintf(where,"Remote Information \n\
Sysname Nodename Release Version Machine\n");
fprintf(where,"%s",
remote_id);
}
void
cpu_start(measure_cpu)
int measure_cpu;
{
int i;
gettimeofday(&time1,
&tz);
if (measure_cpu) {
measuring_cpu = 1;
#ifdef USE_LOOPER
cpu_method = LOOPER;
for (i = 0; i < lib_num_loc_cpus; i++){
lib_start_count[i] = *lib_idle_address[i];
}
#else
#ifdef USE_PSTAT
cpu_method = PSTAT;
#ifdef PSTAT_IPCINFO
/* we need to know if we have the 10.0 pstat interface */
/* available. I know that at 10.0, the define for PSTAT_IPCINFO */
/* was added, but that it is not there prior. so, this should */
/* act as the automagic compile trigger that I need. raj 4/95 */
cpu_method = HP_IDLE_COUNTER;
{
/* get the idle sycle counter for each processor */
struct pst_processor *psp;
union overlay_u {
long long full;
long word[2];
} *overlay;
psp = (struct pst_processor *)malloc(lib_num_loc_cpus * sizeof(*psp));
if (pstat_getprocessor(psp, sizeof(*psp), lib_num_loc_cpus, 0) != -1) {
int i;
for (i = 0; i < lib_num_loc_cpus; i++) {
overlay = (union overlay_u *)&(lib_start_count[i]);
overlay->word[0] = psp[i].psp_idlecycles.psc_hi;
overlay->word[1] = psp[i].psp_idlecycles.psc_lo;
if(debug) {
fprintf(where,
"\tlib_start_count[%d] = 0x%8.8x%8.8x\n",
i,
hi_32(&lib_start_count[i]),
lo_32(&lib_start_count[i]));
fflush(where);
}
}
free(psp);
}
}
#else
/* this is what we should get when compiling on an HP-UX 9.X */
/* system. raj 4/95 */
pstat_getdynamic((struct pst_dynamic *)&pst_dynamic_info,
sizeof(pst_dynamic_info),1,0);
for (i = 0; i < PST_MAX_CPUSTATES; i++) {
cp_time1[i] = pst_dynamic_info.psd_cpu_time[i];
}
#endif /* PSTAT_IPCINFO */
#else
#ifdef WIN32
#ifdef NT_SDK
/*--------------------------------------------------*/ /* robin */
/* Use Win/NT internal counters to measure CPU% */ /* robin */
/*--------------------------------------------------*/ /* robin */
NTSTATUS status; /* robin */
/* robin */
status = NtQuerySystemTime( &systime_start ); /* robin */
if (debug) { /* robin */
if (!NT_SUCCESS(status)) { /* robin */
fprintf(where,"NtQuerySystemTime " /* robin */
"failed: 0x%08X\n", /* robin */
status); /* robin */
} /* robin */
} /* robin */
/* robin */
status = NtQuerySystemInformation ( /* robin */
SystemProcessorPerformanceInformation, /* robin */
&sysperf_start, /* robin */
sizeof(sysperf_start), /* robin */
NULL ); /* robin */
/* robin */
if (debug) { /* robin */
if (!NT_SUCCESS(status)) { /* robin */
fprintf(where,"NtQuerySystemInformation " /* robin */
"failed: 0x%08X\n", /* robin */
status); /* robin */
} /* robin */
} /* robin */
/* robin */
#endif /* NT_SDK */
#else
cpu_method = TIMES;
times(×_data1);
#endif /* WIN32 */
#endif /* USE_PSTAT */
#endif /* USE_LOOPER */
}
}
void
cpu_stop(measure_cpu,elapsed)
int measure_cpu;
float *elapsed;
{
#ifndef WIN32
#include <sys/wait.h>
#endif /* WIN32 */
int sec,
usec;
int i;
if (measure_cpu) {
#ifdef USE_LOOPER
for (i = 0; i < lib_num_loc_cpus; i++){
lib_end_count[i] = *lib_idle_address[i];
}
#ifdef WIN32
/* it would seem that if/when the process exits, all the threads */
/* will go away too, so I don't think I need any explicit thread */
/* killing calls here. raj 1/96 */
#else
/* now go through and kill-off all the child processes */
for (i = 0; i < lib_num_loc_cpus; i++){
/* SIGKILL can leave core files behind - thanks to Steinar Haug */
/* for pointing that out. */
kill(lib_idle_pids[i],SIGTERM);
}
/* reap the children */
while(waitpid(-1, NULL, WNOHANG) > 0) { }
/* finally, unlink the mmaped file */
munmap((caddr_t)lib_base_pointer,
((NETPERF_PAGE_SIZE * PAGES_PER_CHILD) *
lib_num_loc_cpus));
unlink("/tmp/netperf_cpu");
#endif /* WIN32 */
#else
#ifdef USE_PSTAT
#ifdef PSTAT_IPCINFO
{
struct pst_processor *psp;
union overlay_u {
long long full;
long word[2];
} *overlay;
psp = (struct pst_processor *)malloc(lib_num_loc_cpus * sizeof(*psp));
if (pstat_getprocessor(psp, sizeof(*psp), lib_num_loc_cpus, 0) != -1) {
for (i = 0; i < lib_num_loc_cpus; i++) {
overlay = (union overlay_u *)&(lib_end_count[i]);
overlay->word[0] = psp[i].psp_idlecycles.psc_hi;
overlay->word[1] = psp[i].psp_idlecycles.psc_lo;
if(debug) {
fprintf(where,
"\tlib_end_count[%d] = 0x%8.8x%8.8x\n",
i,
hi_32(&lib_end_count[i]),
lo_32(&lib_end_count[i]));
fflush(where);
}
}
free(psp);
}
else {
fprintf(where,"pstat_getprocessor failure: errno %d\n",errno);
fflush(where);
exit(1);
}
}
#else /* not HP-UX 10.0 or later */
{
pstat_getdynamic(&pst_dynamic_info, sizeof(pst_dynamic_info),1,0);
for (i = 0; i < PST_MAX_CPUSTATES; i++) {
cp_time2[i] = pst_dynamic_info.psd_cpu_time[i];
}
}
#endif /* PSTAT_IPC_INFO */
#else
#ifdef WIN32
#ifdef NT_SDK
NTSTATUS status; /* robin */
/* robin */
status = NtQuerySystemTime( &systime_end ); /* robin */
if (debug) { /* robin */
if (!NT_SUCCESS(status)) { /* robin */
fprintf(where,"NtQuerySystemTime " /* robin */
"failed: 0x%08X\n", /* robin */
status); /* robin */
} /* robin */
} /* robin */
status = NtQuerySystemInformation ( /* robin */
SystemProcessorPerformanceInformation, /* robin */
&sysperf_end, /* robin */
sizeof(sysperf_end), /* robin */
NULL ); /* robin */
/* robin */
if (debug) { /* robin */
if (!NT_SUCCESS(status)) { /* robin */
fprintf(where,"NtQuerySystemInformation " /* robin */
"failed: 0x%08X\n", /* robin */
status); /* robin */
} /* robin */
} /* robin */
/* robin */
#endif /* NT_SDK */
#else
times(×_data2);
#endif /* WIN32 */
#endif /* USE_PSTAT */
#endif /* USE_LOOPER */
}
gettimeofday(&time2,
&tz);
if (time2.tv_usec < time1.tv_usec) {
time2.tv_usec += 1000000;
time2.tv_sec -= 1;
}
sec = time2.tv_sec - time1.tv_sec;
usec = time2.tv_usec - time1.tv_usec;
lib_elapsed = (float)sec + ((float)usec/(float)1000000.0);
*elapsed = lib_elapsed;
}
double
calc_thruput(units_received)
double units_received;
{
double divisor;
/* We will calculate the thruput in libfmt units/second */
switch (libfmt) {
case 'K':
divisor = 1024.0;
break;
case 'M':
divisor = 1024.0 * 1024.0;
break;
case 'G':
divisor = 1024.0 * 1024.0 * 1024.0;
break;
case 'k':
divisor = 1000.0 / 8.0;
break;
case 'm':
divisor = 1000.0 * 1000.0 / 8.0;
break;
case 'g':
divisor = 1000.0 * 1000.0 * 1000.0 / 8.0;
break;
default:
divisor = 1024.0;
}
return (units_received / divisor / lib_elapsed);
}
float
calc_cpu_util(elapsed_time)
float elapsed_time;
{
float actual_rate;
float correction_factor;
#ifdef USE_PSTAT
#ifdef PSTAT_IPCINFO
float temp_util;
#else
long diff;
#endif
#endif
#ifndef USE_LOOPER
int cpu_time_ticks;
long ticks_sec;
#endif
int i;
lib_local_cpu_util = (float)0.0;
/* It is possible that the library measured a time other than */
/* the one that the user want for the cpu utilization */
/* calculations - for example, tests that were ended by */
/* watchdog timers such as the udp stream test. We let these */
/* tests tell up what the elapsed time should be. */
if (elapsed_time != 0.0) {
correction_factor = (float) 1.0 +
((lib_elapsed - elapsed_time) / elapsed_time);
}
else {
correction_factor = (float) 1.0;
}
#ifdef USE_LOOPER
for (i = 0; i < lib_num_loc_cpus; i++) {
/* it would appear that on some systems, in loopback, nice */
/* is *very* effective, causing the looper process to stop */
/* dead in its tracks. if this happens, we need to ensure */
/* that the calculation does not go south. raj 6/95 */
if (lib_end_count[i] == lib_start_count[i]) {
lib_end_count[i]++;
}
actual_rate = (lib_end_count[i] > lib_start_count[i]) ?
(float)(lib_end_count[i] - lib_start_count[i])/lib_elapsed :
(float)(lib_end_count[i] - lib_start_count[i] +
MAXLONG)/ lib_elapsed;
if (debug) {
fprintf(where,
"calc_cpu_util: actual_rate on processor %d is %f\n",
i,
actual_rate);
}
lib_local_per_cpu_util[i] = (lib_local_maxrate - actual_rate) /
lib_local_maxrate * 100;
lib_local_cpu_util += lib_local_per_cpu_util[i];
}
/* we want the average across all n processors */
lib_local_cpu_util /= (float)lib_num_loc_cpus;
#else
#ifdef USE_PSTAT
#ifdef PSTAT_IPCINFO
{
/* this looks just like the looper case. at least I think it */
/* should :) raj 4/95 */
for (i = 0; i < lib_num_loc_cpus; i++) {
/* we assume that the two are not more than a long apart. I */
/* know that this is bad, but trying to go from long longs to */
/* a float (perhaps a double) is boggling my mind right now. */
/* raj 4/95 */
long long
diff;
if (lib_end_count[i] >= lib_start_count[i]) {
diff = lib_end_count[i] - lib_start_count[i];
}
else {
diff = lib_end_count[i] - lib_start_count[i] + LONG_LONG_MAX;
}
actual_rate = (float) diff / lib_elapsed;
lib_local_per_cpu_util[i] = (lib_local_maxrate - actual_rate) /
lib_local_maxrate * 100;
lib_local_cpu_util += lib_local_per_cpu_util[i];
if (debug) {
fprintf(where,
"calc_cpu_util: actual_rate on cpu %d is %g max_rate %g cpu %6.2f\n",
i,
actual_rate,
lib_local_maxrate,
lib_local_per_cpu_util[i]);
}
}
/* we want the average across all n processors */
lib_local_cpu_util /= (float)lib_num_loc_cpus;
}
#else
{
/* we had no idle counter, but there was a pstat. we */
/* will use the cpu_time_ticks variable for the total */
/* ticks calculation */
cpu_time_ticks = 0;
/* how many ticks were there in our interval? */
for (i = 0; i < PST_MAX_CPUSTATES; i++) {
diff = cp_time2[i] - cp_time1[i];
cpu_time_ticks += diff;
if (debug) {
fprintf(where,
"%d cp_time1 %d cp_time2 %d diff %d cpu_time_ticks is %d \n",
i,
cp_time1[i],
cp_time2[i],
diff,
cpu_time_ticks);
fflush(where);
}
}
if (!cpu_time_ticks)
cpu_time_ticks = 1;
/* cpu used is 100% minus the idle time - right ?-) */
lib_local_cpu_util = 1.0 - ( ((float)(cp_time2[CP_IDLE] -
cp_time1[CP_IDLE]))
/ (float)cpu_time_ticks);
lib_local_cpu_util *= 100.0;
if (debug) {
fprintf(where,
"calc_cpu_util has cpu_time_ticks at %d\n",cpu_time_ticks);
fprintf(where,"sysconf ticks is %g\n",
sysconf(_SC_CLK_TCK) * lib_elapsed);
fprintf(where,"calc_cpu_util has idle_ticks at %d\n",
(cp_time2[CP_IDLE] - cp_time1[CP_IDLE]));
fflush(where);
}
}
#endif /* PSTAT_IPCINFO */
#else
#ifdef WIN32
#ifdef NT_SDK
LARGE_INTEGER delta_t, /* scratch */ /* robin */
elapsed, /* elapsed total system time */ /* robin */
kernel, /* elapsed kernel mode time */ /* robin */
idle, /* elapsed kernel idle time */ /* robin */
user; /* elapsed user mode time */ /* robin */
ULONG remainder; /* never used, discarded value */ /* robin */
ULONG cpu; /* cpu utilization (as ULONG) */ /* robin */
/* robin */
/* The magic number 10*1000 will convert the */ /* robin */
/* 100ns time units (returned by NT kernel) */ /* robin */
/* into millisecond units. */ /* robin */
delta_t = RtlLargeIntegerSubtract( /* robin */
systime_end, /* robin */
systime_start); /* robin */
elapsed = RtlExtendedLargeIntegerDivide( /* robin */
delta_t, /* robin */
10*1000, /* robin */
&remainder); /* robin */
if (debug) {
fprintf(where,
"NT's elapsed time %d\n",
remainder);
fflush(where);
}
delta_t = RtlLargeIntegerSubtract( /* robin */
sysperf_end.KernelTime, /* robin */
sysperf_start.KernelTime); /* robin */
kernel = RtlExtendedLargeIntegerDivide( /* robin */
delta_t, /* robin */
10*1000, /* robin */
&remainder); /* robin */
if (debug) {
fprintf(where,
" kernel time %d ",
kernel);
fflush(where);
}
delta_t = RtlLargeIntegerSubtract( /* robin */
sysperf_end.IdleTime, /* robin */
sysperf_start.IdleTime); /* robin */
idle = RtlExtendedLargeIntegerDivide( /* robin */
delta_t, /* robin */
10*1000, /* robin */
&remainder); /* robin */
if (debug) {
fprintf(where,
" idle time %d ",
idle);
fflush(where);
}
delta_t = RtlLargeIntegerSubtract( /* robin */
sysperf_end.UserTime, /* robin */
sysperf_start.UserTime); /* robin */
user = RtlExtendedLargeIntegerDivide( /* robin */
delta_t, /* robin */
10*1000, /* robin */
&remainder); /* robin */
if (debug) {
fprintf(where,
" user time %d\n",
user);
fflush(where);
}
/* robin */
cpu = ((kernel.LowPart+user.LowPart-idle.LowPart)*100 + 50) /* robin */
/elapsed.LowPart; /* robin */
lib_local_cpu_util = (float)cpu; /* robin */
/* robin */
/* robin */
if (debug) { /* robin */
fprintf(where,"calc_cpu_util: local_cpu_util = %ld%%\n", /* robin */
cpu); /* robin */
} /* robin */
/* robin */
#endif /* NT_SDK */
#else
/* we had no kernel idle counter, so use what we can */
ticks_sec = sysconf(_SC_CLK_TCK);
cpu_time_ticks = ((times_data2.tms_utime - times_data1.tms_utime) +
(times_data2.tms_stime -
times_data1.tms_stime));
if (debug) {
fprintf(where,"calc_cpu_util has cpu_time_ticks at %d\n",cpu_time_ticks);
fprintf(where,"calc_cpu_util has tick_sec at %ld\n",ticks_sec);
fprintf(where,"calc_cpu_util has lib_elapsed at %f\n",lib_elapsed);
fflush(where);
}
lib_local_cpu_util = (float) (((double) (cpu_time_ticks) /
(double) ticks_sec /
(double) lib_elapsed) *
(double) 100.0);
#endif /* WIN32 */
#endif /* USE_PSTAT */
#endif /* USE_LOOPER */
lib_local_cpu_util *= correction_factor;
return lib_local_cpu_util;
}
float calc_service_demand(units_sent,
elapsed_time,
cpu_utilization,
num_cpus)
double units_sent;
float elapsed_time;
float cpu_utilization;
int num_cpus;
{
double unit_divisor = (float)1024.0;
double service_demand;
double thruput;
if (debug) {
fprintf(where,"calc_service_demand called: units_sent = %f\n",
units_sent);
fprintf(where," elapsed_time = %f\n",
elapsed_time);
fprintf(where," cpu_util = %f\n",
cpu_utilization);
fprintf(where," num cpu = %d\n",
num_cpus);
fflush(where);
}
if (num_cpus == 0) num_cpus = lib_num_loc_cpus;
if (elapsed_time == 0.0) {
elapsed_time = lib_elapsed;
}
if (cpu_utilization == 0.0) {
cpu_utilization = lib_local_cpu_util;
}
thruput = (units_sent /
(double) unit_divisor /
(double) elapsed_time);
/* on MP systems, it is necessary to multiply the service demand by */
/* the number of CPU's. at least, I believe that to be the case:) */
/* raj 10/95 */
/* thruput has a "per second" component. if we were using 100% ( */
/* 100.0) of the CPU in a second, that would be 1 second, or 1 */
/* millisecond, so we multiply cpu_utilization by 10 to go to */
/* milliseconds, or 10,000 to go to micro seconds. With revision */
/* 2.1, the service demand measure goes to microseconds per unit. */
/* raj 12/95 */
service_demand = (cpu_utilization*10000.0/thruput) *
(float) num_cpus;
if (debug) {
fprintf(where,"calc_service_demand using: units_sent = %f\n",
units_sent);
fprintf(where," elapsed_time = %f\n",
elapsed_time);
fprintf(where," cpu_util = %f\n",
cpu_utilization);
fprintf(where," num cpu = %d\n",
num_cpus);
fprintf(where,"calc_service_demand got: thruput = %f\n",
thruput);
fprintf(where," servdem = %f\n",
service_demand);
fflush(where);
}
return service_demand;
}
#ifdef USE_LOOPER
void
bind_to_processor(child_num)
int child_num;
{
/* This routine will bind the calling process to a particular */
/* processor. We are not choosy as to which processor, so it will be */
/* the process id mod the number of processors - shifted by one for */
/* those systems which name processor starting from one instead of */
/* zero. on those systems where I do not yet know how to bind a */
/* process to a processor, this routine will be a no-op raj 10/95 */
/* just as a reminder, this is *only* for the looper processes, not */
/* the actual measurement processes. those will, should, MUST float */
/* or not float from CPU to CPU as controlled by the operating */
/* system defaults. raj 12/95 */
#ifdef __hpux
#include <sys/syscall.h>
#include <sys/mp.h>
int old_cpu = -2;
if (debug) {
fprintf(where,
"child %d asking for CPU %d as pid %d with %d CPUs\n",
child_num,
(child_num % lib_num_loc_cpus),
getpid(),
lib_num_loc_cpus);
fflush(where);
}
SETPROCESS((child_num % lib_num_loc_cpus), getpid());
return;
#else
#if defined(__sun) && defined(__SVR4)
/* should only be Solaris */
#include <sys/processor.h>
#include <sys/procset.h>
int old_binding;
if (debug) {
fprintf(where,
"bind_to_processor: child %d asking for CPU %d as pid %d with %d CPUs\n",
child_num,
(child_num % lib_num_loc_cpus),
getpid(),
lib_num_loc_cpus);
fflush(where);
}
if (processor_bind(P_PID,
getpid(),
(child_num % lib_num_loc_cpus),
&old_binding) != 0) {
fprintf(where,"bind_to_processor: unable to perform processor binding\n");
fprintf(where," errno %d\n",errno);
fflush(where);
}
return;
#else
return;
#endif /* __sun && _SVR4 */
#endif /* __hpux */
}
/* sit_and_spin will just spin about incrementing a value */
/* this value will either be in a memory mapped region on Unix shared */
/* by each looper process, or something appropriate on Windows/NT */
/* (malloc'd or such). This routine is reasonably ugly in that it has */
/* priority manipulating code for lots of different operating */
/* systems. This routine never returns. raj 1/96 */
void
sit_and_spin(child_index)
int child_index;
{
long *my_counter_ptr;
/* only use C stuff if we are not WIN32 unless and until we */
/* switch from CreateThread to _beginthread. raj 1/96 */
#ifndef WIN32
/* we are the child. we could decide to exec some separate */
/* program, but that doesn't really seem worthwhile - raj 4/95 */
if (debug > 1) {
fprintf(where,
"Looper child %d is born, pid %d\n",
child_index,
getpid());
fflush(where);
}
#endif /* WIN32 */
/* reset our base pointer to be at the appropriate offset */
my_counter_ptr = (long *) ((char *)lib_base_pointer +
(NETPERF_PAGE_SIZE *
PAGES_PER_CHILD * child_index));
/* in the event we are running on an MP system, it would */
/* probably be good to bind the soaker processes to specific */
/* processors. I *think* this is the most reasonable thing to */
/* do, and would be closes to simulating the information we get */
/* on HP-UX with pstat. I could put all the system-specific code */
/* here, but will "abstract it into another routine to keep this */
/* area more readable. I'll probably do the same thine with the */
/* "low pri code" raj 10/95 */
/* NOTE. I do *NOT* think it would be appropriate for the actual */
/* test processes to be bound to a particular processor - that */
/* is something that should be left up to the operating system. */
bind_to_processor(child_index);
for (*my_counter_ptr = 0L;
;
(*my_counter_ptr)++) {
if (!(*lib_base_pointer % 1)) {
/* every once and again, make sure that our process priority is */
/* nice and low. also, by making system calls, it may be easier */
/* for us to be pre-empted by something that needs to do useful */
/* work - like the thread of execution actually sending and */
/* receiving data across the network :) */
#ifdef _AIX
int pid,prio;
prio = PRIORITY;
pid = getpid();
/* if you are not root, this call will return EPERM - why one */
/* cannot change one's own priority to lower value is beyond */
/* me. raj 2/26/96 */
setpri(pid, prio);
#else /* _AIX */
#ifdef __sgi
int pid,prio;
prio = PRIORITY;
pid = getpid();
schedctl(NDPRI, pid, prio);
sginap(0);
#else /* __sgi */
#ifdef WIN32
SetThreadPriority(GetCurrentThread(),THREAD_PRIORITY_IDLE);
#else /* WIN32 */
#if defined(__sun) && defined(__SVR4)
#include <sys/types.h>
#include <sys/priocntl.h>
#include <sys/rtpriocntl.h>
#include <sys/tspriocntl.h>
/* I would *really* like to know how to use priocntl to make the */
/* priority low for this looper process. however, either my mind */
/* is addled, or the manpage in section two for priocntl is not */
/* terribly helpful - for one, it has no examples :( so, if you */
/* can help, I'd love to hear from you. in the meantime, we will */
/* rely on nice(39). raj 2/26/96 */
nice(39);
#else /* __sun && __SVR4 */
nice(39);
#endif /* __sun && _SVR4 */
#endif /* WIN32 */
#endif /* __sgi */
#endif /* _AIX */
}
}
}
/* this routine will start all the looper processes or threads for */
/* measuring CPU utilization. */
void
start_looper_processes()
{
unsigned int
i,
file_size;
/* we want at least two pages for each processor. the */
/* child for any one processor will write to the first of his two */
/* pages, and the second page will be a buffer in case there is page */
/* prefetching. if your system pre-fetches more than a single page, */
/* well, you'll have to modify this or live with it :( raj 4/95 */
file_size = ((NETPERF_PAGE_SIZE * PAGES_PER_CHILD) *
lib_num_loc_cpus);
#ifndef WIN32
/* we we are not using WINDOWS NT (or 95 actually :), then we want */
/* to create a memory mapped region so we can see all the counting */
/* rates of the loopers */
/* could we just use an anonymous memory region for this? it is */
/* possible that using a mmap()'ed "real" file, while convenient for */
/* debugging, could result in some filesystem activity - like */
/* metadata updates? raj 4/96 */
lib_idle_fd = open("/tmp/netperf_cpu",O_RDWR | O_CREAT | O_EXCL);
if (lib_idle_fd == -1) {
fprintf(where,"create_looper: file creation; errno %d\n",errno);
fflush(where);
exit(1);
}
if (chmod("/tmp/netperf_cpu",0644) == -1) {
fprintf(where,"create_looper: chmod; errno %d\n",errno);
fflush(where);
exit(1);
}
/* with the file descriptor in place, lets be sure that the file is */
/* large enough. */
if (truncate("/tmp/netperf_cpu",file_size) == -1) {
fprintf(where,"create_looper: truncate: errno %d\n",errno);
fflush(where);
exit(1);
}
/* the file should be large enough now, so we can mmap it */
/* if the system does not have MAP_VARIABLE, just define it to */
/* be zero. it is only used/needed on HP-UX (?) raj 4/95 */
#ifndef MAP_VARIABLE
#define MAP_VARIABLE 0x0000
#endif /* MAP_VARIABLE */
#ifndef MAP_FILE
#define MAP_FILE 0x0000
#endif /* MAP_FILE */
if ((lib_base_pointer = (long *)mmap(NULL,
file_size,
PROT_READ | PROT_WRITE,
MAP_FILE | MAP_SHARED | MAP_VARIABLE,
lib_idle_fd,
0)) == (long *)-1) {
fprintf(where,"create_looper: mmap: errno %d\n",errno);
fflush(where);
exit(1);
}
if (debug > 1) {
fprintf(where,"num CPUs %d, file_size %d, lib_base_pointer %p\n",
lib_num_loc_cpus,
file_size,
lib_base_pointer);
fflush(where);
}
/* we should have a valid base pointer. lets fork */
for (i = 0; i < lib_num_loc_cpus; i++) {
switch (lib_idle_pids[i] = fork()) {
case -1:
perror("netperf: fork");
exit(1);
case 0:
/* we are the child. we could decide to exec some separate */
/* program, but that doesn't really seem worthwhile - raj 4/95 */
sit_and_spin(i);
/* we should never really get here, but if we do, just exit(0) */
exit(0);
break;
default:
/* we must be the parent */
lib_idle_address[i] = (long *) ((char *)lib_base_pointer +
(NETPERF_PAGE_SIZE *
PAGES_PER_CHILD * i));
if (debug) {
fprintf(where,"lib_idle_address[%d] is %p\n",
i,
lib_idle_address[i]);
fflush(where);
}
}
}
#else
/* we are compiled -DWIN32 */
if ((lib_base_pointer = malloc(file_size)) == NULL) {
fprintf(where,
"create_looper_process could not malloc %d bytes\n",
file_size);
fflush(where);
exit(1);
}
/* now, create all the threads */
for(i = 0; i < lib_num_loc_cpus; i++) {
long place_holder;
if ((lib_idle_pids[i] = CreateThread(0,
0,
(LPTHREAD_START_ROUTINE)sit_and_spin,
(LPVOID)i,
0,
&place_holder)) == NULL ) {
fprintf(where,
"create_looper_process: CreateThread failled\n");
fflush(where);
/* I wonder if I need to look for other threads to kill? */
exit(1);
}
lib_idle_address[i] = (long *) ((char *)lib_base_pointer +
(NETPERF_PAGE_SIZE *
PAGES_PER_CHILD * i));
if (debug) {
fprintf(where,"lib_idle_address[%d] is %p\n",
i,
lib_idle_address[i]);
fflush(where);
}
}
#endif /* WIN32 */
/* we need to have the looper processes settled-in before we do */
/* anything with them, so lets sleep for say 30 seconds. raj 4/95 */
sleep(30);
}
#endif /* USE_LOOPER */
float
calibrate_local_cpu(local_cpu_rate)
float local_cpu_rate;
{
lib_num_loc_cpus = get_num_cpus();
lib_use_idle = 0;
#ifdef USE_LOOPER
/* we want to get the looper processes going */
start_looper_processes();
lib_use_idle = 1;
#endif /* USE_LOOPER */
if (local_cpu_rate > 0) {
/* The user think that he knows what the cpu rate is. We assume */
/* that all the processors of an MP system are essentially the */
/* same - for this reason we do not have a per processor maxrate. */
/* if the machine has processors which are different in */
/* performance, the CPU utilization will be skewed. raj 4/95 */
lib_local_maxrate = local_cpu_rate;
}
else {
/* if neither USE_LOOPER nor USE_PSTAT are defined, we return a */
/* 0.0 to indicate that times or getrusage should be used. raj */
/* 4/95 */
lib_local_maxrate = (float)0.0;
#ifdef USE_LOOPER
lib_local_maxrate = calibrate_looper(4,10);
#endif
#ifdef USE_PSTAT
#ifdef PSTAT_IPCINFO
/* one version of pstat needs calibration */
lib_local_maxrate = calibrate_pstat(4,10);
#endif /* PSTAT_IPCINFO */
#endif /* USE_PSTAT */
}
return lib_local_maxrate;
}
float
calibrate_remote_cpu()
{
float remrate;
netperf_request.content.request_type = CPU_CALIBRATE;
send_request();
/* we know that calibration will last at least 40 seconds, so go to */
/* sleep for that long so the 60 second select in recv_response will */
/* not pop. raj 7/95 */
sleep(40);
recv_response();
if (netperf_response.content.serv_errno) {
/* initially, silently ignore remote errors and pass */
/* back a zero to the caller this should allow us to */
/* mix rev 1.0 and rev 1.1 netperfs... */
return((float)0.0);
}
else {
/* the rate is the first word of the test_specific data */
bcopy((char *)netperf_response.content.test_specific_data,
(char *)&remrate,
sizeof(remrate));
/* remrate = (float) netperf_response.content.test_specific_data[0]; */
return(remrate);
}
}
int
msec_sleep( msecs )
int msecs;
{
#ifdef WIN32
int rval ;
#endif /* WIN32 */
struct timeval interval;
interval.tv_sec = msecs / 1000;
interval.tv_usec = (msecs - (msecs/1000) *1000) * 1000;
#ifdef WIN32
if (rval = select(0,
#else
if (select(0,
#endif /* WIN32 */
0,
0,
0,
&interval)) {
#ifdef WIN32
if ( rval == SOCKET_ERROR && WSAGetLastError() == WSAEINTR ) {
#else
if (errno == EINTR) {
#endif /* WIN32 */
return(1);
}
perror("msec_sleep: select");
exit(1);
}
return(0);
}
#ifdef HISTOGRAM
/* hist.c
Given a time difference in microseconds, increment one of 61
different buckets:
0 - 9 in increments of 100 usecs
1 - 9 in increments of 1 msec
1 - 9 in increments of 10 msecs
1 - 9 in increments of 100 msecs
1 - 9 in increments of 1 sec
1 - 9 in increments of 10 sec
> 100 secs
This will allow any time to be recorded to within an accuracy of
10%, and provides a compact representation for capturing the
distribution of a large number of time differences (e.g.
request-response latencies).
Colin Low 10/6/93
*/
/* #include "sys.h" */
/*#define HIST_TEST*/
HIST HIST_new(void){
HIST h;
if((h = (HIST) malloc(sizeof(struct histogram_struct))) == NULL) {
perror("HIST_new - malloc failed");
exit(1);
}
HIST_clear(h);
return h;
}
void HIST_clear(HIST h){
int i;
for(i = 0; i < 10; i++){
h->tenth_msec[i] = 0;
h->unit_msec[i] = 0;
h->ten_msec[i] = 0;
h->hundred_msec[i] = 0;
h->unit_sec[i] = 0;
h->ten_sec[i] = 0;
}
h->ridiculous = 0;
h->total = 0;
}
void HIST_add(register HIST h, int time_delta){
register int val;
h->total++;
val = time_delta/100;
if(val <= 9) h->tenth_msec[val]++;
else {
val = val/10;
if(val <= 9) h->unit_msec[val]++;
else {
val = val/10;
if(val <= 9) h->ten_msec[val]++;
else {
val = val/10;
if(val <= 9) h->hundred_msec[val]++;
else {
val = val/10;
if(val <= 9) h->unit_sec[val]++;
else {
val = val/10;
if(val <= 9) h->ten_sec[val]++;
else h->ridiculous++;
}
}
}
}
}
}
#define RB_printf printf
void output_row(FILE *fd, char *title, int *row){
register int i;
RB_printf("%s", title);
for(i = 0; i < 10; i++) RB_printf(": %4d", row[i]);
RB_printf("\n");
}
void HIST_report(HIST h){
output_row(stdout, "TENTH_MSEC ", h->tenth_msec);
output_row(stdout, "UNIT_MSEC ", h->unit_msec);
output_row(stdout, "TEN_MSEC ", h->ten_msec);
output_row(stdout, "HUNDRED_MSEC ", h->hundred_msec);
output_row(stdout, "UNIT_SEC ", h->unit_sec);
output_row(stdout, "TEN_SEC ", h->ten_sec);
RB_printf(">100_SECS: %d\n", h->ridiculous);
RB_printf("HIST_TOTAL: %d\n", h->total);
}
/* return the difference (in micro seconds) between two timeval */
/* timestamps */
int
delta_micro(struct timeval *begin,struct timeval *end)
{
int usecs, secs;
if (end->tv_usec < begin->tv_usec) {
/* borrow a second from the tv_sec */
end->tv_usec += 1000000;
end->tv_sec--;
}
usecs = end->tv_usec - begin->tv_usec;
secs = end->tv_sec - begin->tv_sec;
usecs += (secs * 1000000);
return(usecs);
}
#endif /* HISTOGRAM */
#ifdef DO_DLPI
int
put_control(fd, len, pri, ack)
int fd, len, pri, ack;
{
int error;
int flags = 0;
dl_error_ack_t *err_ack = (dl_error_ack_t *)control_data;
control_message.len = len;
if ((error = putmsg(fd, &control_message, 0, pri)) < 0 ) {
fprintf(where,"put_control: putmsg error %d\n",error);
fflush(where);
return(-1);
}
if ((error = getmsg(fd, &control_message, 0, &flags)) < 0) {
fprintf(where,"put_control: getsmg error %d\n",error);
fflush(where);
return(-1);
}
if (err_ack->dl_primitive != ack) {
fprintf(where,"put_control: acknowledgement error wanted %u got %u \n",
ack,err_ack->dl_primitive);
if (err_ack->dl_primitive == DL_ERROR_ACK) {
fprintf(where," dl_error_primitive: %u\n",
err_ack->dl_error_primitive);
fprintf(where," dl_errno: %u\n",
err_ack->dl_errno);
fprintf(where," dl_unix_errno %u\n",
err_ack->dl_unix_errno);
}
fflush(where);
return(-1);
}
return(0);
}
int
dl_open(devfile,ppa)
char devfile[];
int ppa;
{
int fd;
dl_attach_req_t *attach_req = (dl_attach_req_t *)control_data;
if ((fd = open(devfile, O_RDWR)) == -1) {
fprintf(where,"netperf: dl_open: open of %s failed, errno = %d\n",
devfile,
errno);
return(-1);
}
attach_req->dl_primitive = DL_ATTACH_REQ;
attach_req->dl_ppa = ppa;
if (put_control(fd, sizeof(dl_attach_req_t), 0, DL_OK_ACK) < 0) {
fprintf(where,
"netperf: dl_open: could not send control message, errno = %d\n",
errno);
return(-1);
}
return(fd);
}
int
dl_bind(fd, sap, mode, dlsap_ptr, dlsap_len)
int fd, sap, mode;
char *dlsap_ptr;
int *dlsap_len;
{
dl_bind_req_t *bind_req = (dl_bind_req_t *)control_data;
dl_bind_ack_t *bind_ack = (dl_bind_ack_t *)control_data;
bind_req->dl_primitive = DL_BIND_REQ;
bind_req->dl_sap = sap;
bind_req->dl_max_conind = 1;
bind_req->dl_service_mode = mode;
bind_req->dl_conn_mgmt = 0;
bind_req->dl_xidtest_flg = 0;
if (put_control(fd, sizeof(dl_bind_req_t), 0, DL_BIND_ACK) < 0) {
fprintf(where,
"netperf: dl_bind: could not send control message, errno = %d\n",
errno);
return(-1);
}
/* at this point, the control_data portion of the control message */
/* structure should contain a DL_BIND_ACK, which will have a full */
/* DLSAP in it. we want to extract this and pass it up so that */
/* it can be passed around. */
if (*dlsap_len >= bind_ack->dl_addr_length) {
bcopy((char *)bind_ack+bind_ack->dl_addr_offset,
dlsap_ptr,
bind_ack->dl_addr_length);
*dlsap_len = bind_ack->dl_addr_length;
return(0);
}
else {
return (-1);
}
}
int
dl_connect(fd, rem_addr, rem_addr_len)
int fd;
unsigned char *rem_addr;
int rem_addr_len;
{
dl_connect_req_t *connection_req = (dl_connect_req_t *)control_data;
dl_connect_con_t *connection_con = (dl_connect_con_t *)control_data;
struct pollfd pinfo;
int flags = 0;
/* this is here on the off chance that we really want some data */
u_long data_area[512];
struct strbuf data_message;
int error;
data_message.maxlen = 2048;
data_message.len = 0;
data_message.buf = (char *)data_area;
connection_req->dl_primitive = DL_CONNECT_REQ;
connection_req->dl_dest_addr_length = rem_addr_len;
connection_req->dl_dest_addr_offset = sizeof(dl_connect_req_t);
connection_req->dl_qos_length = 0;
connection_req->dl_qos_offset = 0;
bcopy (rem_addr,
(unsigned char *)control_data + sizeof(dl_connect_req_t),
rem_addr_len);
/* well, I would call the put_control routine here, but the sequence */
/* of connection stuff with DLPI is a bit screwey with all this */
/* message passing - Toto, I don't think were in Berkeley anymore. */
control_message.len = sizeof(dl_connect_req_t) + rem_addr_len;
if ((error = putmsg(fd,&control_message,0,0)) !=0) {
fprintf(where,"dl_connect: putmsg failure, errno = %d, error 0x%x \n",
errno,error);
fflush(where);
return(-1);
};
pinfo.fd = fd;
pinfo.events = POLLIN | POLLPRI;
pinfo.revents = 0;
if ((error = getmsg(fd,&control_message,&data_message,&flags)) != 0) {
fprintf(where,"dl_connect: getmsg failure, errno = %d, error 0x%x \n",
errno,error);
fflush(where);
return(-1);
}
while (control_data[0] == DL_TEST_CON) {
/* i suppose we spin until we get an error, or a connection */
/* indication */
if((error = getmsg(fd,&control_message,&data_message,&flags)) !=0) {
fprintf(where,"dl_connect: getmsg failure, errno = %d, error = 0x%x\n",
errno,error);
fflush(where);
return(-1);
}
}
/* we are out - it either worked or it didn't - which was it? */
if (control_data[0] == DL_CONNECT_CON) {
return(0);
}
else {
return(-1);
}
}
int
dl_accept(fd, rem_addr, rem_addr_len)
int fd;
unsigned char *rem_addr;
int rem_addr_len;
{
dl_connect_ind_t *connect_ind = (dl_connect_ind_t *)control_data;
dl_connect_res_t *connect_res = (dl_connect_res_t *)control_data;
int tmp_cor;
int flags = 0;
/* hang around and wait for a connection request */
getmsg(fd,&control_message,0,&flags);
while (control_data[0] != DL_CONNECT_IND) {
getmsg(fd,&control_message,0,&flags);
}
/* now respond to the request. at some point, we may want to be sure */
/* that the connection came from the correct station address, but */
/* will assume that we do not have to worry about it just now. */
tmp_cor = connect_ind->dl_correlation;
connect_res->dl_primitive = DL_CONNECT_RES;
connect_res->dl_correlation = tmp_cor;
connect_res->dl_resp_token = 0;
connect_res->dl_qos_length = 0;
connect_res->dl_qos_offset = 0;
connect_res->dl_growth = 0;
return(put_control(fd, sizeof(dl_connect_res_t), 0, DL_OK_ACK));
}
int
dl_set_window(fd, window)
int fd, window;
{
return(0);
}
void
dl_stats(fd)
int fd;
{
}
int
dl_send_disc(fd)
int fd;
{
}
int
dl_recv_disc(fd)
int fd;
{
}
#endif /* DO_DLPI*/
/* these routines for confidence intervals are courtesy of IBM. They */
/* have been modified slightly for more general usage beyond TCP/UDP */
/* tests. raj 11/94 I would suspect that this code carries an IBM */
/* copyright that is much the same as that for the original HP */
/* netperf code */
int confidence_iterations; /* for iterations */
double
result_confid=-10.0,
loc_cpu_confid=-10.0,
rem_cpu_confid=-10.0,
measured_sum_result=0.0,
measured_square_sum_result=0.0,
measured_mean_result=0.0,
measured_var_result=0.0,
measured_sum_local_cpu=0.0,
measured_square_sum_local_cpu=0.0,
measured_mean_local_cpu=0.0,
measured_var_local_cpu=0.0,
measured_sum_remote_cpu=0.0,
measured_square_sum_remote_cpu=0.0,
measured_mean_remote_cpu=0.0,
measured_var_remote_cpu=0.0,
measured_sum_local_service_demand=0.0,
measured_square_sum_local_service_demand=0.0,
measured_mean_local_service_demand=0.0,
measured_var_local_service_demand=0.0,
measured_sum_remote_service_demand=0.0,
measured_square_sum_remote_service_demand=0.0,
measured_mean_remote_service_demand=0.0,
measured_var_remote_service_demand=0.0,
measured_sum_local_time=0.0,
measured_square_sum_local_time=0.0,
measured_mean_local_time=0.0,
measured_var_local_time=0.0,
measured_mean_remote_time=0.0,
measured_fails,
measured_local_results,
confidence=-10.0;
/* interval=0.1; */
/************************************************************************/
/* */
/* Constants for Confidence Intervals */
/* */
/************************************************************************/
void
init_stat()
{
measured_sum_result=0.0;
measured_square_sum_result=0.0;
measured_mean_result=0.0;
measured_var_result=0.0;
measured_sum_local_cpu=0.0;
measured_square_sum_local_cpu=0.0;
measured_mean_local_cpu=0.0;
measured_var_local_cpu=0.0;
measured_sum_remote_cpu=0.0;
measured_square_sum_remote_cpu=0.0;
measured_mean_remote_cpu=0.0;
measured_var_remote_cpu=0.0;
measured_sum_local_service_demand=0.0;
measured_square_sum_local_service_demand=0.0;
measured_mean_local_service_demand=0.0;
measured_var_local_service_demand=0.0;
measured_sum_remote_service_demand=0.0;
measured_square_sum_remote_service_demand=0.0;
measured_mean_remote_service_demand=0.0;
measured_var_remote_service_demand=0.0;
measured_sum_local_time=0.0;
measured_square_sum_local_time=0.0;
measured_mean_local_time=0.0;
measured_var_local_time=0.0;
measured_mean_remote_time=0.0;
measured_fails = 0.0;
measured_local_results=0.0,
confidence=-10.0;
}
/* this routine does a simple table lookup for some statistical */
/* function that I would remember if I stayed awake in my probstats */
/* class... raj 11/94 */
double
confid(level,freedom)
int level;
int freedom;
{
double t99[35],t95[35];
t95[1]=12.706;
t95[2]= 4.303;
t95[3]= 3.182;
t95[4]= 2.776;
t95[5]= 2.571;
t95[6]= 2.447;
t95[7]= 2.365;
t95[8]= 2.306;
t95[9]= 2.262;
t95[10]= 2.228;
t95[11]= 2.201;
t95[12]= 2.179;
t95[13]= 2.160;
t95[14]= 2.145;
t95[15]= 2.131;
t95[16]= 2.120;
t95[17]= 2.110;
t95[18]= 2.101;
t95[19]= 2.093;
t95[20]= 2.086;
t95[21]= 2.080;
t95[22]= 2.074;
t95[23]= 2.069;
t95[24]= 2.064;
t95[25]= 2.060;
t95[26]= 2.056;
t95[27]= 2.052;
t95[28]= 2.048;
t95[29]= 2.045;
t95[30]= 2.042;
t99[1]=63.657;
t99[2]= 9.925;
t99[3]= 5.841;
t99[4]= 4.604;
t99[5]= 4.032;
t99[6]= 3.707;
t99[7]= 3.499;
t99[8]= 3.355;
t99[9]= 3.250;
t99[10]= 3.169;
t99[11]= 3.106;
t99[12]= 3.055;
t99[13]= 3.012;
t99[14]= 2.977;
t99[15]= 2.947;
t99[16]= 2.921;
t99[17]= 2.898;
t99[18]= 2.878;
t99[19]= 2.861;
t99[20]= 2.845;
t99[21]= 2.831;
t99[22]= 2.819;
t99[23]= 2.807;
t99[24]= 2.797;
t99[25]= 2.787;
t99[26]= 2.779;
t99[27]= 2.771;
t99[28]= 2.763;
t99[29]= 2.756;
t99[30]= 2.750;
if(level==95){
return(t95[freedom]);
} else if(level==99){
return(t99[freedom]);
} else{
return(0);
}
}
void
calculate_confidence(confidence_iterations,
time,
result,
loc_cpu,
rem_cpu,
loc_sd,
rem_sd)
int confidence_iterations;
float time;
double result;
float loc_cpu;
float rem_cpu;
float loc_sd;
float rem_sd;
{
if (debug) {
fprintf(where,
"calculate_confidence: itr %d; time %f; res %f\n",
confidence_iterations,
time,
result);
fprintf(where,
" lcpu %f; rcpu %f\n",
loc_cpu,
rem_cpu);
fprintf(where,
" lsdm %f; rsdm %f\n",
loc_sd,
rem_sd);
fflush(where);
}
/* the test time */
measured_sum_local_time +=
(double) time;
measured_square_sum_local_time +=
(double) time*time;
measured_mean_local_time =
(double) measured_sum_local_time/confidence_iterations;
measured_var_local_time =
(double) measured_square_sum_local_time/confidence_iterations
-measured_mean_local_time*measured_mean_local_time;
/* the test result */
measured_sum_result +=
(double) result;
measured_square_sum_result +=
(double) result*result;
measured_mean_result =
(double) measured_sum_result/confidence_iterations;
measured_var_result =
(double) measured_square_sum_result/confidence_iterations
-measured_mean_result*measured_mean_result;
/* local cpu utilization */
measured_sum_local_cpu +=
(double) loc_cpu;
measured_square_sum_local_cpu +=
(double) loc_cpu*loc_cpu;
measured_mean_local_cpu =
(double) measured_sum_local_cpu/confidence_iterations;
measured_var_local_cpu =
(double) measured_square_sum_local_cpu/confidence_iterations
-measured_mean_local_cpu*measured_mean_local_cpu;
/* remote cpu util */
measured_sum_remote_cpu +=
(double) rem_cpu;
measured_square_sum_remote_cpu+=
(double) rem_cpu*rem_cpu;
measured_mean_remote_cpu =
(double) measured_sum_remote_cpu/confidence_iterations;
measured_var_remote_cpu =
(double) measured_square_sum_remote_cpu/confidence_iterations
-measured_mean_remote_cpu*measured_mean_remote_cpu;
/* local service demand */
measured_sum_local_service_demand +=
(double) loc_sd;
measured_square_sum_local_service_demand+=
(double) loc_sd*loc_sd;
measured_mean_local_service_demand =
(double) measured_sum_local_service_demand/confidence_iterations;
measured_var_local_service_demand =
(double) measured_square_sum_local_service_demand/confidence_iterations
-measured_mean_local_service_demand*measured_mean_local_service_demand;
/* remote service demand */
measured_sum_remote_service_demand +=
(double) rem_sd;
measured_square_sum_remote_service_demand+=
(double) rem_sd*rem_sd;
measured_mean_remote_service_demand =
(double) measured_sum_remote_service_demand/confidence_iterations;
measured_var_remote_service_demand =
(double) measured_square_sum_remote_service_demand/confidence_iterations
-measured_mean_remote_service_demand*measured_mean_remote_service_demand;
if(confidence_iterations>1){
result_confid= (double) interval -
2.0 * confid(confidence_level,confidence_iterations-1)*
sqrt(measured_var_result/(confidence_iterations-1.0)) /
measured_mean_result;
loc_cpu_confid= (double) interval -
2.0 * confid(confidence_level,confidence_iterations-1)*
sqrt(measured_var_local_cpu/(confidence_iterations-1.0)) /
measured_mean_local_cpu;
rem_cpu_confid= (double) interval -
2.0 * confid(confidence_level,confidence_iterations-1)*
sqrt(measured_var_remote_cpu/(confidence_iterations-1.0)) /
measured_mean_remote_cpu;
if(debug){
printf("Conf_itvl %2d: results:%4.1f%% loc_cpu:%4.1f%% rem_cpu:%4.1f%%\n",
confidence_iterations,
(interval-result_confid)*100.0,
(interval-loc_cpu_confid)*100.0,
(interval-rem_cpu_confid)*100.0);
}
confidence = min(min(result_confid,loc_cpu_confid),rem_cpu_confid);
}
}
/* here ends the IBM code */
void
retrieve_confident_values(elapsed_time,
thruput,
local_cpu_utilization,
remote_cpu_utilization,
local_service_demand,
remote_service_demand)
float *elapsed_time;
double *thruput;
float *local_cpu_utilization;
float *remote_cpu_utilization;
float *local_service_demand;
float *remote_service_demand;
{
*elapsed_time = measured_mean_local_time;
*thruput = measured_mean_result;
*local_cpu_utilization = measured_mean_local_cpu;
*remote_cpu_utilization = measured_mean_remote_cpu;
*local_service_demand = measured_mean_local_service_demand;
*remote_service_demand = measured_mean_remote_service_demand;
}
/* display_confidence() is called when we could not achieve the */
/* desirec confidence in the results. it will print the achieved */
/* confidence to "where" raj 11/94 */
void
display_confidence()
{
fprintf(where,
"!!! WARNING\n");
fprintf(where,
"!!! Desired confidence was not achieved within ");
fprintf(where,
"the specified iterations.\n");
fprintf(where,
"!!! This implies that there was variability in ");
fprintf(where,
"the test environment that\n");
fprintf(where,
"!!! must be investigated before going further.\n");
fprintf(where,
"!!! Confidence intervals: Throughput : %4.1f%%\n",
100.0 * (interval - result_confid));
fprintf(where,
"!!! Local CPU util : %4.1f%%\n",
100.0 * (interval - loc_cpu_confid));
fprintf(where,
"!!! Remote CPU util : %4.1f%%\n\n",
100.0 * (interval - rem_cpu_confid));
}
|