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
/**
* @file uct.h
* @date 2014-2020
* @copyright NVIDIA Corporation. All rights reserved.
* @copyright Mellanox Technologies Ltd. All rights reserved.
* @copyright Oak Ridge National Laboratory. All rights received.
* @copyright Advanced Micro Devices, Inc. All rights received.
* @brief Unified Communication Transport
*/
/** @file uct.h */
/**
* @defgroup UCT_API Unified Communication Transport (UCT) API
* @{
* This section describes UCT API.
* @}
*/
/**
* @defgroup UCT_RESOURCE UCT Communication Resource
* @ingroup UCT_API
* @{
* This section describes a concept of the Communication Resource and routines
* associated with the concept.
* @}
*/
/**
* @defgroup UCT_CONTEXT UCT Communication Context
* @ingroup UCT_API
* @{
*
* UCT context abstracts all the resources required for network communication.
* It is designed to enable either share or isolate resources for multiple
* programming models used by an application.
*
* This section provides a detailed description of this concept and
* routines associated with it.
*
* @}
*/
/**
* @defgroup UCT_MD UCT Memory Domain
* @ingroup UCT_API
* @{
* The Memory Domain abstracts resources required for network communication,
* which typically includes memory, transport mechanisms, compute and
* network resources. It is an isolation mechanism that can be employed
* by the applications for isolating resources between multiple programming models.
* The attributes of the Memory Domain are defined by the structure @ref uct_md_attr().
* The communication and memory operations are defined in the context of Memory Domain.
*
* @}
*/
/**
* @defgroup UCT_AM UCT Active messages
* @ingroup UCT_API
* @{
* Defines active message functions.
* @}
*/
/**
* @defgroup UCT_RMA UCT Remote memory access operations
* @ingroup UCT_API
* @{
* Defines remote memory access operations.
* @}
*/
/**
* @defgroup UCT_AMO UCT Atomic operations
* @ingroup UCT_API
* @{
* Defines atomic operations.
* @}
*/
/**
* @defgroup UCT_TAG UCT Tag matching operations
* @ingroup UCT_API
* @{
* Defines tag matching operations.
* @}
*/
/**
* @defgroup UCT_CLIENT_SERVER UCT client-server operations
* @ingroup UCT_API
* @{
* Defines client-server operations.
* The client-server API allows the connection establishment between an active
* side - a client, and its peer - the passive side - a server.
* The connection can be established through a UCT transport that supports
* listening and connecting via IP address and port (listening can also be on INADDR_ANY).
*
* The following is a general overview of the operations on the server side:
*
* Connecting:
* @ref uct_cm_open
* Open a connection manager.
* @ref uct_listener_create
* Create a listener on the CM and start listening on a given IP,port / INADDR_ANY.
* @ref uct_cm_listener_conn_request_callback_t
* This callback is invoked by the UCT transport to handle an incoming connection
* request from a client.
* Accept or reject the client's connection request.
* @ref uct_ep_create
* Connect to the client by creating an endpoint if the request is accepted.
* The server creates a new endpoint for every connection request that it accepts.
* @ref uct_cm_ep_server_conn_notify_callback_t
* This callback is invoked by the UCT transport to handle the connection
* notification from the client.
* @note The private data which the server should send to the client can be
* either provided directly to @ref uct_ep_create, or filled by
* @ref uct_cm_ep_priv_data_pack_callback_t provided to
* @ref uct_ep_create.
* @note In order to reject a connection request, can either call
* @ref uct_listener_reject or return failure status as defined by
* @ref ucs_status_t from @ref uct_cm_ep_priv_data_pack_callback_t.
*
* Disconnecting:
* @ref uct_ep_disconnect
* Disconnect the server's endpoint from the client.
* Can be called when initiating a disconnect or when receiving a disconnect
* notification from the remote side.
* @ref uct_ep_disconnect_cb_t
* This callback is invoked by the UCT transport when the client side calls
* uct_ep_disconnect as well.
* @ref uct_ep_destroy
* Destroy the endpoint connected to the remote peer.
* If this function is called before the endpoint was disconnected, the
* @ref uct_ep_disconnect_cb_t will not be invoked.
*
* Destroying the server's resources:
* @ref uct_listener_destroy
* Destroy the listener object.
* @ref uct_cm_close
* Close the connection manager.
*
* The following is a general overview of the operations on the client side:
*
* Connecting:
* @ref uct_cm_open
* Open a connection manager.
* @ref uct_ep_create
* Create an endpoint for establishing a connection to the server.
* @ref uct_cm_ep_resolve_callback_t
* This callback is invoked on the client side of the connection manager,
* after the remote server address was resolved to the local device to be
* used for connection establishment.
* @ref uct_ep_connect
* This function should be called on the client side, in order to send
* private data and resume connection establishment, following an
* address-resolved notification via @ref uct_cm_ep_resolve_callback_t.
* @ref uct_cm_ep_client_connect_callback_t
* This callback is invoked by the UCT transport to handle a connection response
* from the server.
* After invoking this callback, the UCT transport will finalize the client's
* connection to the server.
* @ref uct_cm_client_ep_conn_notify
* After the client's connection establishment is completed, the client
* should call this function in which it sends a notification message to
* the server stating that it (the client) is connected.
* The notification message that is sent depends on the transport's
* implementation.
*
* Disconnecting:
* @ref uct_ep_disconnect
* Disconnect the client's endpoint from the server.
* Can be called when initiating a disconnect or when receiving a disconnect
* notification from the remote side.
* @ref uct_ep_disconnect_cb_t
* This callback is invoked by the UCT transport when the server side calls
* uct_ep_disconnect as well.
* @ref uct_ep_destroy
* Destroy the endpoint connected to the remote peer.
*
* Destroying the client's resources:
* @ref uct_cm_close
* Close the connection manager.
*
* @}
*/
/**
* @ingroup UCT_RESOURCE
* @brief Memory domain resource descriptor.
*
* This structure describes a memory domain resource.
*/
typedef struct uct_md_resource_desc uct_md_resource_desc_t;
/**
* @ingroup UCT_RESOURCE
* @brief UCT component attributes field mask
*
* The enumeration allows specifying which fields in @ref uct_component_attr_t
* are present. It is used for backward compatibility support.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief UCT component attributes
*
* This structure defines the attributes for UCT component. It is used for
* @ref uct_component_query
*/
typedef struct uct_component_attr uct_component_attr_t;
/**
* @ingroup UCT_RESOURCE
* @brief Capability flags of @ref uct_component_h.
*
* The enumeration defines bit mask of @ref uct_component_h capabilities in
* @ref uct_component_attr_t::flags which is set by @ref uct_component_query.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief List of UCX device types.
*/
typedef enum uct_device_type_t;
/**
* @ingroup UCT_RESOURCE
* @brief Communication resource descriptor.
*
* Resource descriptor is an object representing the network resource.
* Resource descriptor could represent a stand-alone communication resource
* such as an HCA port, network interface, or multiple resources such as
* multiple network interfaces or communication ports. It could also represent
* virtual communication resources that are defined over a single physical
* network interface.
*/
typedef struct uct_tl_resource_desc uct_tl_resource_desc_t;
/**
* @brief Atomic operation requested for uct_ep_atomic32_post, uct_ep_atomic64_post,
* uct_ep_atomic32_fetch and uct_ep_atomic64_fetch.
*
* This enumeration defines which atomic memory operation should be
* performed by the uct_ep_atomic family of fuctions.
*/
typedef enum uct_atomic_op uct_atomic_op_t;
/**
* @defgroup UCT_RESOURCE_IFACE_CAP UCT interface operations and capabilities
* @ingroup UCT_RESOURCE
*
* @brief List of capabilities supported by UCX API
*
* The definition list presents a full list of operations and capabilities
* exposed by UCX API.
* @{
*/
/* Active message capabilities */
/* PUT capabilities */
/* GET capabilities */
/* Atomic operations domain */
/* Error handling capabilities */
/* Connection establishment */
/* Special transport flags */
/* Callback invocation */
/* Keepalive */
/* Tag matching operations */
/**
* @}
*/
/**
* @defgroup UCT_RESOURCE_IFACE_EVENT_CAP UCT interface for asynchronous event capabilities
* @ingroup UCT_RESOURCE
*
* @brief List of capabilities supported by UCT iface event API
*
* The definition list presents a full list of operations and capabilities
* supported by UCT iface event.
* @{
*/
/* Event types */
/* Event notification mechanisms */
/**
* @}
*/
/**
* @ingroup UCT_CONTEXT
* @brief Memory allocation methods.
*/
typedef enum uct_alloc_method_t;
/**
* @ingroup UCT_RESOURCE
* @brief Asynchronous event types.
*
* @note The UCT_EVENT_RECV and UCT_EVENT_RECV_SIG event types are used to
* indicate receive-side completions for both tag matching and active
* messages. If the interface supports signaled receives
* (@ref UCT_IFACE_FLAG_EVENT_RECV_SIG), then for the messages sent with
* UCT_SEND_FLAG_SIGNALED flag, UCT_EVENT_RECV_SIG should be triggered
* on the receiver. Otherwise, UCT_EVENT_RECV should be triggered.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief Flush modifiers.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief UCT progress types
*/
;
/**
* @ingroup UCT_AM
* @brief Flags for active message send operation.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief Callback flags.
*
* List of flags for a callback.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief Mode in which to open the interface.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief UCT interface created by @ref uct_iface_open parameters field mask.
*
* The enumeration allows specifying which fields in @ref uct_iface_params_t are
* present, for backward compatibility support.
*/
;
/**
* @ingroup UCT_MD
* @brief Socket address accessibility type.
*/
typedef enum uct_sockaddr_accessibility_t;
/**
* @ingroup UCT_MD
* @brief Memory domain capability flags.
*/
;
/**
* @ingroup UCT_MD
* @brief Memory allocation/registration flags.
*/
;
/**
* @ingroup UCT_MD
* @brief list of UCT memory use advice
*/
typedef enum uct_mem_advice_t;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief UCT connection manager attributes field mask.
*
* The enumeration allows specifying which fields in @ref uct_cm_attr_t are
* present, for backward compatibility support.
*/
;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief UCT listener attributes field mask.
*
* The enumeration allows specifying which fields in @ref uct_listener_attr_t are
* present, for backward compatibility support.
*/
;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief UCT listener created by @ref uct_listener_create parameters field mask.
*
* The enumeration allows specifying which fields in @ref uct_listener_params_t
* are present, for backward compatibility support.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief UCT endpoint created by @ref uct_ep_create parameters field mask.
*
* The enumeration allows specifying which fields in @ref uct_ep_params_t are
* present, for backward compatibility support.
*/
;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief UCT endpoint connected by @ref uct_ep_connect parameters field mask.
*
* The enumeration allows specifying which fields in
* @ref uct_ep_connect_params_t are present, for backward compatibility support.
*/
;
/*
* @ingroup UCT_RESOURCE
* @brief Process Per Node (PPN) bandwidth specification: f(ppn) = dedicated + shared / ppn
*
* This structure specifies a function which is used as basis for bandwidth
* estimation of various UCT operations. This information can be used to select
* the best performing combination of UCT operations.
*/
typedef struct uct_ppn_bandwidth uct_ppn_bandwidth_t;
/**
* @ingroup UCT_RESOURCE
* @brief Interface attributes: capabilities and limitations.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief Parameters used for interface creation.
*
* This structure should be allocated by the user and should be passed to
* @ref uct_iface_open. User has to initialize all fields of this structure.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief Parameters for creating a UCT endpoint by @ref uct_ep_create
*/
;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Parameters for connecting a UCT endpoint by @ref uct_ep_connect.
*/
;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Connection manager attributes, capabilities and limitations.
*/
;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief UCT listener attributes, capabilities and limitations.
*/
;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Parameters for creating a listener object @ref uct_listener_h by
* @ref uct_listener_create
*/
;
/**
* @ingroup UCT_MD
* @brief Memory domain attributes.
*
* This structure defines the attributes of a Memory Domain which includes
* maximum memory that can be allocated, credentials required for accessing the memory,
* CPU mask indicating the proximity of CPUs, and bitmaps indicating the types
* of memory (CPU/CUDA/ROCM) that can be detected, allocated and accessed.
*/
;
/**
* @ingroup UCT_MD
* @brief UCT MD memory attributes field mask
*
* The enumeration allows specifying which fields in @ref uct_md_mem_attr_t
* are present.
*/
typedef enum uct_md_mem_attr_field uct_md_mem_attr_field_t;
/**
* @ingroup UCT_MD
* @brief Memory domain attributes.
*
* This structure defines the attributes of a memory pointer which may
* include the memory type of the pointer, and the system device that backs
* the pointer depending on the bit fields populated in field_mask.
*/
typedef struct uct_md_mem_attr uct_md_mem_attr_t;
/**
* @ingroup UCT_MD
* @brief Query attributes of a given pointer
*
* Return attributes such as memory type, base address, allocation length,
* and system device for the given pointer of specific length.
*
* @param [in] md Memory domain to run the query on. This function
* returns an error if the md does not recognize the
* pointer.
* @param [in] address The address of the pointer. Must be non-NULL
* else UCS_ERR_INVALID_PARAM error is returned.
* @param [in] length Length of the memory region to examine.
* Must be nonzero else UCS_ERR_INVALID_PARAM error
* is returned.
* @param [inout] mem_attr If successful, filled with ptr attributes.
*
* @return UCS_OK if at least one attribute is successfully queried otherwise
* an error code as defined by @ref ucs_status_t is returned.
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
* @brief Describes a memory allocated by UCT.
*
* This structure describes the memory block which includes the address, size, and
* Memory Domain used for allocation. This structure is passed to interface
* and the memory is allocated by memory allocation functions @ref uct_mem_alloc.
*/
typedef struct uct_allocated_memory uct_allocated_memory_t;
/**
* @ingroup UCT_MD
* @brief Remote key with its type
*
* This structure describes the credentials (typically key) and information
* required to access the remote memory by the communication interfaces.
*/
typedef struct uct_rkey_bundle uct_rkey_bundle_t;
/**
* @ingroup UCT_RESOURCE
* @brief Completion handle.
*
* This structure should be allocated by the user and can be passed to communication
* primitives. The user must initialize all fields of the structure.
* If the operation returns UCS_INPROGRESS, this structure will be in use by the
* transport until the operation completes. When the operation completes, "count"
* field is decremented by 1, and whenever it reaches 0 - the callback is called.
*
* Notes:
* - The same structure can be passed multiple times to communication functions
* without the need to wait for completion.
* - If the number of operations is smaller than the initial value of the counter,
* the callback will not be called at all, so it may be left undefined.
* - status field is required to track the first time the error occurred, and
* report it via a callback when count reaches 0.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief Pending request.
*
* This structure should be passed to @ref uct_ep_pending_add() and is used to signal
* new available resources back to user.
*/
;
/**
* @ingroup UCT_TAG
* @brief Posted tag context.
*
* Tag context is an object which tracks a tag posted to the transport. It
* contains callbacks for matching events on this tag.
*/
;
/**
* @ingroup UCT_RESOURCE
* @brief flags of @ref uct_tag_context.
*/
;
extern const char *uct_alloc_method_names;
extern const char *uct_device_type_names;
/**
* @ingroup UCT_RESOURCE
* @brief Query for list of components.
*
* Obtain the list of transport components available on the current system.
*
* @param [out] components_p Filled with a pointer to an array of component
* handles.
* @param [out] num_components_p Filled with the number of elements in the array.
*
* @return UCS_OK if successful, or UCS_ERR_NO_MEMORY if failed to allocate the
* array of component handles.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Release the list of components returned from @ref uct_query_components.
*
* This routine releases the memory associated with the list of components
* allocated by @ref uct_query_components.
*
* @param [in] components Array of component handles to release.
*/
void ;
/**
* @ingroup UCT_RESOURCE
* @brief Get component attributes
*
* Query various attributes of a component.
*
* @param [in] component Component handle to query attributes for. The
* handle can be obtained from @ref uct_query_components.
* @param [inout] component_attr Filled with component attributes.
*
* @return UCS_OK if successful, or nonzero error code in case of failure.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Open a memory domain.
*
* Open a specific memory domain. All communications and memory operations
* are performed in the context of a specific memory domain. Therefore it
* must be created before communication resources.
*
* @param [in] component Component on which to open the memory domain,
* as returned from @ref uct_query_components.
* @param [in] md_name Memory domain name, as returned from @ref
* uct_component_query.
* @param [in] config MD configuration options. Should be obtained
* from uct_md_config_read() function, or point to
* MD-specific structure which extends uct_md_config_t.
* @param [out] md_p Filled with a handle to the memory domain.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Close a memory domain.
*
* @param [in] md Memory domain to close.
*/
void ;
/**
* @ingroup UCT_RESOURCE
* @brief Query for transport resources.
*
* This routine queries the @ref uct_md_h "memory domain" for communication
* resources that are available for it.
*
* @param [in] md Handle to memory domain.
* @param [out] resources_p Filled with a pointer to an array of resource
* descriptors.
* @param [out] num_resources_p Filled with the number of resources in the array.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Release the list of resources returned from @ref uct_md_query_tl_resources.
*
* This routine releases the memory associated with the list of resources
* allocated by @ref uct_md_query_tl_resources.
*
* @param [in] resources Array of resource descriptors to release.
*/
void ;
/**
* @ingroup UCT_CONTEXT
* @brief Create a worker object.
*
* The worker represents a progress engine. Multiple progress engines can be
* created in an application, for example to be used by multiple threads.
* Transports can allocate separate communication resources for every worker,
* so that every worker can be progressed independently of others.
*
* @param [in] async Context for async event handlers. Must not be NULL.
* @param [in] thread_mode Thread access mode to the worker and all interfaces
* and endpoints associated with it.
* @param [out] worker_p Filled with a pointer to the worker object.
*/
ucs_status_t ;
/**
* @ingroup UCT_CONTEXT
* @brief Destroy a worker object.
*
* @param [in] worker Worker object to destroy.
*/
void ;
/**
* @ingroup UCT_CONTEXT
* @brief Add a slow path callback function to a worker progress.
*
* If *id_p is equal to UCS_CALLBACKQ_ID_NULL, this function will add a callback
* which will be invoked every time progress is made on the worker. *id_p will
* be updated with an id which refers to this callback and can be used in
* @ref uct_worker_progress_unregister_safe to remove it from the progress path.
*
* @param [in] worker Handle to the worker whose progress should invoke
* the callback.
* @param [in] func Pointer to the callback function.
* @param [in] arg Argument for the callback function.
* @param [in] flags Callback flags, see @ref ucs_callbackq_flags.
* @param [inout] id_p Points to a location to store a callback identifier.
* If *id_p is equal to UCS_CALLBACKQ_ID_NULL, a
* callback will be added and *id_p will be replaced
* with a callback identifier which can be subsequently
* used to remove the callback. Otherwise, no callback
* will be added and *id_p will be left unchanged.
*
* @note This function is thread safe.
*/
void ;
/**
* @ingroup UCT_CONTEXT
* @brief Remove a slow path callback function from worker's progress.
*
* If *id_p is not equal to UCS_CALLBACKQ_ID_NULL, remove a callback which was
* previously added by @ref uct_worker_progress_register_safe. *id_p will be reset
* to UCS_CALLBACKQ_ID_NULL.
*
* @param [in] worker Handle to the worker whose progress should invoke
* the callback.
* @param [inout] id_p Points to a callback identifier which indicates
* the callback to remove. If *id_p is not equal to
* UCS_CALLBACKQ_ID_NULL, the callback will be removed
* and *id_p will be reset to UCS_CALLBACKQ_ID_NULL.
* If *id_p is equal to UCS_CALLBACKQ_ID_NULL, no
* operation will be performed and *id_p will be
* left unchanged.
*
* @note This function is thread safe.
*/
void ;
/**
* @ingroup UCT_RESOURCE
* @brief Read transport-specific interface configuration.
*
* @param [in] md Memory domain on which the transport's interface
* was registered.
* @param [in] tl_name Transport name. If @e md supports
* @ref UCT_MD_FLAG_SOCKADDR, the transport name
* is allowed to be NULL. In this case, the configuration
* returned from this routine should be passed to
* @ref uct_iface_open with
* @ref UCT_IFACE_OPEN_MODE_SOCKADDR_SERVER or
* @ref UCT_IFACE_OPEN_MODE_SOCKADDR_CLIENT set in
* @ref uct_iface_params_t.open_mode.
* In addition, if tl_name is not NULL, the configuration
* returned from this routine should be passed to
* @ref uct_iface_open with @ref UCT_IFACE_OPEN_MODE_DEVICE
* set in @ref uct_iface_params_t.open_mode.
* @param [in] env_prefix If non-NULL, search for environment variables
* starting with this UCT_<prefix>_. Otherwise, search
* for environment variables starting with just UCT_.
* @param [in] filename If non-NULL, read configuration from this file. If
* the file does not exist, it will be ignored.
* @param [out] config_p Filled with a pointer to configuration.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Release configuration memory returned from uct_md_iface_config_read(),
* uct_md_config_read(), or from uct_cm_config_read().
*
* @param [in] config Configuration to release.
*/
void ;
/**
* @ingroup UCT_CONTEXT
* @brief Get value by name from interface configuration (@ref uct_iface_config_t),
* memory domain configuration (@ref uct_md_config_t)
* or connection manager configuration (@ref uct_cm_config_t).
*
* @param [in] config Configuration to get from.
* @param [in] name Configuration variable name.
* @param [out] value Pointer to get value. Should be allocated/freed by
* caller.
* @param [in] max Available memory space at @a value pointer.
*
* @return UCS_OK if found, otherwise UCS_ERR_INVALID_PARAM or UCS_ERR_NO_ELEM
* if error.
*/
ucs_status_t ;
/**
* @ingroup UCT_CONTEXT
* @brief Modify interface configuration (@ref uct_iface_config_t),
* memory domain configuration (@ref uct_md_config_t)
* or connection manager configuration (@ref uct_cm_config_t).
*
* @param [in] config Configuration to modify.
* @param [in] name Configuration variable name.
* @param [in] value Value to set.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Open a communication interface.
*
* @param [in] md Memory domain to create the interface on.
* @param [in] worker Handle to worker which will be used to progress
* communications on this interface.
* @param [in] params User defined @ref uct_iface_params_t parameters.
* @param [in] config Interface configuration options. Should be obtained
* from uct_md_iface_config_read() function, or point to
* transport-specific structure which extends uct_iface_config_t.
* @param [out] iface_p Filled with a handle to opened communication interface.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Close and destroy an interface.
*
* @param [in] iface Interface to close.
*/
void ;
/**
* @ingroup UCT_RESOURCE
* @brief Get interface attributes.
*
* @param [in] iface Interface to query.
* @param [out] iface_attr Filled with interface attributes.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Get address of the device the interface is using.
*
* Get underlying device address of the interface. All interfaces using the same
* device would return the same address.
*
* @param [in] iface Interface to query.
* @param [out] addr Filled with device address. The size of the buffer
* provided must be at least @ref uct_iface_attr_t::device_addr_len.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Get interface address.
*
* requires @ref UCT_IFACE_FLAG_CONNECT_TO_IFACE.
*
* @param [in] iface Interface to query.
* @param [out] addr Filled with interface address. The size of the buffer
* provided must be at least @ref uct_iface_attr_t::iface_addr_len.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Check if remote iface address is reachable.
*
* This function checks if a remote address can be reached from a local interface.
* If the function returns true, it does not necessarily mean a connection and/or
* data transfer would succeed, since the reachability check is a local operation
* it does not detect issues such as network mis-configuration or lack of connectivity.
*
* @param [in] iface Interface to check reachability from.
* @param [in] dev_addr Device address to check reachability to. It is NULL
* if iface_attr.dev_addr_len == 0, and must be non-NULL otherwise.
* @param [in] iface_addr Interface address to check reachability to. It is
* NULL if iface_attr.iface_addr_len == 0, and must
* be non-NULL otherwise.
*
* @return Nonzero if reachable, 0 if not.
*/
int ;
/**
* @ingroup UCT_RESOURCE
* @brief check if the destination endpoint is alive in respect to UCT library
*
* This function checks if the destination endpoint is alive with respect to the
* UCT library. If the status of @a ep is known, either @ref UCS_OK or an error
* is returned immediately. Otherwise, @ref UCS_INPROGRESS is returned,
* indicating that synchronization on the status is needed. In this case, the
* status will be be propagated by @a comp callback.
*
* @param [in] ep Endpoint to check
* @param [in] flags Flags that define level of check
* (currently unsupported - set to 0).
* @param [in] comp Handler to process status of @a ep
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Obtain a notification file descriptor for polling.
*
* Only interfaces that support at least one of the UCT_IFACE_FLAG_EVENT* flags
* will implement this function.
*
* @param [in] iface Interface to get the notification descriptor.
* @param [out] fd_p Location to write the notification file descriptor.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Turn on event notification for the next event.
*
* This routine needs to be called before waiting on each notification on this
* interface, so will typically be called once the processing of the previous
* event is over.
*
* @param [in] iface Interface to arm.
* @param [in] events Events to wakeup on. See @ref uct_iface_event_types
*
* @return ::UCS_OK The operation completed successfully. File descriptor
* will be signaled by new events.
* @return ::UCS_ERR_BUSY There are unprocessed events which prevent the
* file descriptor from being armed.
* The operation is not completed. File descriptor
* will not be signaled by new events.
* @return @ref ucs_status_t "Other" different error codes in case of issues.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Allocate memory which can be used for zero-copy communications.
*
* Allocate a region of memory which can be used for zero-copy data transfer or
* remote access on a particular transport interface.
*
* @param [in] iface Interface to allocate memory on.
* @param [in] length Size of memory region to allocate.
* @param [in] flags Memory allocation flags, see @ref uct_md_mem_flags.
* @param [in] name Allocation name, for debug purposes.
* @param [out] mem Descriptor of allocated memory.
*
* @return UCS_OK if allocation was successful, error code otherwise.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Release memory allocated with @ref uct_iface_mem_alloc().
*
* @param [in] mem Descriptor of memory to release.
*/
void ;
/**
* @ingroup UCT_AM
* @brief Set active message handler for the interface.
*
* Only one handler can be set of each active message ID, and setting a handler
* replaces the previous value. If cb == NULL, the current handler is removed.
*
*
* @param [in] iface Interface to set the active message handler for.
* @param [in] id Active message id. Must be 0..UCT_AM_ID_MAX-1.
* @param [in] cb Active message callback. NULL to clear.
* @param [in] arg Active message argument.
* @param [in] flags Required @ref uct_cb_flags "callback flags"
*
* @return error code if the interface does not support active messages or
* requested callback flags
*/
ucs_status_t ;
/**
* @ingroup UCT_AM
* @brief Set active message tracer for the interface.
*
* Sets a function which dumps active message debug information to a buffer,
* which is printed every time an active message is sent or received, when
* data tracing is on. Without the tracer, only transport-level information is
* printed.
*
* @param [in] iface Interface to set the active message tracer for.
* @param [in] tracer Active message tracer. NULL to clear.
* @param [in] arg Tracer custom argument.
*/
ucs_status_t ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Accept connection request.
*
* @param [in] iface Transport interface which generated connection
* request @a conn_request.
* @param [in] conn_request Connection establishment request passed as parameter
* of @ref uct_sockaddr_conn_request_callback_t.
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Reject connection request. Will invoke an error handler @ref
* uct_error_handler_t on the remote transport interface, if set.
*
* @param [in] iface Interface which generated connection establishment
* request @a conn_request.
* @param [in] conn_request Connection establishment request passed as parameter
* of @ref uct_sockaddr_conn_request_callback_t.
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Create new endpoint.
*
* Create a UCT endpoint in one of the available modes:
* -# Unconnected endpoint: If no any address is present in @ref uct_ep_params,
* this creates an unconnected endpoint. To establish a connection to a
* remote endpoint, @ref uct_ep_connect_to_ep will need to be called. Use of
* this mode requires @ref uct_ep_params_t::iface has the
* @ref UCT_IFACE_FLAG_CONNECT_TO_EP capability flag. It may be obtained by
* @ref uct_iface_query .
* -# Connect to a remote interface: If @ref uct_ep_params_t::dev_addr and
* @ref uct_ep_params_t::iface_addr are set, this will establish an endpoint
* that is connected to a remote interface. This requires that
* @ref uct_ep_params_t::iface has the @ref UCT_IFACE_FLAG_CONNECT_TO_IFACE
* capability flag. It may be obtained by @ref uct_iface_query.
* -# Connect to a remote socket address: If @ref uct_ep_params_t::sockaddr is
* set, this will create an endpoint that is connected to a remote socket.
* This requires that either @ref uct_ep_params::cm, or
* @ref uct_ep_params::iface will be set. In the latter case, the interface
* has to support @ref UCT_IFACE_FLAG_CONNECT_TO_SOCKADDR flag, which can be
* checked by calling @ref uct_iface_query.
* @param [in] params User defined @ref uct_ep_params_t configuration for the
* @a ep_p.
* @param [out] ep_p Filled with handle to the new endpoint.
*
* @return UCS_OK The endpoint is created successfully. This does not
* guarantee that the endpoint has been connected to
* the destination defined in @a params; in case of failure,
* the error will be reported to the interface error
* handler callback provided to @ref uct_iface_open
* via @ref uct_iface_params_t.err_handler.
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Connect a client side endpoint after it is bound to a local network
* device, i.e. @ref uct_ep_params_t::cm_resolve_cb was invoked.
*
* This non-blocking routine establishes connection of the client side endpoint
* and sends private data to the peer.
*
* @param [in] ep Endpoint to connect.
* @param [in] params Parameters as defined in @ref uct_ep_connect_params_t.
*
* @return UCS_OK Operation has been initiated successfully.
* Other error codes as defined by @ref ucs_status_t.
*/
ucs_status_t ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Initiate a disconnection of an endpoint connected to a
* sockaddr by a connection manager @ref uct_cm_h.
*
* This non-blocking routine will send a disconnect notification on the endpoint,
* so that @ref uct_ep_disconnect_cb_t will be called on the remote peer.
* The remote side should also call this routine when handling the initiator's
* disconnect.
* After a call to this function, the given endpoint may not be used for
* communications anymore.
* The @ref uct_ep_flush / @ref uct_iface_flush routines will guarantee that the
* disconnect notification is delivered to the remote peer.
* @ref uct_ep_destroy should be called on this endpoint after invoking this
* routine and @ref uct_ep_params::disconnect_cb was called.
*
* @param [in] ep Endpoint to disconnect.
* @param [in] flags Reserved for future use.
*
* @return UCS_OK Operation has completed successfully.
* UCS_ERR_BUSY The @a ep is not connected yet (either
* @ref uct_cm_ep_client_connect_callback_t or
* @ref uct_cm_ep_server_conn_notify_callback_t
* was not invoked).
* UCS_INPROGRESS The disconnect request has been initiated, but
* the remote peer has not yet responded to this
* request, and consequently the registered
* callback @ref uct_ep_disconnect_cb_t has not
* been invoked to handle the request.
* UCS_ERR_NOT_CONNECTED The @a ep is disconnected locally and remotely.
* Other error codes as defined by @ref ucs_status_t .
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Destroy an endpoint.
*
* @param [in] ep Endpoint to destroy.
*/
void ;
/**
* @ingroup UCT_RESOURCE
* @brief Get endpoint address.
*
* @param [in] ep Endpoint to query.
* @param [out] addr Filled with endpoint address. The size of the buffer
* provided must be at least @ref uct_iface_attr_t::ep_addr_len.
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Connect endpoint to a remote endpoint.
*
* requires @ref UCT_IFACE_FLAG_CONNECT_TO_EP capability.
*
* @param [in] ep Endpoint to connect.
* @param [in] dev_addr Remote device address.
* @param [in] ep_addr Remote endpoint address.
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
* @brief Query for memory domain attributes.
*
* @param [in] md Memory domain to query.
* @param [out] md_attr Filled with memory domain attributes.
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
* @brief UCT allocation parameters specification field mask
*
* The enumeration allows specifying which fields in @ref uct_mem_alloc_params_t
* are present.
*/
typedef enum uct_mem_alloc_params_field_t;
/**
* @ingroup UCT_MD
* @brief Parameters for allocating memory using @ref uct_mem_alloc
*/
typedef struct uct_mem_alloc_params_t;
/**
* @ingroup UCT_MD
* @brief Give advice about the use of memory
*
* This routine advises the UCT about how to handle memory range beginning at
* address and size of length bytes. This call does not influence the semantics
* of the application, but may influence its performance. The advice may be
* ignored.
*
* @param [in] md Memory domain memory was allocated or registered on.
* @param [in] memh Memory handle, as returned from @ref uct_mem_alloc
* @param [in] addr Memory base address. Memory range must belong to the
* @a memh
* @param [in] length Length of memory to advise. Must be >0.
* @param [in] advice Memory use advice as defined in the
* @ref uct_mem_advice_t list
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
* @brief Register memory for zero-copy sends and remote access.
*
* Register memory on the memory domain. In order to use this function, MD
* must support @ref UCT_MD_FLAG_REG flag.
*
* @param [in] md Memory domain to register memory on.
* @param [out] address Memory to register.
* @param [in] length Size of memory to register. Must be >0.
* @param [in] flags Memory allocation flags, see @ref uct_md_mem_flags.
* @param [out] memh_p Filled with handle for allocated region.
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
* @brief Undo the operation of @ref uct_md_mem_reg().
*
* @param [in] md Memory domain which was used to register the memory.
* @param [in] memh Local access key to memory region.
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
* @brief Detect memory type
*
* @param [in] md Memory domain to detect memory type
* @param [in] addr Memory address to detect.
* @param [in] length Size of memory
* @param [out] mem_type_p Filled with memory type of the address range if
function succeeds
* @return UCS_OK If memory type is successfully detected
* UCS_ERR_INVALID_ADDR If failed to detect memory type
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
* @brief Allocate memory for zero-copy communications and remote access.
*
* Allocate potentially registered memory.
*
* @param [in] length The minimal size to allocate. The actual size may
* be larger, for example because of alignment
* restrictions. Must be >0.
* @param [in] methods Array of memory allocation methods to attempt.
* Each of the provided allocation methods will be
* tried in array order, to perform the allocation,
* until one succeeds. Whenever the MD method is
* encountered, each of the provided MDs will be
* tried in array order, to allocate the memory,
* until one succeeds, or they are exhausted. In
* this case the next allocation method from the
* initial list will be attempted.
* @param [in] num_methods Length of 'methods' array.
* @param [in] params Memory allocation characteristics, see
* @ref uct_mem_alloc_params_t.
* @param [out] mem In case of success, filled with information about
* the allocated memory. @ref uct_allocated_memory_t
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
* @brief Release allocated memory.
*
* Release the memory allocated by @ref uct_mem_alloc.
*
* @param [in] mem Description of allocated memory, as returned from
* @ref uct_mem_alloc.
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
* @brief Read the configuration for a memory domain.
*
* @param [in] component Read the configuration of this component.
* @param [in] env_prefix If non-NULL, search for environment variables
* starting with this UCT_<prefix>_. Otherwise, search
* for environment variables starting with just UCT_.
* @param [in] filename If non-NULL, read configuration from this file. If
* the file does not exist, it will be ignored.
* @param [out] config_p Filled with a pointer to the configuration.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
* @brief Check if remote sock address is accessible from the memory domain.
*
* This function checks if a remote sock address can be accessed from a local
* memory domain. Accessibility can be checked in local or remote mode.
*
* @param [in] md Memory domain to check accessibility from.
* This memory domain must support the @ref
* UCT_MD_FLAG_SOCKADDR flag.
* @param [in] sockaddr Socket address to check accessibility to.
* @param [in] mode Mode for checking accessibility, as defined in @ref
* uct_sockaddr_accessibility_t.
* Indicates if accessibility is tested on the server side -
* for binding to the given sockaddr, or on the
* client side - for connecting to the given remote
* peer's sockaddr.
*
* @return Nonzero if accessible, 0 if inaccessible.
*/
int ;
/**
* @ingroup UCT_MD
*
* @brief Pack a remote key.
*
* @param [in] md Handle to memory domain.
* @param [in] memh Local key, whose remote key should be packed.
* @param [out] rkey_buffer Filled with packed remote key.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
*
* @brief Unpack a remote key.
*
* @param [in] component Component on which to unpack the remote key.
* @param [in] rkey_buffer Packed remote key buffer.
* @param [out] rkey_ob Filled with the unpacked remote key and its type.
*
* @note The remote key must be unpacked with the same component that was used
* to pack it. For example, if a remote device address on the remote
* memory domain which was used to pack the key is reachable by a
* transport on a local component, then that component is eligible to
* unpack the key.
* If the remote key buffer cannot be unpacked with the given component,
* UCS_ERR_INVALID_PARAM will be returned.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
*
* @brief Get a local pointer to remote memory.
*
* This routine returns a local pointer to the remote memory
* described by the rkey bundle. The MD must support
* @ref UCT_MD_FLAG_RKEY_PTR flag.
*
* @param [in] component Component on which to obtain the pointer to the
* remote key.
* @param [in] rkey_ob A remote key bundle as returned by
* the @ref uct_rkey_unpack function.
* @param [in] remote_addr A remote address within the memory area described
* by the rkey_ob.
* @param [out] addr_p A pointer that can be used for direct access to
* the remote memory.
*
* @note The component used to obtain a local pointer to the remote memory must
* be the same component that was used to pack the remote key. See notes
* section for @ref uct_rkey_unpack.
*
* @return Error code if the remote memory cannot be accessed directly or
* the remote address is not valid.
*/
ucs_status_t ;
/**
* @ingroup UCT_MD
*
* @brief Release a remote key.
*
* @param [in] component Component which was used to unpack the remote key.
* @param [in] rkey_ob Remote key to release.
*/
ucs_status_t ;
/**
* @ingroup UCT_CONTEXT
* @brief Explicit progress for UCT worker.
*
* This routine explicitly progresses any outstanding communication operations
* and active message requests.
*
* @note @li In the current implementation, users @b MUST call this routine
* to receive the active message requests.
*
* @param [in] worker Handle to worker.
*
* @return Nonzero if any communication was progressed, zero otherwise.
*/
UCT_INLINE_API unsigned
/**
* @ingroup UCT_RESOURCE
* @brief Flush outstanding communication operations on an interface.
*
* Flushes all outstanding communications issued on the interface prior to
* this call. The operations are completed at the origin or at the target
* as well. The exact completion semantic depends on @a flags parameter.
*
* @note Currently only one completion type is supported. It guarantees that
* the data transfer is completed but the target buffer may not be updated yet.
*
* @param [in] iface Interface to flush communications from.
* @param [in] flags Flags that control completion semantic (currently only
* @ref UCT_FLUSH_FLAG_LOCAL is supported).
* @param [inout] comp Completion handle as defined by @ref uct_completion_t.
* Can be NULL, which means that the call will return the
* current state of the interface and no completion will
* be generated in case of outstanding communications.
* If it is not NULL completion counter is decremented
* by 1 when the call completes. Completion callback is
* called when the counter reaches 0.
*
*
* @return UCS_OK - No outstanding communications left.
* UCS_INPROGRESS - Some communication operations are still in progress.
* If non-NULL 'comp' is provided, it will be updated
* upon completion of these operations.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_RESOURCE
* @brief Ensures ordering of outstanding communications on the interface.
* Operations issued on the interface prior to this call are guaranteed to
* be completed before any subsequent communication operations to the same
* interface which follow the call to fence.
*
* @param [in] iface Interface to issue communications from.
* @param [in] flags Flags that control ordering semantic (currently
* unsupported - set to 0).
* @return UCS_OK - Ordering is inserted.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_AM
* @brief Release AM descriptor
*
* Release active message descriptor @a desc, which was passed to
* @ref uct_am_callback_t "the active message callback", and owned by the callee.
*
* @param [in] desc Descriptor to release.
*/
UCT_INLINE_API void
/**
* @ingroup UCT_RMA
* @brief
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_RMA
* @brief
*/
UCT_INLINE_API ssize_t
/**
* @ingroup UCT_RMA
* @brief Write data to remote memory while avoiding local memory copy
*
* The input data in @a iov array of @ref ::uct_iov_t structures sent to remote
* address ("gather output"). Buffers in @a iov are processed in array order.
* This means that the function complete iov[0] before proceeding to
* iov[1], and so on.
*
*
* @param [in] ep Destination endpoint handle.
* @param [in] iov Points to an array of @ref ::uct_iov_t structures.
* The @a iov pointer must be a valid address of an array
* of @ref ::uct_iov_t structures. A particular structure
* pointer must be a valid address. A NULL terminated
* array is not required.
* @param [in] iovcnt Size of the @a iov data @ref ::uct_iov_t structures
* array. If @a iovcnt is zero, the data is considered empty.
* @a iovcnt is limited by @ref uct_iface_attr_cap_put_max_iov
* "uct_iface_attr::cap::put::max_iov".
* @param [in] remote_addr Remote address to place the @a iov data.
* @param [in] rkey Remote key descriptor provided by @ref ::uct_rkey_unpack
* @param [in] comp Completion handle as defined by @ref ::uct_completion_t.
*
* @return UCS_INPROGRESS Some communication operations are still in progress.
* If non-NULL @a comp is provided, it will be updated
* upon completion of these operations.
*
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_RMA
* @brief
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_RMA
* @brief
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_RMA
* @brief Read data from remote memory while avoiding local memory copy
*
* The output data in @a iov array of @ref ::uct_iov_t structures received from
* remote address ("scatter input"). Buffers in @a iov are processed in array order.
* This means that the function complete iov[0] before proceeding to
* iov[1], and so on.
*
*
* @param [in] ep Destination endpoint handle.
* @param [in] iov Points to an array of @ref ::uct_iov_t structures.
* The @a iov pointer must be a valid address of an array
* of @ref ::uct_iov_t structures. A particular structure
* pointer must be a valid address. A NULL terminated
* array is not required.
* @param [in] iovcnt Size of the @a iov data @ref ::uct_iov_t structures
* array. If @a iovcnt is zero, the data is considered empty.
* @a iovcnt is limited by @ref uct_iface_attr_cap_get_max_iov
* "uct_iface_attr::cap::get::max_iov".
* @param [in] remote_addr Remote address of the data placed to the @a iov.
* @param [in] rkey Remote key descriptor provided by @ref ::uct_rkey_unpack
* @param [in] comp Completion handle as defined by @ref ::uct_completion_t.
*
* @return UCS_INPROGRESS Some communication operations are still in progress.
* If non-NULL @a comp is provided, it will be updated
* upon completion of these operations.
*
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_AM
* @brief
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_AM
* @brief Short io-vector send operation.
*
* This routine sends a message using @ref uct_short_protocol_desc "short" protocol.
* The input data in @a iov array of @ref ::uct_iov_t structures is sent to remote
* side to contiguous buffer keeping the order of the data in the array.
*
* @param [in] ep Destination endpoint handle.
* @param [in] id Active message id. Must be in range 0..UCT_AM_ID_MAX-1.
* @param [in] iov Points to an array of @ref ::uct_iov_t structures.
* The @a iov pointer must be a valid address of an array
* of @ref ::uct_iov_t structures. A particular structure
* pointer must be a valid address. A NULL terminated
* array is not required. @a stride and @a count fields in
* @ref ::uct_iov_t structure are ignored in current
* implementation. The total size of the data buffers in
* the array is limited by
* @ref uct_iface_attr_cap_am_max_short
* "uct_iface_attr::cap::am::max_short".
* @param [in] iovcnt Size of the @a iov data @ref ::uct_iov_t structures
* array. If @a iovcnt is zero, the data is considered empty.
* @a iovcnt is limited by @ref uct_iface_attr_cap_am_max_iov
* "uct_iface_attr::cap::am::max_iov".
*
* @return UCS_OK Operation completed successfully.
* @return UCS_ERR_NO_RESOURCE Could not start the operation due to lack of
* send resources.
* @return otherwise Error code.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_AM
* @brief
*/
UCT_INLINE_API ssize_t
/**
* @ingroup UCT_AM
* @brief Send active message while avoiding local memory copy
*
* The input data in @a iov array of @ref ::uct_iov_t structures sent to remote
* side ("gather output"). Buffers in @a iov are processed in array order.
* This means that the function complete iov[0] before proceeding to
* iov[1], and so on.
*
*
* @param [in] ep Destination endpoint handle.
* @param [in] id Active message id. Must be in range 0..UCT_AM_ID_MAX-1.
* @param [in] header Active message header.
* @param [in] header_length Active message header length in bytes.
* @param [in] iov Points to an array of @ref ::uct_iov_t structures.
* The @a iov pointer must be a valid address of an array
* of @ref ::uct_iov_t structures. A particular structure
* pointer must be a valid address. A NULL terminated
* array is not required.
* @param [in] iovcnt Size of the @a iov data @ref ::uct_iov_t structures
* array. If @a iovcnt is zero, the data is considered empty.
* @a iovcnt is limited by @ref uct_iface_attr_cap_am_max_iov
* "uct_iface_attr::cap::am::max_iov".
* @param [in] flags Active message flags, see @ref uct_msg_flags.
* @param [in] comp Completion handle as defined by @ref ::uct_completion_t.
*
* @return UCS_OK Operation completed successfully.
* @return UCS_INPROGRESS Some communication operations are still in progress.
* If non-NULL @a comp is provided, it will be updated
* upon completion of these operations.
* @return UCS_ERR_NO_RESOURCE Could not start the operation due to lack of send
* resources.
*
* @note If the operation returns @a UCS_INPROGRESS, the memory buffers
* pointed to by @a iov array must not be modified until the operation
* is completed by @a comp. @a header can be released or changed.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_AMO
* @brief
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_AMO
* @brief
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_AMO
* @brief
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_AMO
* @brief
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_AMO
* @brief
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_AMO
* @brief
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_RESOURCE
* @brief Add a pending request to an endpoint.
*
* Add a pending request to the endpoint pending queue. The request will be
* dispatched when the endpoint could potentially have additional send resources.
*
* @param [in] ep Endpoint to add the pending request to.
* @param [in] req Pending request, which would be dispatched when more
* resources become available. The user is expected to initialize
* the "func" field.
* After being passed to the function, the request is owned by UCT,
* until the callback is called and returns UCS_OK.
* @param [in] flags Flags that control pending request processing (see @ref uct_cb_flags)
*
* @return UCS_OK - request added to pending queue
* UCS_ERR_BUSY - request was not added to pending queue, because send
* resources are available now. The user is advised to
* retry.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_RESOURCE
* @brief Remove all pending requests from an endpoint.
*
* Remove pending requests from the given endpoint and pass them to the provided
* callback function. The callback return value is ignored.
*
* @param [in] ep Endpoint to remove pending requests from.
* @param [in] cb Callback to pass the removed requests to.
* @param [in] arg Argument to pass to the @a cb callback.
*/
UCT_INLINE_API void
/**
* @ingroup UCT_RESOURCE
* @brief Flush outstanding communication operations on an endpoint.
*
* Flushes all outstanding communications issued on the endpoint prior to
* this call. The operations are completed at the origin or at the target
* as well. The exact completion semantic depends on @a flags parameter.
*
* @param [in] ep Endpoint to flush communications from.
* @param [in] flags Flags @ref uct_flush_flags that control completion
* semantic.
* @param [inout] comp Completion handle as defined by @ref uct_completion_t.
* Can be NULL, which means that the call will return the
* current state of the endpoint and no completion will
* be generated in case of outstanding communications.
* If it is not NULL completion counter is decremented
* by 1 when the call completes. Completion callback is
* called when the counter reaches 0.
*
* @return UCS_OK - No outstanding communications left.
* UCS_ERR_NO_RESOURCE - Flush operation could not be initiated. A subsequent
* call to @ref uct_ep_pending_add would add a pending
* operation, which provides an opportunity to retry
* the flush.
* UCS_INPROGRESS - Some communication operations are still in progress.
* If non-NULL 'comp' is provided, it will be updated
* upon completion of these operations.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_RESOURCE
* @brief Ensures ordering of outstanding communications on the endpoint.
* Operations issued on the endpoint prior to this call are guaranteed to
* be completed before any subsequent communication operations to the same
* endpoint which follow the call to fence.
*
* @param [in] ep Endpoint to issue communications from.
* @param [in] flags Flags that control ordering semantic (currently
* unsupported - set to 0).
* @return UCS_OK - Ordering is inserted.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_TAG
* @brief Short eager tagged-send operation.
*
* This routine sends a message using @ref uct_short_protocol_desc "short"
* eager protocol. Eager protocol means that the whole data is sent to the peer
* immediately without any preceding notification.
* The data is provided as buffer and its length,and must not be larger than the
* corresponding @a max_short value in @ref uct_iface_attr.
* The immediate value delivered to the receiver is implicitly equal to 0.
* If it's required to pass nonzero imm value, @ref uct_ep_tag_eager_bcopy
* should be used.
*
* @param [in] ep Destination endpoint handle.
* @param [in] tag Tag to use for the eager message.
* @param [in] data Data to send.
* @param [in] length Data length.
*
* @return UCS_OK - operation completed successfully.
* @return UCS_ERR_NO_RESOURCE - could not start the operation due to lack of
* send resources.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_TAG
* @brief Bcopy eager tagged-send operation.
*
* This routine sends a message using @ref uct_bcopy_protocol_desc "bcopy"
* eager protocol. Eager protocol means that the whole data is sent to the peer
* immediately without any preceding notification.
* Custom data callback is used to copy the data to the network buffers.
*
* @note The resulted data length must not be larger than the corresponding
* @a max_bcopy value in @ref uct_iface_attr.
*
* @param [in] ep Destination endpoint handle.
* @param [in] tag Tag to use for the eager message.
* @param [in] imm Immediate value which will be available to the
* receiver.
* @param [in] pack_cb User callback to pack the data.
* @param [in] arg Custom argument to @a pack_cb.
* @param [in] flags Tag message flags, see @ref uct_msg_flags.
*
* @return >=0 - The size of the data packed by @a pack_cb.
* @return otherwise - Error code.
*/
UCT_INLINE_API ssize_t
/**
* @ingroup UCT_TAG
* @brief Zcopy eager tagged-send operation.
*
* This routine sends a message using @ref uct_zcopy_protocol_desc "zcopy"
* eager protocol. Eager protocol means that the whole data is sent to the peer
* immediately without any preceding notification.
* The input data (which has to be previously registered) in @a iov array of
* @ref uct_iov_t structures sent to remote side ("gather output"). Buffers in
* @a iov are processed in array order, so the function complete @a iov[0]
* before proceeding to @a iov[1], and so on.
*
* @note The resulted data length must not be larger than the corresponding
* @a max_zcopy value in @ref uct_iface_attr.
*
* @param [in] ep Destination endpoint handle.
* @param [in] tag Tag to use for the eager message.
* @param [in] imm Immediate value which will be available to the
* receiver.
* @param [in] iov Points to an array of @ref uct_iov_t structures.
* A particular structure pointer must be a valid address.
* A NULL terminated array is not required.
* @param [in] iovcnt Size of the @a iov array. If @a iovcnt is zero, the
* data is considered empty. Note that @a iovcnt is
* limited by the corresponding @a max_iov value in
* @ref uct_iface_attr.
* @param [in] flags Tag message flags, see @ref uct_msg_flags.
* @param [in] comp Completion callback which will be called when the data
* is reliably received by the peer, and the buffer
* can be reused or invalidated.
*
* @return UCS_OK - operation completed successfully.
* @return UCS_ERR_NO_RESOURCE - could not start the operation due to lack of
* send resources.
* @return UCS_INPROGRESS - operation started, and @a comp will be used to
* notify when it's completed.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_TAG
* @brief Rendezvous tagged-send operation.
*
* This routine sends a message using rendezvous protocol. Rendezvous protocol
* means that only a small notification is sent at first, and the data itself
* is transferred later (when there is a match) to avoid extra memory copy.
*
* @note The header will be available to the receiver in case of unexpected
* rendezvous operation only, i.e. the peer has not posted tag for this
* message yet (by means of @ref uct_iface_tag_recv_zcopy), when it is
* arrived.
*
* @param [in] ep Destination endpoint handle.
* @param [in] tag Tag to use for the eager message.
* @param [in] header User defined header.
* @param [in] header_length User defined header length in bytes. Note that
* it is limited by the corresponding @a max_hdr
* value in @ref uct_iface_attr.
* @param [in] iov Points to an array of @ref uct_iov_t structures.
* A particular structure pointer must be valid
* address. A NULL terminated array is not required.
* @param [in] iovcnt Size of the @a iov array. If @a iovcnt is zero,
* the data is considered empty. Note that @a iovcnt
* is limited by the corresponding @a max_iov value
* in @ref uct_iface_attr.
* @param [in] flags Tag message flags, see @ref uct_msg_flags.
* @param [in] comp Completion callback which will be called when the
* data is reliably received by the peer, and the
* buffer can be reused or invalidated.
*
* @return >=0 - The operation is in progress and the return value is a
* handle which can be used to cancel the outstanding
* rendezvous operation.
* @return otherwise - Error code.
*/
UCT_INLINE_API ucs_status_ptr_t
/**
* @ingroup UCT_TAG
* @brief Cancel outstanding rendezvous operation.
*
* This routine signals the underlying transport disregard the outstanding
* operation without calling completion callback provided in
* @ref uct_ep_tag_rndv_zcopy.
*
* @note The operation handle should be valid at the time the routine is
* invoked. I.e. it should be a handle of the real operation which is not
* completed yet.
*
* @param [in] ep Destination endpoint handle.
* @param [in] op Rendezvous operation handle, as returned from
* @ref uct_ep_tag_rndv_zcopy.
*
* @return UCS_OK - The operation has been canceled.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_TAG
* @brief Send software rendezvous request.
*
* This routine sends a rendezvous request only, which indicates that the data
* transfer should be completed in software.
*
* @param [in] ep Destination endpoint handle.
* @param [in] tag Tag to use for matching.
* @param [in] header User defined header
* @param [in] header_length User defined header length in bytes. Note that it
* is limited by the corresponding @a max_hdr value
* in @ref uct_iface_attr.
* @param [in] flags Tag message flags, see @ref uct_msg_flags.
*
* @return UCS_OK - operation completed successfully.
* @return UCS_ERR_NO_RESOURCE - could not start the operation due to lack of
* send resources.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_TAG
* @brief Post a tag to a transport interface.
*
* This routine posts a tag to be matched on a transport interface. When a
* message with the corresponding tag arrives it is stored in the user buffer
* (described by @a iov and @a iovcnt) directly. The operation completion is
* reported using callbacks on the @a ctx structure.
*
* @param [in] iface Interface to post the tag on.
* @param [in] tag Tag to expect.
* @param [in] tag_mask Mask which specifies what bits of the tag to
* compare.
* @param [in] iov Points to an array of @ref ::uct_iov_t structures.
* The @a iov pointer must be a valid address of an array
* of @ref ::uct_iov_t structures. A particular structure
* pointer must be a valid address. A NULL terminated
* array is not required.
* @param [in] iovcnt Size of the @a iov data @ref ::uct_iov_t structures
* array. If @a iovcnt is zero, the data is considered empty.
* @a iovcnt is limited by @ref uct_iface_attr_cap_tag_recv_iov
* "uct_iface_attr::cap::tag::max_iov".
* @param [inout] ctx Context associated with this particular tag, "priv" field
* in this structure is used to track the state internally.
*
* @return UCS_OK - The tag is posted to the transport.
* @return UCS_ERR_NO_RESOURCE - Could not start the operation due to lack of
* resources.
* @return UCS_ERR_EXCEEDS_LIMIT - No more room for tags in the transport.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_TAG
* @brief Cancel a posted tag.
*
* This routine cancels a tag, which was previously posted by
* @ref uct_iface_tag_recv_zcopy. The tag would be either matched or canceled,
* in a bounded time, regardless of the peer actions. The original completion
* callback of the tag would be called with the status if @a force is not set.
*
* @param [in] iface Interface to cancel the tag on.
* @param [in] ctx Tag context which was used for posting the tag. If
* force is 0, @a ctx->completed_cb will be called with
* either UCS_OK which means the tag was matched and data
* received despite the cancel request, or
* UCS_ERR_CANCELED which means the tag was successfully
* canceled before it was matched.
* @param [in] force Whether to report completions to @a ctx->completed_cb.
* If nonzero, the cancel is assumed to be successful,
* and the callback is not called.
*
* @return UCS_OK - The tag is canceled in the transport.
*/
UCT_INLINE_API ucs_status_t
/**
* @ingroup UCT_RESOURCE
* @brief Enable synchronous progress for the interface
*
* Notify the transport that it should actively progress communications during
* @ref uct_worker_progress().
*
* When the interface is created, its progress is initially disabled.
*
* @param [in] iface The interface to enable progress.
* @param [in] flags The type of progress to enable as defined by
* @ref uct_progress_types
*
* @note This function is not thread safe with respect to
* @ref ucp_worker_progress(), unless the flag
* @ref UCT_PROGRESS_THREAD_SAFE is specified.
*
*/
UCT_INLINE_API void
/**
* @ingroup UCT_RESOURCE
* @brief Disable synchronous progress for the interface
*
* Notify the transport that it should not progress its communications during
* @ref uct_worker_progress(). Thus the latency of other transports may be
* improved.
*
* By default, progress is disabled when the interface is created.
*
* @param [in] iface The interface to disable progress.
* @param [in] flags The type of progress to disable as defined by
* @ref uct_progress_types.
*
* @note This function is not thread safe with respect to
* @ref ucp_worker_progress(), unless the flag
* @ref UCT_PROGRESS_THREAD_SAFE is specified.
*
*/
UCT_INLINE_API void
/**
* @ingroup UCT_RESOURCE
* @brief Perform a progress on an interface.
*/
UCT_INLINE_API unsigned
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Open a connection manager.
*
* Open a connection manager. All client server connection
* establishment operations are performed in the context of a specific
* connection manager.
* @note This is an alternative API for
* @ref uct_iface_open_mode::UCT_IFACE_OPEN_MODE_SOCKADDR_SERVER and
* @ref uct_iface_open_mode::UCT_IFACE_OPEN_MODE_SOCKADDR_CLIENT .
*
* @param [in] component Component on which to open the connection manager,
* as returned from @ref uct_query_components.
* @param [in] worker Worker on which to open the connection manager.
* @param [in] config CM configuration options. Either obtained
* from @ref uct_cm_config_read() function, or pointer
* to CM-specific structure that extends
* @ref uct_cm_config_t.
* @param [out] cm_p Filled with a handle to the connection manager.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Close a connection manager.
*
* @param [in] cm Connection manager to close.
*/
void ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Get connection manager attributes.
*
* This routine queries the @ref uct_cm_h "cm" for its attributes
* @ref uct_cm_attr_t.
*
* @param [in] cm Connection manager to query.
* @param [out] cm_attr Filled with connection manager attributes.
*/
ucs_status_t ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Read the configuration for a connection manager.
*
* @param [in] component Read the configuration of the connection manager
* on this component.
* @param [in] env_prefix If non-NULL, search for environment variables
* starting with this UCT_<prefix>_. Otherwise, search
* for environment variables starting with just UCT_.
* @param [in] filename If non-NULL, read configuration from this file. If
* the file does not exist, or exists but cannot be
* opened or read, it will be ignored.
* @param [out] config_p Filled with a pointer to the configuration.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Notify the server about client-side connection establishment.
*
* This routine should be called on the client side after the client completed
* establishing its connection to the server. The routine will send a
* notification message to the server indicating that the client is connected.
*
* @param [in] ep The connected endpoint on the client side.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Create a new transport listener object.
*
* This routine creates a new listener on the given CM which will start
* listening on a given sockaddr.
*
* @param [in] cm Connection manager on which to open the listener.
* This cm should not be closed as long as there are
* open listeners on it.
* @param [in] saddr The socket address to listen on.
* @param [in] socklen The saddr length.
* @param [in] params User defined @ref uct_listener_params_t
* configurations for the @a listener_p.
* @param [out] listener_p Filled with handle to the new listener.
*
* @return Error code.
*/
ucs_status_t ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Destroy a transport listener.
*
* @param [in] listener Listener to destroy.
*/
void ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Reject a connection request.
*
* This routine can be invoked on the server side. It rejects a connection request
* from the client.
*
* @param [in] listener Listener which will reject the connection request.
* @param [in] conn_request Connection establishment request passed as parameter
* of @ref uct_cm_listener_conn_request_callback_t in
* @ref uct_cm_listener_conn_request_args_t::conn_request.
*
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCT_CLIENT_SERVER
* @brief Get attributes specific to a particular listener.
*
* This routine queries the @ref uct_listener_h "listener" for its attributes
* @ref uct_listener_attr_t.
*
* @param [in] listener Listener object to query.
* @param [out] listener_attr Filled with attributes of the listener.
*
* @return Error code as defined by @ref ucs_status_t
*/
ucs_status_t ;
/**
* @ingroup UCT_RESOURCE
* @brief Update status of UCT completion handle.
*
* @param comp [in] Completion handle to update.
* @param status [in] Status to update @a comp handle.
*/
static UCS_F_ALWAYS_INLINE
void
/**
* @example uct_hello_world.c
* UCT hello world client / server example utility.
*/