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
|
#include "slang-ir-autodiff.h"
#include "slang-ir-address-analysis.h"
#include "slang-ir-autodiff-rev.h"
#include "slang-ir-autodiff-fwd.h"
#include "slang-ir-autodiff-pairs.h"
#include "slang-ir-single-return.h"
#include "slang-ir-ssa-simplification.h"
#include "slang-ir-validate.h"
#include "../core/slang-performance-profiler.h"
namespace Slang
{
bool isBackwardDifferentiableFunc(IRInst* func)
{
for (auto decorations : func->getDecorations())
{
switch (decorations->getOp())
{
case kIROp_BackwardDifferentiableDecoration:
case kIROp_UserDefinedBackwardDerivativeDecoration:
return true;
}
}
return false;
}
IRInst* _lookupWitness(IRBuilder* builder, IRInst* witness, IRInst* requirementKey, IRType* resultType = nullptr)
{
if (auto witnessTable = as<IRWitnessTable>(witness))
{
for (auto entry : witnessTable->getEntries())
{
if (entry->getRequirementKey() == requirementKey)
return entry->getSatisfyingVal();
}
}
else if (auto interfaceType = as<IRInterfaceType>(witness))
{
for (UIndex ii = 0; ii < interfaceType->getOperandCount(); ii++)
{
auto entry = cast<IRInterfaceRequirementEntry>(interfaceType->getOperand(ii));
if (entry->getRequirementKey() == requirementKey)
return entry->getRequirementVal();
}
}
else if (as<IRMakeWitnessPack>(witness))
{
// We are looking up a witness from a type pack.
// This is only allowed if we are looking up a differential type.
// We should turn this into an actual witness table for the type pack/tuple type.
SLANG_UNEXPECTED("looking up from a witness pack is invalid and should have been lowered.");
}
else
{
SLANG_ASSERT(resultType);
return builder->emitLookupInterfaceMethodInst(
resultType,
witness,
requirementKey);
}
return nullptr;
}
static IRInst* _getDiffTypeFromPairType(AutoDiffSharedContext* sharedContext, IRBuilder* builder, IRDifferentialPairTypeBase* type)
{
auto witness = type->getWitness();
SLANG_RELEASE_ASSERT(witness);
// Special case when the primal type is an InterfaceType/AssociatedType
if (as<IRInterfaceType>(type->getValueType()) || as<IRAssociatedType>(type->getValueType()))
{
// The differential type is the IDifferentiable interface type.
if (as<IRDifferentialPairType>(type) || as<IRDifferentialPairUserCodeType>(type))
return sharedContext->differentiableInterfaceType;
else if (as<IRDifferentialPtrPairType>(type))
return sharedContext->differentiablePtrInterfaceType;
else
SLANG_UNEXPECTED("Unexpected differential pair type");
}
if (as<IRDifferentialPairType>(type) || as<IRDifferentialPairUserCodeType>(type))
return _lookupWitness(
builder,
witness,
sharedContext->differentialAssocTypeStructKey,
builder->getTypeKind());
else if (as<IRDifferentialPtrPairType>(type))
return _lookupWitness(
builder,
witness,
sharedContext->differentialAssocRefTypeStructKey,
builder->getTypeKind());
else
SLANG_UNEXPECTED("Unexpected differential pair type");
}
static IRInst* _getDiffTypeWitnessFromPairType(AutoDiffSharedContext* sharedContext, IRBuilder* builder, IRDifferentialPairTypeBase* type)
{
auto witnessTable = type->getWitness();
if (as<IRDifferentialPairType>(type) || as<IRDifferentialPairUserCodeType>(type))
return _lookupWitness(
builder,
witnessTable,
sharedContext->differentialAssocTypeWitnessStructKey,
sharedContext->differentialAssocTypeWitnessTableType);
else if (as<IRDifferentialPtrPairType>(type))
return _lookupWitness(
builder,
witnessTable,
sharedContext->differentialAssocRefTypeWitnessStructKey,
sharedContext->differentialAssocRefTypeWitnessTableType);
else
SLANG_UNEXPECTED("Unexpected differential pair type");
}
bool isNoDiffType(IRType* paramType)
{
while (auto ptrType = as<IRPtrTypeBase>(paramType))
paramType = ptrType->getValueType();
while (auto attrType = as<IRAttributedType>(paramType))
{
if (attrType->findAttr<IRNoDiffAttr>())
{
return true;
}
}
return false;
}
IRInst* lookupForwardDerivativeReference(IRInst* primalFunction)
{
if (auto jvpDefinition = primalFunction->findDecoration<IRForwardDerivativeDecoration>())
return jvpDefinition->getForwardDerivativeFunc();
return nullptr;
}
IRInst* DifferentialPairTypeBuilder::findSpecializationForParam(IRInst* specializeInst, IRInst* genericParam)
{
// Get base generic that's being specialized.
auto genericType = as<IRGeneric>(as<IRSpecialize>(specializeInst)->getBase());
SLANG_ASSERT(genericType);
// Find the index of genericParam in the base generic.
int paramIndex = -1;
int currentIndex = 0;
for (auto param : genericType->getParams())
{
if (param == genericParam)
paramIndex = currentIndex;
currentIndex ++;
}
SLANG_ASSERT(paramIndex >= 0);
// Return the corresponding operand in the specialization inst.
return specializeInst->getOperand(1 + paramIndex);
}
IRInst* DifferentialPairTypeBuilder::emitFieldAccessor(IRBuilder* builder, IRInst* baseInst, IRStructKey* key)
{
IRInst* pairType = nullptr;
if (auto basePtrType = as<IRPtrTypeBase>(baseInst->getDataType()))
{
auto loweredType = lowerDiffPairType(builder, basePtrType->getValueType());
pairType = builder->getPtrType(kIROp_PtrType, (IRType*)loweredType);
}
else
{
auto loweredType = lowerDiffPairType(builder, baseInst->getDataType());
pairType = loweredType;
}
if (auto basePairStructType = as<IRStructType>(pairType))
{
return as<IRFieldExtract>(builder->emitFieldExtract(
findStructField(basePairStructType, key)->getFieldType(),
baseInst,
key
));
}
else if (auto ptrType = as<IRPtrTypeBase>(pairType))
{
if (auto ptrInnerSpecializedType = as<IRSpecialize>(ptrType->getValueType()))
{
auto genericType = findInnerMostGenericReturnVal(as<IRGeneric>(ptrInnerSpecializedType->getBase()));
if (const auto genericBasePairStructType = as<IRStructType>(genericType))
{
return as<IRFieldAddress>(builder->emitFieldAddress(
builder->getPtrType((IRType*)
findSpecializationForParam(
ptrInnerSpecializedType,
findStructField(ptrInnerSpecializedType, key)->getFieldType())),
baseInst,
key
));
}
}
else if (auto ptrBaseStructType = as<IRStructType>(ptrType->getValueType()))
{
return as<IRFieldAddress>(builder->emitFieldAddress(
builder->getPtrType((IRType*)
findStructField(ptrBaseStructType, key)->getFieldType()),
baseInst,
key));
}
}
else if (auto specializedType = as<IRSpecialize>(pairType))
{
// TODO: Stopped here -> The type being emitted is incorrect. don't emit the generic's
// type, emit the specialization type.
//
auto genericType = findInnerMostGenericReturnVal(as<IRGeneric>(specializedType->getBase()));
if (auto genericBasePairStructType = as<IRStructType>(genericType))
{
return as<IRFieldExtract>(builder->emitFieldExtract(
(IRType*)findSpecializationForParam(
specializedType,
findStructField(genericBasePairStructType, key)->getFieldType()),
baseInst,
key
));
}
else if (auto genericPtrType = as<IRPtrTypeBase>(genericType))
{
if (auto genericPairStructType = as<IRStructType>(genericPtrType->getValueType()))
{
return as<IRFieldAddress>(builder->emitFieldAddress(
builder->getPtrType((IRType*)
findSpecializationForParam(
specializedType,
findStructField(genericPairStructType, key)->getFieldType())),
baseInst,
key
));
}
}
}
else
{
SLANG_UNEXPECTED("Unrecognized field. Cannot emit field accessor");
}
return nullptr;
}
IRInst* DifferentialPairTypeBuilder::emitPrimalFieldAccess(IRBuilder* builder, IRInst* baseInst)
{
return emitFieldAccessor(builder, baseInst, this->globalPrimalKey);
}
IRInst* DifferentialPairTypeBuilder::emitDiffFieldAccess(IRBuilder* builder, IRInst* baseInst)
{
return emitFieldAccessor(builder, baseInst, this->globalDiffKey);
}
IRStructKey* DifferentialPairTypeBuilder::_getOrCreateDiffStructKey()
{
if (!this->globalDiffKey)
{
IRBuilder builder(sharedContext->moduleInst);
// Insert directly at top level (skip any generic scopes etc.)
builder.setInsertInto(sharedContext->moduleInst);
this->globalDiffKey = builder.createStructKey();
builder.addNameHintDecoration(this->globalDiffKey , UnownedTerminatedStringSlice("differential"));
}
return this->globalDiffKey;
}
IRStructKey* DifferentialPairTypeBuilder::_getOrCreatePrimalStructKey()
{
if (!this->globalPrimalKey)
{
// Insert directly at top level (skip any generic scopes etc.)
IRBuilder builder(sharedContext->moduleInst);
builder.setInsertInto(sharedContext->moduleInst);
this->globalPrimalKey = builder.createStructKey();
builder.addNameHintDecoration(this->globalPrimalKey , UnownedTerminatedStringSlice("primal"));
}
return this->globalPrimalKey;
}
IRInst* DifferentialPairTypeBuilder::_createDiffPairType(IRType* origBaseType, IRType* diffType)
{
switch (origBaseType->getOp())
{
case kIROp_LookupWitness:
case kIROp_Specialize:
case kIROp_Param:
return nullptr;
default:
break;
}
IRBuilder builder(sharedContext->moduleInst);
builder.setInsertBefore(diffType);
auto pairStructType = builder.createStructType();
StringBuilder nameBuilder;
nameBuilder << "DiffPair_";
getTypeNameHint(nameBuilder, origBaseType);
builder.addNameHintDecoration(pairStructType, nameBuilder.toString().getUnownedSlice());
builder.createStructField(pairStructType, _getOrCreatePrimalStructKey(), origBaseType);
builder.createStructField(pairStructType, _getOrCreateDiffStructKey(), (IRType*)diffType);
return pairStructType;
}
IRInst* DifferentialPairTypeBuilder::lowerDiffPairType(
IRBuilder* builder, IRType* originalPairType)
{
IRInst* result = nullptr;
auto pairType = as<IRDifferentialPairTypeBase>(originalPairType);
if (!pairType)
return originalPairType;
// We make our type cache keyed on the primal type, not the pair type.
// This is because there may be duplicate pair types for the same
// primal type but different witness tables, and we don't want to treat
// them as distinct.
// We might want to consider making witness tables part of IR
// deduplication (make them HOISTABLE insts), but that is a bigger
// change. Another alternative is to make the witness operand of
// `IRDifferentialPairTypeBase` be child instead of an operand
// so that it is not considered part of the type for deduplication
// purposes.
auto primalType = pairType->getValueType();
if (pairTypeCache.tryGetValue(primalType, result))
return result;
if (!pairType)
{
result = originalPairType;
return result;
}
if (as<IRParam, IRDynamicCastBehavior::NoUnwrap>(primalType))
{
result = nullptr;
return result;
}
auto diffType = _getDiffTypeFromPairType(sharedContext, builder, pairType);
if (!diffType)
return result;
result = _createDiffPairType(pairType->getValueType(), (IRType*)diffType);
pairTypeCache.add(primalType, result);
return result;
}
IRInterfaceType* findDifferentiableRefInterface(IRModuleInst* moduleInst)
{
for (auto inst : moduleInst->getGlobalInsts())
{
if (auto interfaceType = as<IRInterfaceType>(inst))
{
if (auto decor = interfaceType->findDecoration<IRNameHintDecoration>())
{
if (decor->getName() == "IDifferentiablePtrType")
{
return interfaceType;
}
}
}
}
return nullptr;
}
AutoDiffSharedContext::AutoDiffSharedContext(TargetProgram* target, IRModuleInst* inModuleInst)
: moduleInst(inModuleInst), targetProgram(target)
{
differentiableInterfaceType = as<IRInterfaceType>(findDifferentiableInterface());
if (differentiableInterfaceType)
{
differentialAssocTypeStructKey = findDifferentialTypeStructKey();
differentialAssocTypeWitnessStructKey = findDifferentialTypeWitnessStructKey();
differentialAssocTypeWitnessTableType = findDifferentialTypeWitnessTableType();
zeroMethodStructKey = findZeroMethodStructKey();
zeroMethodType = cast<IRFuncType>(getInterfaceEntryAtIndex(differentiableInterfaceType, 2)->getRequirementVal());
addMethodStructKey = findAddMethodStructKey();
addMethodType = cast<IRFuncType>(getInterfaceEntryAtIndex(differentiableInterfaceType, 3)->getRequirementVal());
mulMethodStructKey = findMulMethodStructKey();
nullDifferentialStructType = findNullDifferentialStructType();
nullDifferentialWitness = findNullDifferentialWitness();
isInterfaceAvailable = true;
}
differentiablePtrInterfaceType = as<IRInterfaceType>(findDifferentiableRefInterface(inModuleInst));
if (differentiablePtrInterfaceType)
{
differentialAssocRefTypeStructKey = findDifferentialPtrTypeStructKey();
differentialAssocRefTypeWitnessStructKey = findDifferentialPtrTypeWitnessStructKey();
differentialAssocRefTypeWitnessTableType = findDifferentialPtrTypeWitnessTableType();
isPtrInterfaceAvailable = true;
}
}
IRInst* AutoDiffSharedContext::findDifferentiableInterface()
{
if (auto module = as<IRModuleInst>(moduleInst))
{
for (auto globalInst : module->getGlobalInsts())
{
// TODO: This seems like a particularly dangerous way to look for an interface.
// See if we can lower IDifferentiable to a separate IR inst.
//
if (auto intf = as<IRInterfaceType>(globalInst))
{
if (auto decor = intf->findDecoration<IRNameHintDecoration>())
{
if (decor->getName() == toSlice("IDifferentiable"))
{
return globalInst;
}
}
}
}
}
return nullptr;
}
IRStructType* AutoDiffSharedContext::findNullDifferentialStructType()
{
if (auto module = as<IRModuleInst>(moduleInst))
{
for (auto globalInst : module->getGlobalInsts())
{
// TODO: Also a particularly dangerous way to look for a struct...
if (auto structType = as<IRStructType>(globalInst))
{
if (auto decor = structType->findDecoration<IRNameHintDecoration>())
{
if (decor->getName() == toSlice("NullDifferential"))
{
return structType;
}
}
}
}
}
return nullptr;
}
IRInst* AutoDiffSharedContext::findNullDifferentialWitness()
{
if (auto module = as<IRModuleInst>(moduleInst))
{
for (auto globalInst : module->getGlobalInsts())
{
if (auto witnessTable = as<IRWitnessTable>(globalInst))
{
if (witnessTable->getConformanceType() == differentiableInterfaceType
&& witnessTable->getConcreteType() == nullDifferentialStructType)
return witnessTable;
}
}
}
return nullptr;
}
IRInterfaceRequirementEntry* AutoDiffSharedContext::getInterfaceEntryAtIndex(IRInterfaceType* interface, UInt index)
{
if (as<IRModuleInst>(moduleInst) && interface)
{
// Assume for now that IDifferentiable has exactly five fields.
// SLANG_ASSERT(interface->getOperandCount() == 5);
if (auto entry = as<IRInterfaceRequirementEntry>(interface->getOperand(index)))
return entry;
else
{
SLANG_UNEXPECTED("IDifferentiable interface entry unexpected type");
}
}
return nullptr;
}
// Extracts conformance interface from a witness inst while accounting for some
// quirks in the type system around interfaces that conform to other interfaces.
//
IRInterfaceType* DifferentiableTypeConformanceContext::getConformanceTypeFromWitness(IRInst* witness)
{
IRInterfaceType* diffInterfaceType = nullptr;
if (auto witnessTableType = as<IRWitnessTableType>(witness->getDataType()))
{
diffInterfaceType = cast<IRInterfaceType>(witnessTableType->getConformanceType());
}
else if (auto structKey = as<IRStructKey>(witness))
{
// We currently assume that a struct key is used uniquely for a single interface-requirement-entry.
// Find that entry
for (IRUse* use = structKey->firstUse; use; use = use->nextUse)
{
if (auto entry = as<IRInterfaceRequirementEntry>(use->getUser()))
{
auto innerWitnessTableType = cast<IRWitnessTableType>(entry->getRequirementVal());
diffInterfaceType = cast<IRInterfaceType>(innerWitnessTableType->getConformanceType());
break;
}
}
}
else if (auto interfaceRequirementEntry = as<IRInterfaceRequirementEntry>(witness))
{
auto innerWitnessTableType = cast<IRWitnessTableType>(interfaceRequirementEntry->getRequirementVal());
diffInterfaceType = cast<IRInterfaceType>(innerWitnessTableType->getConformanceType());
}
else if (auto tupleType = as<IRTupleType>(witness->getDataType()))
{
SLANG_ASSERT(tupleType->getOperandCount() >= 1);
auto operand = tupleType->getOperand(0);
auto innerWitnessTableType = cast<IRWitnessTableType>(operand);
return cast<IRInterfaceType>(innerWitnessTableType->getConformanceType());
}
else
{
SLANG_UNEXPECTED("Unexpected witness type");
}
return diffInterfaceType;
}
void DifferentiableTypeConformanceContext::setFunc(IRGlobalValueWithCode* func)
{
parentFunc = func;
auto decor = func->findDecoration<IRDifferentiableTypeDictionaryDecoration>();
SLANG_RELEASE_ASSERT(decor);
// Build lookup dictionary for type witnesses.
for (auto child = decor->getFirstChild(); child; child = child->next)
{
if (auto item = as<IRDifferentiableTypeDictionaryItem>(child))
{
IRInterfaceType* diffInterfaceType = getConformanceTypeFromWitness(item->getWitness());
SLANG_ASSERT(
diffInterfaceType == sharedContext->differentiableInterfaceType
|| diffInterfaceType == sharedContext->differentiablePtrInterfaceType);
auto existingItem = differentiableTypeWitnessDictionary.tryGetValue(item->getConcreteType());
if (existingItem)
{
*existingItem = item->getWitness();
}
else
{
auto witness = item->getWitness();
// Also register the type's differential type with the same witness.
auto concreteType = item->getConcreteType();
IRBuilder subBuilder(item->getConcreteType());
if (as<IRTypePack>(concreteType) || as<IRTupleType>(concreteType))
{
// For tuple types with concrete element types,
// register the differential type for each element, but don't register for the
// tuple/typepack itself.
if (auto witnessPack = as<IRMakeWitnessPack>(witness))
{
for (UInt i = 0; i < concreteType->getOperandCount(); i++)
{
auto element = concreteType->getOperand(i);
auto elementWitness = witnessPack->getOperand(i);
if (diffInterfaceType == sharedContext->differentiableInterfaceType)
addTypeToDictionary(
(IRType*)element,
elementWitness);
else if (diffInterfaceType == sharedContext->differentiablePtrInterfaceType)
addTypeToDictionary(
(IRType*)element,
elementWitness);
}
return;
}
}
addTypeToDictionary((IRType*)item->getConcreteType(), item->getWitness());
if (!as<IRInterfaceType>(item->getConcreteType()))
{
addTypeToDictionary(
(IRType*)_lookupWitness(&subBuilder, item->getWitness(), sharedContext->differentialAssocTypeStructKey, subBuilder.getTypeKind()),
item->getWitness());
}
if (auto diffPairType = as<IRDifferentialPairTypeBase>(item->getConcreteType()))
{
// For differential pair types, register the differential type as well.
IRBuilder builder(diffPairType);
builder.setInsertAfter(diffPairType->getWitness());
// TODO(sai): lot of this logic is duplicated. need to refactor.
auto diffType = (diffInterfaceType == sharedContext->differentiableInterfaceType) ?
_lookupWitness(&builder, diffPairType->getWitness(), sharedContext->differentialAssocTypeStructKey, builder.getTypeKind()) :
_lookupWitness(&builder, diffPairType->getWitness(), sharedContext->differentialAssocRefTypeStructKey, builder.getTypeKind());
auto diffWitness = (diffInterfaceType == sharedContext->differentiableInterfaceType) ?
_lookupWitness(
&builder,
diffPairType->getWitness(),
sharedContext->differentialAssocTypeWitnessStructKey,
sharedContext->differentialAssocTypeWitnessTableType) :
_lookupWitness(
&builder,
diffPairType->getWitness(),
sharedContext->differentialAssocRefTypeWitnessStructKey,
sharedContext->differentialAssocRefTypeWitnessTableType);
addTypeToDictionary((IRType*)diffType, diffWitness);
}
}
}
}
}
IRInst* DifferentiableTypeConformanceContext::lookUpConformanceForType(IRInst* type, DiffConformanceKind kind)
{
IRInst* foundResult = nullptr;
differentiableTypeWitnessDictionary.tryGetValue(type, foundResult);
if (!foundResult)
return nullptr;
if (kind == DiffConformanceKind::Any)
return foundResult;
if (auto baseType = getConformanceTypeFromWitness(foundResult))
{
if (baseType == sharedContext->differentiableInterfaceType && kind == DiffConformanceKind::Value)
return foundResult;
else if (baseType == sharedContext->differentiablePtrInterfaceType && kind == DiffConformanceKind::Ptr)
return foundResult;
}
return nullptr;
}
IRInst* DifferentiableTypeConformanceContext::lookUpInterfaceMethod(IRBuilder* builder, IRType* origType, IRStructKey* key, IRType* resultType)
{
if (auto conformance = tryGetDifferentiableWitness(builder, origType, DiffConformanceKind::Any))
return _lookupWitness(builder, conformance, key, resultType);
return nullptr;
}
IRInst* DifferentiableTypeConformanceContext::getDifferentialTypeFromDiffPairType(
IRBuilder*, IRDifferentialPairTypeBase*)
{
SLANG_UNIMPLEMENTED_X("");
}
IRInst* DifferentiableTypeConformanceContext::getDiffTypeFromPairType(IRBuilder* builder, IRDifferentialPairTypeBase* type)
{
return this->differentiateType(builder, type->getValueType());
}
IRInst* DifferentiableTypeConformanceContext::getDiffTypeWitnessFromPairType(IRBuilder* builder, IRDifferentialPairTypeBase* type)
{
return _getDiffTypeWitnessFromPairType(sharedContext, builder, type);
}
IRInst* DifferentiableTypeConformanceContext::getDiffZeroMethodFromPairType(IRBuilder* builder, IRDifferentialPairTypeBase* type)
{
auto witnessTable = type->getWitness();
return _lookupWitness(builder, witnessTable, sharedContext->zeroMethodStructKey, sharedContext->zeroMethodType);
}
IRInst* DifferentiableTypeConformanceContext::getDiffAddMethodFromPairType(IRBuilder* builder, IRDifferentialPairTypeBase* type)
{
auto witnessTable = type->getWitness();
return _lookupWitness(builder, witnessTable, sharedContext->addMethodStructKey, sharedContext->addMethodType);
}
void DifferentiableTypeConformanceContext::addTypeToDictionary(IRType* type, IRInst* witness)
{
auto conformanceType = getConformanceTypeFromWitness(witness);
if (!sharedContext->isInterfaceAvailable && !sharedContext->isPtrInterfaceAvailable)
return;
SLANG_ASSERT(
conformanceType == sharedContext->differentiableInterfaceType ||
conformanceType == sharedContext->differentiablePtrInterfaceType);
differentiableTypeWitnessDictionary.addIfNotExists(type, witness);
}
IRInst *DifferentiableTypeConformanceContext::tryExtractConformanceFromInterfaceType(IRBuilder *builder, IRInterfaceType *interfaceType, IRWitnessTable *witnessTable)
{
SLANG_RELEASE_ASSERT(interfaceType);
List<IRInterfaceRequirementEntry*> lookupKeyPath = findInterfaceLookupPath(
sharedContext->differentiableInterfaceType, interfaceType);
IRInst* differentialTypeWitness = witnessTable;
if (lookupKeyPath.getCount())
{
// `interfaceType` does conform to `IDifferentiable`.
for (auto node : lookupKeyPath)
{
differentialTypeWitness = builder->emitLookupInterfaceMethodInst((IRType*)node->getRequirementVal(), differentialTypeWitness, node->getRequirementKey());
// Lookup insts are always primal values.
builder->markInstAsPrimal(differentialTypeWitness);
}
return differentialTypeWitness;
}
return nullptr;
}
// Given an interface type, return the lookup path from a witness table of `type` to a witness table of `supType`.
static bool _findInterfaceLookupPathImpl(
HashSet<IRInst*>& processedTypes,
IRInterfaceType* supType,
IRInterfaceType* type,
List<IRInterfaceRequirementEntry*>& currentPath)
{
if (processedTypes.contains(type))
return false;
processedTypes.add(type);
List<IRInterfaceRequirementEntry*> lookupKeyPath;
for (UInt i = 0; i < type->getOperandCount(); i++)
{
auto entry = as<IRInterfaceRequirementEntry>(type->getOperand(i));
if (!entry) continue;
if (auto wt = as<IRWitnessTableTypeBase>(entry->getRequirementVal()))
{
currentPath.add(entry);
if (wt->getConformanceType() == supType)
{
return true;
}
else if (auto subInterfaceType = as<IRInterfaceType>(wt->getConformanceType()))
{
if (_findInterfaceLookupPathImpl(processedTypes, supType, subInterfaceType, currentPath))
return true;
}
currentPath.removeLast();
}
}
return false;
}
List<IRInterfaceRequirementEntry *> DifferentiableTypeConformanceContext::findInterfaceLookupPath(IRInterfaceType *supType, IRInterfaceType *type)
{
List<IRInterfaceRequirementEntry*> currentPath;
HashSet<IRInst*> processedTypes;
_findInterfaceLookupPathImpl(processedTypes, supType, type, currentPath);
return currentPath;
}
IRFunc *DifferentiableTypeConformanceContext::getOrCreateExistentialDAddMethod()
{
if (this->existentialDAddFunc)
return this->existentialDAddFunc;
SLANG_ASSERT(sharedContext->differentiableInterfaceType);
SLANG_ASSERT(sharedContext->nullDifferentialWitness);
auto builder = IRBuilder(this->sharedContext->moduleInst);
existentialDAddFunc = builder.createFunc();
existentialDAddFunc->setFullType(builder.getFuncType(
List<IRType*>({
sharedContext->differentiableInterfaceType,
sharedContext->differentiableInterfaceType,
}),
sharedContext->differentiableInterfaceType));
builder.setInsertInto(existentialDAddFunc);
auto entryBlock = builder.emitBlock();
builder.setInsertInto(entryBlock);
// Insert parameters.
auto aObj = builder.emitParam(sharedContext->differentiableInterfaceType);
auto bObj = builder.emitParam(sharedContext->differentiableInterfaceType);
// Check if a.type == null_differential.type
auto aObjWitnessIsNull = builder.emitIsDifferentialNull(aObj);
// If aObjWitnessTable is null, return bObj.
auto aObjWitnessIsNullBlock = builder.emitBlock();
builder.setInsertInto(aObjWitnessIsNullBlock);
builder.emitReturn(bObj);
auto aObjWitnessIsNotNullBlock = builder.emitBlock();
builder.setInsertInto(aObjWitnessIsNotNullBlock);
// Check if b.type == null_differential.type
auto bObjWitnessIsNull = builder.emitIsDifferentialNull(bObj);
// If bObjWitnessTable is null, return aObj.
auto bObjWitnessIsNullBlock = builder.emitBlock();
builder.setInsertInto(bObjWitnessIsNullBlock);
builder.emitReturn(aObj);
auto bObjWitnessIsNotNullBlock = builder.emitBlock();
// Emit aObj.type::dadd(aObj.val, bObj.val)
//
// Important: we're looking up dadd on the differential type, and
// not the primal type. This assumes that the two methods are identical,
// which (mathematically) they should be.
//
auto concreteDiffTypeWitnessTable = builder.emitExtractExistentialWitnessTable(aObj);
// Extract func type from the witness table type.
IRFuncType* dAddFuncType = nullptr;
for (UIndex ii = 0; ii < sharedContext->differentiableInterfaceType->getOperandCount(); ii++)
{
auto entry = cast<IRInterfaceRequirementEntry>(sharedContext->differentiableInterfaceType->getOperand(ii));
if (entry->getRequirementKey() == sharedContext->addMethodStructKey)
{
dAddFuncType = cast<IRFuncType>(entry->getRequirementVal());
break;
}
}
SLANG_ASSERT(dAddFuncType);
auto dAddMethod = builder.emitLookupInterfaceMethodInst(
dAddFuncType,
concreteDiffTypeWitnessTable,
sharedContext->addMethodStructKey);
// Call
auto dAddResult = builder.emitCallInst(
dAddFuncType->getResultType(),
dAddMethod,
List<IRInst*>({
builder.emitExtractExistentialValue(dAddFuncType->getParamType(0), aObj),
builder.emitExtractExistentialValue(dAddFuncType->getParamType(1), bObj)}));
// Wrap result in existential.
auto existentialDiffType = builder.emitMakeExistential(
sharedContext->differentiableInterfaceType,
dAddResult,
concreteDiffTypeWitnessTable);
builder.emitReturn(existentialDiffType);
// Emit an unreachable block to act as the after block.
auto unreachableBlock = builder.emitBlock();
builder.setInsertInto(unreachableBlock);
builder.emitUnreachable();
// Link up conditional blocks.
builder.setInsertInto(entryBlock);
builder.emitIfElse(
aObjWitnessIsNull,
aObjWitnessIsNullBlock,
aObjWitnessIsNotNullBlock,
unreachableBlock);
builder.setInsertInto(aObjWitnessIsNotNullBlock);
builder.emitIfElse(
bObjWitnessIsNull,
bObjWitnessIsNullBlock,
bObjWitnessIsNotNullBlock,
unreachableBlock);
builder.addNameHintDecoration(existentialDAddFunc, UnownedStringSlice("__existential_dadd"));
builder.addBackwardDifferentiableDecoration(existentialDAddFunc);
return existentialDAddFunc;
}
void DifferentiableTypeConformanceContext::buildGlobalWitnessDictionary()
{
for (auto globalInst : sharedContext->moduleInst->getChildren())
{
if (auto pairType = as<IRDifferentialPairTypeBase>(globalInst))
{
addTypeToDictionary(pairType->getValueType(), pairType->getWitness());
}
}
}
IRType* DifferentiableTypeConformanceContext::differentiateType(IRBuilder* builder, IRInst* primalType)
{
if (auto ptrType = as<IRPtrTypeBase>(primalType))
return builder->getPtrType(
primalType->getOp(),
differentiateType(builder, ptrType->getValueType()));
// Special case certain compound types (PtrType, FuncType, etc..)
// otherwise try to lookup a differential definition for the given type.
// If one does not exist, then we assume it's not differentiable.
//
switch (primalType->getOp())
{
case kIROp_Param:
if (as<IRTypeType>(primalType->getDataType()))
return differentiateType(builder, primalType);
else if (as<IRWitnessTableType>(primalType->getDataType()))
return (IRType*)primalType;
else
return nullptr;
case kIROp_ArrayType:
{
auto primalArrayType = as<IRArrayType>(primalType);
if (auto diffElementType = differentiateType(builder, primalArrayType->getElementType()))
return builder->getArrayType(
diffElementType,
primalArrayType->getElementCount());
else
return nullptr;
}
case kIROp_DifferentialPairType:
{
auto primalPairType = as<IRDifferentialPairType>(primalType);
return builder->getDifferentialPairType(
(IRType*)getDiffTypeFromPairType(builder, primalPairType),
getDiffTypeWitnessFromPairType(builder, primalPairType));
}
case kIROp_DifferentialPairUserCodeType:
{
auto primalPairType = as<IRDifferentialPairUserCodeType>(primalType);
return builder->getDifferentialPairUserCodeType(
(IRType*)getDiffTypeFromPairType(builder, primalPairType),
getDiffTypeWitnessFromPairType(builder, primalPairType));
}
case kIROp_DifferentialPtrPairType:
{
auto primalPairType = as<IRDifferentialPtrPairType>(primalType);
return builder->getDifferentialPtrPairType(
(IRType*)getDiffTypeFromPairType(builder, primalPairType),
getDiffTypeWitnessFromPairType(builder, primalPairType));
}
case kIROp_FuncType:
{
SLANG_UNIMPLEMENTED_X("Impl");
}
case kIROp_OutType:
if (auto diffValueType = differentiateType(builder, as<IROutType>(primalType)->getValueType()))
return builder->getOutType(diffValueType);
else
return nullptr;
case kIROp_InOutType:
if (auto diffValueType = differentiateType(builder, as<IRInOutType>(primalType)->getValueType()))
return builder->getInOutType(diffValueType);
else
return nullptr;
case kIROp_ExtractExistentialType:
{
SLANG_UNIMPLEMENTED_X("Impl");
}
case kIROp_TypePack:
case kIROp_TupleType:
{
List<IRType*> diffTypeList;
// TODO: what if we have type parameters here?
for (UIndex ii = 0; ii < primalType->getOperandCount(); ii++)
diffTypeList.add(
differentiateType(builder, (IRType*)primalType->getOperand(ii)));
if (primalType->getOp() == kIROp_TupleType)
return builder->getTupleType(diffTypeList);
else
return builder->getTypePack((UInt)diffTypeList.getCount(), diffTypeList.getBuffer());
}
default:
return (IRType*)getDifferentialForType(builder, (IRType*)primalType);
}
}
IRInst* DifferentiableTypeConformanceContext::tryGetDifferentiableWitness(IRBuilder* builder, IRInst* primalType, DiffConformanceKind kind)
{
if (isNoDiffType((IRType*)primalType))
return nullptr;
IRInst* witness = lookUpConformanceForType((IRType*)primalType, kind);
if (witness)
{
SLANG_RELEASE_ASSERT(witness || as<IRArrayType>(primalType));
}
if (as<IRMakeWitnessPack>(witness))
{
// If registered witness is a witness pack for a type pack,
// we should reconstruct the true witness table.
witness = nullptr;
}
if (witness)
return witness;
// If a witness is not already mapped, build one if possible.
SLANG_RELEASE_ASSERT(primalType);
if (auto primalPairType = as<IRDifferentialPairTypeBase>(primalType))
{
witness = buildDifferentiablePairWitness(builder, primalPairType, kind);
}
else if (auto arrayType = as<IRArrayType>(primalType))
{
witness = buildArrayWitness(builder, arrayType, kind);
}
else if (auto extractExistential = as<IRExtractExistentialType>(primalType))
{
witness = buildExtractExistensialTypeWitness(builder, extractExistential, kind);
}
else if (auto typePack = as<IRTypePack>(primalType))
{
witness = buildTupleWitness(builder, typePack, kind);
}
else if (auto tupleType = as<IRTupleType>(primalType))
{
witness = buildTupleWitness(builder, tupleType, kind);
}
else if (auto lookup = as<IRLookupWitnessMethod>(primalType))
{
// For types that are lookups from a table, we can simply lookup the witness from the same table
if (lookup->getRequirementKey() == sharedContext->differentialAssocTypeStructKey)
{
witness = builder->emitLookupInterfaceMethodInst(
lookup->getWitnessTable()->getDataType(),
lookup->getWitnessTable(),
sharedContext->differentialAssocTypeWitnessStructKey);
}
if (lookup->getRequirementKey() == sharedContext->differentialAssocRefTypeStructKey)
{
witness = builder->emitLookupInterfaceMethodInst(
lookup->getWitnessTable()->getDataType(),
lookup->getWitnessTable(),
sharedContext->differentialAssocRefTypeWitnessStructKey);
}
}
// If we created a witness, register it.
if (witness)
{
addTypeToDictionary((IRType*)primalType, witness);
return witness;
}
// Failed. Type is either non-differentiable, or unhandled.
return nullptr;
}
IRType* DifferentiableTypeConformanceContext::getOrCreateDiffPairType(IRBuilder* builder, IRInst* primalType, IRInst* witness)
{
return builder->getDifferentialPairType(
(IRType*)primalType,
witness);
}
IRInst* DifferentiableTypeConformanceContext::buildDifferentiablePairWitness(
IRBuilder* builder,
IRDifferentialPairTypeBase* pairType,
DiffConformanceKind target)
{
IRWitnessTable* table = nullptr;
if (target == DiffConformanceKind::Value)
{
// Differentiate the pair type to get it's differential (which is itself a pair)
auto diffDiffPairType = (IRType*)differentiateType(builder, (IRType*)pairType);
auto addMethod = builder->createFunc();
auto zeroMethod = builder->createFunc();
table = builder->createWitnessTable(sharedContext->differentiableInterfaceType, (IRType*)pairType);
// And place it in the synthesized witness table.
builder->createWitnessTableEntry(table, sharedContext->differentialAssocTypeStructKey, diffDiffPairType);
builder->createWitnessTableEntry(table, sharedContext->differentialAssocTypeWitnessStructKey, table);
builder->createWitnessTableEntry(table, sharedContext->addMethodStructKey, addMethod);
builder->createWitnessTableEntry(table, sharedContext->zeroMethodStructKey, zeroMethod);
bool isUserCodeType = as<IRDifferentialPairUserCodeType>(pairType) ? true : false;
// Fill in differential method implementations.
auto elementType = as<IRDifferentialPairTypeBase>(pairType)->getValueType();
auto innerWitness = as<IRDifferentialPairTypeBase>(pairType)->getWitness();
{
// Add method.
IRBuilder b = *builder;
b.setInsertInto(addMethod);
b.addBackwardDifferentiableDecoration(addMethod);
IRType* paramTypes[2] = { diffDiffPairType, diffDiffPairType };
addMethod->setFullType(b.getFuncType(2, paramTypes, diffDiffPairType));
b.emitBlock();
auto p0 = b.emitParam(diffDiffPairType);
auto p1 = b.emitParam(diffDiffPairType);
// Since we are already dealing with a DiffPair<T>.Differnetial type, we know that value type == diff type.
auto innerAdd = _lookupWitness(&b, innerWitness, sharedContext->addMethodStructKey, sharedContext->addMethodType);
IRInst* argsPrimal[2] = {
isUserCodeType ? b.emitDifferentialPairGetPrimalUserCode(p0) : b.emitDifferentialPairGetPrimal(p0),
isUserCodeType ? b.emitDifferentialPairGetPrimalUserCode(p1) : b.emitDifferentialPairGetPrimal(p1) };
auto primalPart = b.emitCallInst(elementType, innerAdd, 2, argsPrimal);
IRInst* argsDiff[2] = {
isUserCodeType ? b.emitDifferentialPairGetDifferentialUserCode(elementType, p0) : b.emitDifferentialPairGetDifferential(elementType, p0),
isUserCodeType ? b.emitDifferentialPairGetDifferentialUserCode(elementType, p1) : b.emitDifferentialPairGetDifferential(elementType, p1)};
auto diffPart = b.emitCallInst(elementType, innerAdd, 2, argsDiff);
auto retVal =
isUserCodeType
? b.emitMakeDifferentialPairUserCode(diffDiffPairType, primalPart, diffPart)
: b.emitMakeDifferentialPair(diffDiffPairType, primalPart, diffPart);
b.emitReturn(retVal);
}
{
// Zero method.
IRBuilder b = *builder;
b.setInsertInto(zeroMethod);
zeroMethod->setFullType(b.getFuncType(0, nullptr, diffDiffPairType));
b.emitBlock();
auto innerZero = _lookupWitness(&b, innerWitness, sharedContext->zeroMethodStructKey, sharedContext->zeroMethodType);
auto zeroVal = b.emitCallInst(elementType, innerZero, 0, nullptr);
auto retVal =
isUserCodeType
? b.emitMakeDifferentialPairUserCode(diffDiffPairType, zeroVal, zeroVal)
: b.emitMakeDifferentialPair(diffDiffPairType, zeroVal, zeroVal);
b.emitReturn(retVal);
}
}
else if (target == DiffConformanceKind::Ptr)
{
// Differentiate the pair type to get it's differential (which is itself a pair)
auto diffDiffPairType = (IRType*)differentiateType(builder, (IRType*)pairType);
table = builder->createWitnessTable(
sharedContext->differentiablePtrInterfaceType,
(IRType*)pairType);
// And place it in the synthesized witness table.
builder->createWitnessTableEntry(table, sharedContext->differentialAssocRefTypeStructKey, diffDiffPairType);
builder->createWitnessTableEntry(table, sharedContext->differentialAssocRefTypeWitnessStructKey, table);
}
return table;
}
IRInst* DifferentiableTypeConformanceContext::buildArrayWitness(
IRBuilder* builder,
IRArrayType* arrayType,
DiffConformanceKind target)
{
// Differentiate the pair type to get it's differential (which is itself a pair)
auto diffArrayType = (IRType*)differentiateType(builder, (IRType*)arrayType);
if (!diffArrayType)
return nullptr;
IRWitnessTable* table = nullptr;
if (target == DiffConformanceKind::Value)
{
SLANG_ASSERT(isDifferentiableValueType((IRType*)arrayType));
auto innerWitness = tryGetDifferentiableWitness(builder, as<IRArrayTypeBase>(arrayType)->getElementType(), DiffConformanceKind::Value);
auto addMethod = builder->createFunc();
auto zeroMethod = builder->createFunc();
table = builder->createWitnessTable(sharedContext->differentiableInterfaceType, (IRType*)arrayType);
// And place it in the synthesized witness table.
builder->createWitnessTableEntry(table, sharedContext->differentialAssocTypeStructKey, diffArrayType);
builder->createWitnessTableEntry(table, sharedContext->differentialAssocTypeWitnessStructKey, table);
builder->createWitnessTableEntry(table, sharedContext->addMethodStructKey, addMethod);
builder->createWitnessTableEntry(table, sharedContext->zeroMethodStructKey, zeroMethod);
auto elementType = as<IRArrayTypeBase>(diffArrayType)->getElementType();
// Fill in differential method implementations.
{
// Add method.
IRBuilder b = *builder;
b.setInsertInto(addMethod);
b.addBackwardDifferentiableDecoration(addMethod);
IRType* paramTypes[2] = { diffArrayType, diffArrayType };
addMethod->setFullType(b.getFuncType(2, paramTypes, diffArrayType));
b.emitBlock();
auto p0 = b.emitParam(diffArrayType);
auto p1 = b.emitParam(diffArrayType);
// Since we are already dealing with a DiffPair<T>.Differnetial type, we know that value type == diff type.
auto innerAdd = _lookupWitness(&b, innerWitness, sharedContext->addMethodStructKey, sharedContext->addMethodType);
auto resultVar = b.emitVar(diffArrayType);
IRBlock* loopBodyBlock = nullptr;
IRBlock* loopBreakBlock = nullptr;
auto loopCounter = emitLoopBlocks(&b, b.getIntValue(b.getIntType(), 0), as<IRArrayTypeBase>(diffArrayType)->getElementCount(), loopBodyBlock, loopBreakBlock);
b.setInsertBefore(loopBodyBlock->getTerminator());
IRInst* args[2] = {
b.emitElementExtract(p0, loopCounter),
b.emitElementExtract(p1, loopCounter) };
auto elementResult = b.emitCallInst(elementType, innerAdd, 2, args);
auto addr = b.emitElementAddress(resultVar, loopCounter);
b.emitStore(addr, elementResult);
b.setInsertInto(loopBreakBlock);
b.emitReturn(b.emitLoad(resultVar));
}
{
// Zero method.
IRBuilder b = *builder;
b.setInsertInto(zeroMethod);
zeroMethod->setFullType(b.getFuncType(0, nullptr, diffArrayType));
b.emitBlock();
auto innerZero = _lookupWitness(&b, innerWitness, sharedContext->zeroMethodStructKey, sharedContext->zeroMethodType);
auto zeroVal = b.emitCallInst(elementType, innerZero, 0, nullptr);
auto retVal = b.emitMakeArrayFromElement(diffArrayType, zeroVal);
b.emitReturn(retVal);
}
}
else if (target == DiffConformanceKind::Ptr)
{
SLANG_ASSERT(isDifferentiablePtrType((IRType*)arrayType));
table = builder->createWitnessTable(sharedContext->differentiablePtrInterfaceType, (IRType*)arrayType);
// And place it in the synthesized witness table.
builder->createWitnessTableEntry(table, sharedContext->differentialAssocRefTypeStructKey, diffArrayType);
builder->createWitnessTableEntry(table, sharedContext->differentialAssocRefTypeWitnessStructKey, table);
}
else
{
SLANG_UNEXPECTED("Invalid conformance kind for synthesis");
}
return table;
}
IRInst* DifferentiableTypeConformanceContext::buildTupleWitness(
IRBuilder* builder,
IRInst* inTupleType,
DiffConformanceKind target)
{
// Differentiate the pair type to get it's differential (which is itself a pair)
auto diffTupleType = (IRType*)differentiateType(builder, (IRType*)inTupleType);
if (!diffTupleType)
return nullptr;
IRWitnessTable* table = nullptr;
if (target == DiffConformanceKind::Value)
{
SLANG_ASSERT(isDifferentiableValueType((IRType*)inTupleType));
auto addMethod = builder->createFunc();
auto zeroMethod = builder->createFunc();
table = builder->createWitnessTable(sharedContext->differentiableInterfaceType, (IRType*)inTupleType);
// And place it in the synthesized witness table.
builder->createWitnessTableEntry(table, sharedContext->differentialAssocTypeStructKey, diffTupleType);
builder->createWitnessTableEntry(table, sharedContext->differentialAssocTypeWitnessStructKey, table);
builder->createWitnessTableEntry(table, sharedContext->addMethodStructKey, addMethod);
builder->createWitnessTableEntry(table, sharedContext->zeroMethodStructKey, zeroMethod);
// Fill in differential method implementations.
{
// Add method.
IRBuilder b = *builder;
b.setInsertInto(addMethod);
b.addBackwardDifferentiableDecoration(addMethod);
IRType* paramTypes[2] = { diffTupleType, diffTupleType };
addMethod->setFullType(b.getFuncType(2, paramTypes, diffTupleType));
b.emitBlock();
auto p0 = b.emitParam(diffTupleType);
auto p1 = b.emitParam(diffTupleType);
List<IRInst*> results;
for (UInt i = 0; i < inTupleType->getOperandCount(); i++)
{
auto elementType = inTupleType->getOperand(i);
auto diffElementType = (IRType*)diffTupleType->getOperand(i);
auto innerWitness = tryGetDifferentiableWitness(&b, (IRType*)elementType, DiffConformanceKind::Value);
IRInst* elementResult = nullptr;
if (!innerWitness)
{
elementResult = b.getVoidValue();
}
else
{
auto innerAdd = _lookupWitness(&b, innerWitness, sharedContext->addMethodStructKey, sharedContext->addMethodType);
auto iVal = b.getIntValue(b.getIntType(), i);
IRInst* args[2] = {
b.emitGetTupleElement(diffElementType, p0, iVal),
b.emitGetTupleElement(diffElementType, p1, iVal) };
elementResult = b.emitCallInst(diffElementType, innerAdd, 2, args);
}
results.add(elementResult);
}
IRInst* resultVal = nullptr;
if (diffTupleType->getOp() == kIROp_TupleType)
resultVal = b.emitMakeTuple(diffTupleType, results);
else
resultVal = b.emitMakeValuePack(diffTupleType, (UInt)results.getCount(), results.getBuffer());
b.emitReturn(resultVal);
}
{
// Zero method.
IRBuilder b = *builder;
b.setInsertInto(addMethod);
b.addBackwardDifferentiableDecoration(addMethod);
addMethod->setFullType(b.getFuncType(0, nullptr, diffTupleType));
b.emitBlock();
List<IRInst*> results;
for (UInt i = 0; i < inTupleType->getOperandCount(); i++)
{
auto elementType = inTupleType->getOperand(i);
auto diffElementType = (IRType*)diffTupleType->getOperand(i);
auto innerWitness = tryGetDifferentiableWitness(&b, (IRType*)elementType, DiffConformanceKind::Value);
IRInst* elementResult = nullptr;
if (!innerWitness)
{
elementResult = b.getVoidValue();
}
else
{
auto innerZero = _lookupWitness(&b, innerWitness, sharedContext->zeroMethodStructKey, sharedContext->zeroMethodType);
elementResult = b.emitCallInst(diffElementType, innerZero, 0, nullptr);
}
results.add(elementResult);
}
IRInst* resultVal = nullptr;
if (diffTupleType->getOp() == kIROp_TupleType)
resultVal = b.emitMakeTuple(diffTupleType, results);
else
resultVal = b.emitMakeValuePack(diffTupleType, (UInt)results.getCount(), results.getBuffer());
b.emitReturn(resultVal);
}
}
else if (target == DiffConformanceKind::Ptr)
{
SLANG_ASSERT(isDifferentiablePtrType((IRType*)inTupleType));
table = builder->createWitnessTable(sharedContext->differentiablePtrInterfaceType, (IRType*)inTupleType);
// And place it in the synthesized witness table.
builder->createWitnessTableEntry(table, sharedContext->differentialAssocRefTypeStructKey, diffTupleType);
builder->createWitnessTableEntry(table, sharedContext->differentialAssocRefTypeWitnessStructKey, table);
}
return table;
}
IRInst* DifferentiableTypeConformanceContext::buildExtractExistensialTypeWitness(
IRBuilder* builder,
IRExtractExistentialType* extractExistentialType,
DiffConformanceKind target)
{
SLANG_UNUSED(target); // logic is the same for both value and ptr
// Check that the type's base is differentiable
if (differentiateType(builder, extractExistentialType->getOperand(0)->getDataType()))
{
return tryExtractConformanceFromInterfaceType(
builder,
cast<IRInterfaceType>(extractExistentialType->getOperand(0)->getDataType()),
(IRWitnessTable*)builder->emitExtractExistentialWitnessTable(extractExistentialType->getOperand(0)));
}
return nullptr;
}
void copyCheckpointHints(IRBuilder* builder, IRGlobalValueWithCode* oldInst, IRGlobalValueWithCode* newInst)
{
for (auto decor = oldInst->getFirstDecoration(); decor; decor = decor->getNextDecoration())
{
if (auto chkHint = as<IRCheckpointHintDecoration>(decor))
{
cloneCheckpointHint(builder, chkHint, newInst);
}
}
}
void cloneCheckpointHint(IRBuilder* builder, IRCheckpointHintDecoration* chkHint, IRGlobalValueWithCode* target)
{
// Grab all the operands
List<IRInst*> operands;
for (UCount operand = 0; operand < chkHint->getOperandCount(); operand++)
{
operands.add(chkHint->getOperand(operand));
}
builder->addDecoration(
target,
chkHint->getOp(),
operands.getBuffer(),
operands.getCount());
}
void stripDerivativeDecorations(IRInst* inst)
{
for (auto decor = inst->getFirstDecoration(); decor; )
{
auto next = decor->getNextDecoration();
switch (decor->getOp())
{
case kIROp_ForwardDerivativeDecoration:
case kIROp_DerivativeMemberDecoration:
case kIROp_BackwardDerivativeDecoration:
case kIROp_BackwardDerivativeIntermediateTypeDecoration:
case kIROp_BackwardDerivativePropagateDecoration:
case kIROp_BackwardDerivativePrimalDecoration:
case kIROp_UserDefinedBackwardDerivativeDecoration:
case kIROp_AutoDiffOriginalValueDecoration:
decor->removeAndDeallocate();
break;
default:
break;
}
decor = next;
}
}
void stripAutoDiffDecorationsFromChildren(IRInst* parent)
{
for (auto inst : parent->getChildren())
{
bool shouldRemoveKeepAliveDecorations = false;
for (auto decor = inst->getFirstDecoration(); decor; )
{
auto next = decor->getNextDecoration();
switch (decor->getOp())
{
case kIROp_ForwardDerivativeDecoration:
case kIROp_DerivativeMemberDecoration:
case kIROp_DifferentiableTypeDictionaryDecoration:
case kIROp_PrimalInstDecoration:
case kIROp_DifferentialInstDecoration:
case kIROp_MixedDifferentialInstDecoration:
case kIROp_RecomputeBlockDecoration:
case kIROp_LoopCounterDecoration:
case kIROp_LoopCounterUpdateDecoration:
case kIROp_BackwardDerivativeDecoration:
case kIROp_BackwardDerivativeIntermediateTypeDecoration:
case kIROp_BackwardDerivativePropagateDecoration:
case kIROp_BackwardDerivativePrimalDecoration:
case kIROp_BackwardDerivativePrimalContextDecoration:
case kIROp_BackwardDerivativePrimalReturnDecoration:
case kIROp_AutoDiffOriginalValueDecoration:
case kIROp_UserDefinedBackwardDerivativeDecoration:
case kIROp_IntermediateContextFieldDifferentialTypeDecoration:
case kIROp_CheckpointIntermediateDecoration:
decor->removeAndDeallocate();
break;
case kIROp_AutoDiffBuiltinDecoration:
// Remove the builtin decoration, and also remove any export/keep-alive
// decorations.
shouldRemoveKeepAliveDecorations = true;
decor->removeAndDeallocate();
default:
break;
}
decor = next;
}
if (shouldRemoveKeepAliveDecorations)
{
for (auto decor = inst->getFirstDecoration(); decor; )
{
auto next = decor->getNextDecoration();
switch (decor->getOp())
{
case kIROp_ExportDecoration:
case kIROp_HLSLExportDecoration:
case kIROp_KeepAliveDecoration:
decor->removeAndDeallocate();
break;
}
decor = next;
}
}
if (inst->getFirstChild() != nullptr)
{
stripAutoDiffDecorationsFromChildren(inst);
}
}
}
void stripAutoDiffDecorations(IRModule* module)
{
stripAutoDiffDecorationsFromChildren(module->getModuleInst());
}
void stripTempDecorations(IRInst* inst)
{
for (auto decor = inst->getFirstDecoration(); decor; )
{
auto next = decor->getNextDecoration();
switch (decor->getOp())
{
case kIROp_DifferentialInstDecoration:
case kIROp_MixedDifferentialInstDecoration:
case kIROp_RecomputeBlockDecoration:
case kIROp_AutoDiffOriginalValueDecoration:
case kIROp_BackwardDerivativePrimalReturnDecoration:
case kIROp_PrimalValueStructKeyDecoration:
case kIROp_PrimalElementTypeDecoration:
decor->removeAndDeallocate();
break;
default:
break;
}
decor = next;
}
for (auto child : inst->getChildren())
{
stripTempDecorations(child);
}
}
struct StripNoDiffTypeAttributePass : InstPassBase
{
StripNoDiffTypeAttributePass(IRModule* module) :
InstPassBase(module)
{
}
void processModule()
{
processInstsOfType<IRAttributedType>(kIROp_AttributedType, [&](IRAttributedType* attrType)
{
if (attrType->getAllAttrs().getCount() == 1)
{
if (attrType->findAttr<IRNoDiffAttr>())
{
attrType->replaceUsesWith(attrType->getBaseType());
attrType->removeAndDeallocate();
}
}
});
}
};
void stripNoDiffTypeAttribute(IRModule* module)
{
StripNoDiffTypeAttributePass pass(module);
pass.processModule();
}
bool isDifferentiableType(DifferentiableTypeConformanceContext& context, IRInst* typeInst)
{
if (!typeInst)
return false;
if (context.isDifferentiableType((IRType*)typeInst))
return true;
// Look for equivalent types.
for (auto type : context.differentiableTypeWitnessDictionary)
{
if (isTypeEqual(type.key, (IRType*)typeInst))
{
context.differentiableTypeWitnessDictionary[(IRType*)typeInst] = type.value;
return true;
}
}
return false;
}
bool canTypeBeStored(IRInst* type)
{
if (!type)
return false;
if (as<IRBasicType>(type))
return true;
switch (type->getOp())
{
case kIROp_StructType:
case kIROp_OptionalType:
case kIROp_TupleType:
case kIROp_ArrayType:
case kIROp_DifferentialPairType:
case kIROp_DifferentialPairUserCodeType:
case kIROp_InterfaceType:
case kIROp_AssociatedType:
case kIROp_AnyValueType:
case kIROp_ClassType:
case kIROp_FloatType:
case kIROp_VectorType:
case kIROp_MatrixType:
case kIROp_BackwardDiffIntermediateContextType:
return true;
case kIROp_AttributedType:
return canTypeBeStored(type->getOperand(0));
default:
return false;
}
}
struct AutoDiffPass : public InstPassBase
{
DiagnosticSink* getSink()
{
return sink;
}
bool processModule()
{
// TODO(sai): Move this call.
forwardTranscriber.differentiableTypeConformanceContext.buildGlobalWitnessDictionary();
IRBuilder builderStorage(module);
IRBuilder* builder = &builderStorage;
// Process all ForwardDifferentiate and BackwardDifferentiate instructions by
// generating derivative code for the referenced function.
//
bool modified = processReferencedFunctions(builder);
return modified;
}
IRInst* processIntermediateContextTypeBase(IRBuilder* builder, IRInst* base)
{
if (auto spec = as<IRSpecialize>(base))
{
List<IRInst*> args;
auto subBase = processIntermediateContextTypeBase(builder, spec->getBase());
if (!subBase)
return nullptr;
for (UInt a = 0; a < spec->getArgCount(); a++)
args.add(spec->getArg(a));
auto actualType = builder->emitSpecializeInst(
builder->getTypeKind(),
subBase,
args.getCount(),
args.getBuffer());
return actualType;
}
else if (auto baseGeneric = as<IRGeneric>(base))
{
auto inner = findGenericReturnVal(baseGeneric);
if (auto typeDecor = inner->findDecoration<IRBackwardDerivativeIntermediateTypeDecoration>())
{
if (!isTypeFullyDifferentiated(typeDecor->getBackwardDerivativeIntermediateType()))
return nullptr;
return typeDecor->getBackwardDerivativeIntermediateType();
}
}
else if (auto func = as<IRFunc>(base))
{
if (auto typeDecor = func->findDecoration<IRBackwardDerivativeIntermediateTypeDecoration>())
{
if (!isTypeFullyDifferentiated(typeDecor->getBackwardDerivativeIntermediateType()))
return nullptr;
return typeDecor->getBackwardDerivativeIntermediateType();
}
}
else if (auto lookup = as<IRLookupWitnessMethod>(base))
{
auto key = lookup->getRequirementKey();
if (auto typeDecor = key->findDecoration<IRBackwardDerivativeIntermediateTypeDecoration>())
{
auto typeKey = typeDecor->getBackwardDerivativeIntermediateType();
auto typeLookup = builder->emitLookupInterfaceMethodInst(builder->getTypeKind(), lookup->getWitnessTable(), typeKey);
return typeLookup;
}
}
return nullptr;
}
bool lowerIntermediateContextType(IRBuilder* builder)
{
bool result = false;
OrderedHashSet<IRInst*> loweredIntermediateTypes;
// Replace all `BackwardDiffIntermediateContextType` insts with the struct type
// that we generated during backward diff pass.
for (;;)
{
bool changed = false;
processAllInsts([&](IRInst* inst)
{
switch (inst->getOp())
{
case kIROp_BackwardDiffIntermediateContextType:
{
auto differentiateInst = as<IRBackwardDiffIntermediateContextType>(inst);
auto baseFunc = differentiateInst->getOperand(0);
IRBuilder subBuilder = *builder;
subBuilder.setInsertBefore(inst);
auto type = processIntermediateContextTypeBase(&subBuilder, baseFunc);
if (type)
{
loweredIntermediateTypes.add(type);
inst->replaceUsesWith(type);
inst->removeAndDeallocate();
changed = true;
}
}
break;
default:
break;
}
});
result |= changed;
if (!changed)
break;
}
// Now we generate the differential type for the intermediate context type
// to allow higher order differentiation.
generateDifferentialImplementationForContextType(loweredIntermediateTypes);
return result;
}
// Utility function for topology sorting the intermediate context types.
bool isIntermediateContextTypeReadyForProcess(OrderedHashSet<IRInst*>& contextTypes, OrderedHashSet<IRInst*>& sortedSet, IRInst* t)
{
if (!contextTypes.contains(t))
return true;
switch (t->getOp())
{
case kIROp_StructType:
{
bool canAddNow = true;
for (auto f : as<IRStructType>(t)->getFields())
{
if (!isIntermediateContextTypeReadyForProcess(contextTypes, sortedSet, f->getFieldType()))
{
canAddNow = false;
break;
}
}
return canAddNow;
}
case kIROp_Specialize:
return isIntermediateContextTypeReadyForProcess(contextTypes, sortedSet, as<IRSpecialize>(t)->getBase());
case kIROp_Generic:
return isIntermediateContextTypeReadyForProcess(contextTypes, sortedSet, findGenericReturnVal(as<IRGeneric>(t)));
default:
return true;
}
}
struct IntermediateContextTypeDifferentialInfo
{
IRInst* diffType = nullptr;
IRInst* diffWitness = nullptr;
IRInst* diffDiffWitness = nullptr;
IRInst* zeroMethod = nullptr;
IRInst* addMethod = nullptr;
};
// Register the differential type for an intermediate context type to the derivative functions that uses the type.
void registerDiffContextType(
IRBuilder& builder,
IRDifferentiableTypeDictionaryDecoration* diffDecor,
OrderedDictionary<IRInst*, IntermediateContextTypeDifferentialInfo>& diffTypes,
IRInst* origType)
{
HashSet<IRInst*> registeredType;
for (auto entry : diffDecor->getChildren())
{
if (auto e = as<IRDifferentiableTypeDictionaryItem>(entry))
{
registeredType.add(e->getOperand(0));
}
}
// Use a work list to recursively walk through all sub fields of the struct type.
List<IRInst*> wlist;
wlist.add(origType);
for (Index i = 0; i < wlist.getCount(); i++)
{
auto t = wlist[i];
IntermediateContextTypeDifferentialInfo diffInfo;
if (!diffTypes.tryGetValue(t, diffInfo))
continue;
if (registeredType.add(t))
builder.addDifferentiableTypeEntry(diffDecor, t, diffInfo.diffWitness);
else
continue;
if (auto structType = as<IRStructType>(getResolvedInstForDecorations(t)))
{
for (auto f : structType->getFields())
{
wlist.add(f->getFieldType());
}
}
}
}
void generateDifferentialImplementationForContextType(OrderedHashSet<IRInst*>& contextTypes)
{
// First we are going to topology sort all intermediate context types.
OrderedHashSet<IRInst*> sortedContextTypes;
for (;;)
{
auto lastCount = sortedContextTypes.getCount();
for (auto t : contextTypes)
{
if (sortedContextTypes.contains(t))
continue;
// Have all dependent types been added yet?
if (isIntermediateContextTypeReadyForProcess(contextTypes, sortedContextTypes, t))
sortedContextTypes.add(t);
}
if (lastCount == sortedContextTypes.getCount())
break;
}
// After the types are sorted, we start to generate the differential type and IDifferentiable witnesses
// for them.
OrderedDictionary<IRInst*, IntermediateContextTypeDifferentialInfo> diffTypes;
IRBuilder builder(module);
for (auto t : sortedContextTypes)
{
if (t->getOp() == kIROp_Generic || t->getOp() == kIROp_StructType)
{
// For generics/struct types, we will generate a new generic/struct type representing the differntial.
SLANG_RELEASE_ASSERT(t->getParent() && t->getParent()->getOp() == kIROp_Module);
builder.setInsertBefore(t);
auto diffInfo = fillDifferentialTypeImplementation(diffTypes, t);
diffTypes[t] = diffInfo;
}
else if (auto specialize = as<IRSpecialize>(t))
{
// A specialize of a context type translates to a specialize of its differential type/witness.
IntermediateContextTypeDifferentialInfo baseInfo;
SLANG_RELEASE_ASSERT(diffTypes.tryGetValue(specialize->getBase(), baseInfo));
builder.setInsertBefore(t);
List<IRInst*> args;
for (UInt i = 0; i < specialize->getArgCount(); i++)
args.add(specialize->getArg(i));
IntermediateContextTypeDifferentialInfo info;
info.diffType = builder.emitSpecializeInst(
builder.getTypeKind(), baseInfo.diffType, (UInt)args.getCount(), args.getBuffer());
info.diffWitness = builder.emitSpecializeInst(
builder.getWitnessTableType(autodiffContext->differentiableInterfaceType),
baseInfo.diffWitness,
(UInt)args.getCount(),
args.getBuffer());
diffTypes[t] = info;
}
else
{
// If `t` is not a specialize, it'd better be processed by now.
// We currently don't support the `LookupInterfaceMethod` case, since it can't
// appear in a derivative function because we will only call the backward diff function without a intermediate-type
// via an interface.
SLANG_RELEASE_ASSERT(diffTypes.containsKey(t));
}
}
// Register the differential types into the conformance dictionaries of the functions that uses them.
for (auto t : diffTypes)
{
HashSet<IRFunc*> registeredFuncs;
for (auto use = t.key->firstUse; use; use = use->nextUse)
{
auto parentFunc = getParentFunc(use->getUser());
if (!parentFunc)
continue;
if (!registeredFuncs.add(parentFunc))
continue;
if (auto dictDecor = parentFunc->findDecoration<IRDifferentiableTypeDictionaryDecoration>())
{
registerDiffContextType(builder, dictDecor, diffTypes, t.key);
}
}
}
}
IntermediateContextTypeDifferentialInfo fillDifferentialTypeImplementationForStruct(
OrderedDictionary<IRInst*, IntermediateContextTypeDifferentialInfo>& diffTypes,
IRStructType* originalType,
IRStructType* diffType)
{
IntermediateContextTypeDifferentialInfo result;
result.diffType = diffType;
IRBuilder builder(diffType);
builder.setInsertInto(diffType);
// Generate the fields for all differentiable members of the original struct type.
struct FieldInfo
{
IRStructField* field;
IRInst* witness;
};
List<FieldInfo> diffFields;
for (auto field : originalType->getFields())
{
IRInst* diffFieldWitness = nullptr;
if (auto diffDecor = field->findDecoration<IRIntermediateContextFieldDifferentialTypeDecoration>())
{
diffFieldWitness = diffDecor->getDifferentialWitness();
}
else
{
IntermediateContextTypeDifferentialInfo diffFieldTypeInfo;
diffTypes.tryGetValue(field->getFieldType(), diffFieldTypeInfo);
diffFieldWitness = diffFieldTypeInfo.diffWitness;
}
if (diffFieldWitness)
{
FieldInfo info;
IRBuilder keyBuilder = builder;
keyBuilder.setInsertBefore(maybeFindOuterGeneric(originalType));
auto diffKey = keyBuilder.createStructKey();
auto diffFieldType = _lookupWitness(&keyBuilder, diffFieldWitness, autodiffContext->differentialAssocTypeStructKey, builder.getTypeKind());
info.field = builder.createStructField(diffType, diffKey, (IRType*)diffFieldType);
info.witness = diffFieldWitness;
builder.addDecoration(field->getKey(), kIROp_DerivativeMemberDecoration, diffKey);
builder.addDecoration(diffKey, kIROp_DerivativeMemberDecoration, diffKey);
diffFields.add(info);
}
}
builder.setInsertAfter(diffType);
// Implement `dadd` and `dzero` methods.
IRInst* zeroMethod = nullptr;
{
auto zeroMethodType = builder.getFuncType(List<IRType*>(), diffType);
zeroMethod = builder.createFunc();
zeroMethod->setFullType(zeroMethodType);
result.zeroMethod = zeroMethod;
builder.setInsertInto(zeroMethod);
builder.emitBlock();
List<IRInst*> fieldVals;
for (auto info : diffFields)
{
auto innerZeroMethod = _lookupWitness(
&builder,
info.witness,
autodiffContext->zeroMethodStructKey,
autodiffContext->zeroMethodType);
IRInst* val = builder.emitCallInst(info.field->getFieldType(), innerZeroMethod, 0, nullptr);
fieldVals.add(val);
}
builder.emitReturn(builder.emitMakeStruct(diffType, fieldVals));
}
builder.setInsertAfter(zeroMethod);
IRInst* addMethod = nullptr;
{
List<IRType*> paramTypes;
paramTypes.add(diffType);
paramTypes.add(diffType);
auto addMethodType = builder.getFuncType(List<IRType*>(), diffType);
addMethod = builder.createFunc();
result.addMethod = addMethod;
addMethod->setFullType(addMethodType);
builder.setInsertInto(addMethod);
builder.emitBlock();
auto param1 = builder.emitParam(diffType);
auto param2 = builder.emitParam(diffType);
List<IRInst*> fieldVals;
for (auto info : diffFields)
{
auto innerAddMethod = _lookupWitness(
&builder,
info.witness,
autodiffContext->addMethodStructKey,
autodiffContext->addMethodType);
IRInst* args[2] = {
builder.emitFieldExtract(info.field->getFieldType(), param1, info.field->getKey()),
builder.emitFieldExtract(info.field->getFieldType(), param2, info.field->getKey()),
};
IRInst* val = builder.emitCallInst(info.field->getFieldType(), innerAddMethod, 2, args);
fieldVals.add(val);
}
builder.emitReturn(builder.emitMakeStruct(diffType, fieldVals));
}
builder.setInsertAfter(addMethod);
auto diffTypeIsDiffWitness = builder.createWitnessTable(autodiffContext->differentiableInterfaceType, diffType);
auto origTypeIsDiffWitness = builder.createWitnessTable(autodiffContext->differentiableInterfaceType, originalType);
result.diffWitness = origTypeIsDiffWitness;
builder.createWitnessTableEntry(origTypeIsDiffWitness, autodiffContext->differentialAssocTypeStructKey, diffType);
builder.createWitnessTableEntry(origTypeIsDiffWitness, autodiffContext->differentialAssocTypeWitnessStructKey, diffTypeIsDiffWitness);
builder.createWitnessTableEntry(origTypeIsDiffWitness, autodiffContext->zeroMethodStructKey, zeroMethod);
builder.createWitnessTableEntry(origTypeIsDiffWitness, autodiffContext->addMethodStructKey, addMethod);
builder.createWitnessTableEntry(diffTypeIsDiffWitness, autodiffContext->differentialAssocTypeStructKey, diffType);
builder.createWitnessTableEntry(diffTypeIsDiffWitness, autodiffContext->differentialAssocTypeWitnessStructKey, diffTypeIsDiffWitness);
builder.createWitnessTableEntry(diffTypeIsDiffWitness, autodiffContext->zeroMethodStructKey, zeroMethod);
builder.createWitnessTableEntry(diffTypeIsDiffWitness, autodiffContext->addMethodStructKey, addMethod);
return result;
}
IntermediateContextTypeDifferentialInfo fillDifferentialTypeImplementation(
OrderedDictionary<IRInst*, IntermediateContextTypeDifferentialInfo>& diffTypes,
IRInst* originalType)
{
if (originalType->getOp() == kIROp_StructType)
{
IRBuilder builder(originalType);
builder.setInsertBefore(originalType);
auto diffType = builder.createStructType();
return fillDifferentialTypeImplementationForStruct(
diffTypes,
as<IRStructType>(originalType),
as<IRStructType>(diffType));
}
else if (auto genType = as<IRGeneric>(originalType))
{
// For generics, we process the inner struct type as normal,
// and then hoist the additional insts we created from the generic.
auto structType = as<IRStructType>(findGenericReturnVal(genType));
SLANG_RELEASE_ASSERT(structType);
auto innerResult = fillDifferentialTypeImplementation(diffTypes, structType);
IRBuilder builder(originalType);
builder.setInsertBefore(originalType);
// Now we hoist the new values from the generic to form their independent generics.
IRInst* specInst = nullptr;
IntermediateContextTypeDifferentialInfo result;
if (innerResult.diffType)
result.diffType = hoistValueFromGeneric(builder, innerResult.diffType, specInst, true);
if (innerResult.zeroMethod)
{
hoistValueFromGeneric(builder, innerResult.zeroMethod->getFullType(), specInst, true);
result.zeroMethod = hoistValueFromGeneric(builder, innerResult.zeroMethod, specInst, true);
}
if (innerResult.addMethod)
{
hoistValueFromGeneric(builder, innerResult.addMethod->getFullType(), specInst, true);
result.addMethod = hoistValueFromGeneric(builder, innerResult.addMethod, specInst, true);
}
if (innerResult.diffDiffWitness)
result.diffDiffWitness = hoistValueFromGeneric(builder, innerResult.diffDiffWitness, specInst, true);
if (innerResult.diffWitness)
{
builder.setInsertBefore(innerResult.diffWitness);
List<IRInst*> args;
for (auto param : genType->getParams())
args.add(param);
as<IRWitnessTable>(innerResult.diffWitness)->setConcreteType((IRType*)builder.emitSpecializeInst(
builder.getTypeKind(), originalType, (UInt)args.getCount(), args.getBuffer()));
result.diffWitness = hoistValueFromGeneric(builder, innerResult.diffWitness, specInst, true);
}
return result;
}
return IntermediateContextTypeDifferentialInfo();
}
HashSet<IRInst*> fullyDifferentiatedInsts;
// Returns true if `type` is fully differentiated, i.e. does not have
// any unmaterialized intermediate context types.
bool isTypeFullyDifferentiated(IRInst* type)
{
if (fullyDifferentiatedInsts.contains(type))
return true;
if (type->getOp() == kIROp_BackwardDiffIntermediateContextType)
return false;
if (auto structType = as<IRStructType>(type))
{
for (auto f : structType->getFields())
if (!isTypeFullyDifferentiated(f->getFieldType()))
return false;
}
else if (auto genType = as<IRGeneric>(type))
{
bool result = isTypeFullyDifferentiated(findGenericReturnVal(genType));
if (result)
fullyDifferentiatedInsts.add(genType);
return result;
}
switch (type->getOp())
{
case kIROp_ArrayType:
case kIROp_UnsizedArrayType:
case kIROp_InOutType:
case kIROp_OutType:
case kIROp_PtrType:
case kIROp_DifferentialPairType:
case kIROp_DifferentialPairUserCodeType:
case kIROp_AttributedType:
for (UInt i = 0; i < type->getOperandCount(); i++)
if (!isTypeFullyDifferentiated(type->getOperand(i)))
return false;
[[fallthrough]];
default:
fullyDifferentiatedInsts.add(type);
return true;
}
}
// Returns true if `func` is fully differentiated, i.e. does not have
// any differentiate insts.
bool isFullyDifferentiated(IRFunc* func)
{
if (fullyDifferentiatedInsts.contains(func))
return true;
for (auto block : func->getBlocks())
{
for (auto ii : block->getChildren())
{
switch (ii->getOp())
{
case kIROp_ForwardDifferentiate:
case kIROp_BackwardDifferentiate:
case kIROp_BackwardDifferentiatePrimal:
case kIROp_BackwardDifferentiatePropagate:
case kIROp_BackwardDiffIntermediateContextType:
return false;
}
if (ii->getDataType() && !isTypeFullyDifferentiated(ii->getDataType()))
return false;
}
}
fullyDifferentiatedInsts.add(func);
return true;
}
// Process all differentiate calls, and recursively generate code for forward and backward
// derivative functions.
//
bool processReferencedFunctions(IRBuilder* builder)
{
fullyDifferentiatedInsts.clear();
bool hasChanges = false;
for (;;)
{
bool changed = false;
List<IRInst*> autoDiffWorkList;
// Collect all `ForwardDifferentiate`/`BackwardDifferentiate` insts from the call graph.
processAllReachableInsts([&](IRInst* inst)
{
switch (inst->getOp())
{
case kIROp_ForwardDifferentiate:
case kIROp_BackwardDifferentiate:
case kIROp_BackwardDifferentiatePrimal:
case kIROp_BackwardDifferentiatePropagate:
case kIROp_BackwardDiffIntermediateContextType:
// Only process now if the operand is a materialized function.
switch (inst->getOperand(0)->getOp())
{
case kIROp_Func:
case kIROp_Specialize:
case kIROp_LookupWitness:
if (auto innerFunc = as<IRFunc>(getResolvedInstForDecorations(inst->getOperand(0))))
{
// Skip functions whose body still has a differentiate inst (higher order func).
if (!isFullyDifferentiated(innerFunc))
{
addToWorkList(inst->getOperand(0));
return;
}
}
autoDiffWorkList.add(inst);
break;
default:
autoDiffWorkList.add(inst->getOperand(0));
break;
}
break;
case kIROp_PrimalSubstitute:
// Explicit primal subst operator is not yet supported.
SLANG_UNIMPLEMENTED_X("explicit primal_subst operator.");
default:
for (UInt i = 0; i < inst->getOperandCount(); i++)
{
auto operand = inst->getOperand(i);
addToWorkList(operand);
}
break;
}
});
// Process collected differentiate insts and replace them with placeholders for
// differentiated functions.
for (Index i = 0; i < autoDiffWorkList.getCount(); i++)
{
auto differentiateInst = autoDiffWorkList[i];
IRInst* diffFunc = nullptr;
IRBuilder subBuilder(*builder);
subBuilder.setInsertBefore(differentiateInst);
switch (differentiateInst->getOp())
{
case kIROp_ForwardDifferentiate:
{
auto baseFunc = as<IRForwardDifferentiate>(differentiateInst)->getBaseFn();
diffFunc = forwardTranscriber.transcribe(&subBuilder, baseFunc);
}
break;
case kIROp_BackwardDifferentiatePrimal:
{
auto baseFunc = differentiateInst->getOperand(0);
diffFunc = backwardPrimalTranscriber.transcribe(&subBuilder, baseFunc);
}
break;
case kIROp_BackwardDifferentiatePropagate:
{
auto baseFunc = differentiateInst->getOperand(0);
diffFunc = backwardPropagateTranscriber.transcribe(&subBuilder, baseFunc);
}
break;
case kIROp_BackwardDifferentiate:
{
auto baseFunc = differentiateInst->getOperand(0);
diffFunc = backwardTranscriber.transcribe(&subBuilder, baseFunc);
}
break;
default:
break;
}
if (diffFunc)
{
SLANG_ASSERT(diffFunc);
differentiateInst->replaceUsesWith(diffFunc);
differentiateInst->removeAndDeallocate();
changed = true;
}
}
// Run transcription logic to generate the body of forward/backward derivatives functions.
// While doing so, we may discover new functions to differentiate, so we keep running until
// the worklist goes dry.
List<IRFunc*> autodiffCleanupList;
while (autodiffContext->followUpFunctionsToTranscribe.getCount() != 0)
{
changed = true;
auto followUpWorkList = _Move(autodiffContext->followUpFunctionsToTranscribe);
for (auto task : followUpWorkList)
{
auto diffFunc = as<IRFunc>(task.resultFunc);
SLANG_ASSERT(diffFunc);
// We're running in to some situations where the follow-up task
// has already been completed (diffFunc has been generated, processed,
// and deallocated). Skip over these for now.
//
if (!diffFunc->getDataType())
continue;
auto primalFunc = as<IRFunc>(task.originalFunc);
SLANG_ASSERT(primalFunc);
switch (task.type)
{
case FuncBodyTranscriptionTaskType::Forward:
forwardTranscriber.transcribeFunc(builder, primalFunc, diffFunc);
break;
case FuncBodyTranscriptionTaskType::BackwardPrimal:
backwardPrimalTranscriber.transcribeFunc(builder, primalFunc, diffFunc);
break;
case FuncBodyTranscriptionTaskType::BackwardPropagate:
backwardPropagateTranscriber.transcribeFunc(builder, primalFunc, diffFunc);
break;
default:
break;
}
autodiffCleanupList.add(diffFunc);
}
}
// Get rid of block-level decorations that are used to keep track of
// different block types. These don't work well with the IR simplification
// passes since they don't expect decorations in blocks.
//
for (auto diffFunc : autodiffCleanupList)
stripTempDecorations(diffFunc);
autodiffCleanupList.clear();
#if _DEBUG
validateIRModule(module, sink);
#endif
if (!changed)
break;
if (lowerIntermediateContextType(builder))
{
hasChanges = true;
}
// We have done transcribing the functions, now it is time to demote all DifferentialPair types
// and their operations down to DifferentialPairUserCodeType and *UserCode operations so they
// can be treated just like normal types with no special semantics in future processing, and won't
// be confused with the semantics of a DifferentialPair type during future autodiff code gen.
rewriteDifferentialPairToUserCode(module);
hasChanges |= changed;
}
return hasChanges;
}
IRStringLit* getDerivativeFuncName(IRInst* func, const char* postFix)
{
IRBuilder builder(autodiffContext->moduleInst);
builder.setInsertBefore(func);
IRStringLit* name = nullptr;
if (auto linkageDecoration = func->findDecoration<IRLinkageDecoration>())
{
name = builder.getStringValue((String(linkageDecoration->getMangledName()) + postFix).getUnownedSlice());
}
else if (auto namehintDecoration = func->findDecoration<IRNameHintDecoration>())
{
name = builder.getStringValue((String(namehintDecoration->getName()) + postFix).getUnownedSlice());
}
return name;
}
IRStringLit* getForwardDerivativeFuncName(IRInst* func)
{
return getDerivativeFuncName(func, "_fwd_diff");
}
IRStringLit* getBackwardDerivativeFuncName(IRInst* func)
{
return getDerivativeFuncName(func, "_bwd_diff");
}
AutoDiffPass(AutoDiffSharedContext* context, DiagnosticSink* sink) :
InstPassBase(context->moduleInst->getModule()),
sink(sink),
forwardTranscriber(context, sink),
backwardPrimalTranscriber(context, sink),
backwardPropagateTranscriber(context, sink),
backwardTranscriber(context, sink),
pairBuilderStorage(context),
autodiffContext(context)
{
// We start by initializing our shared IR building state,
// since we will re-use that state for any code we
// generate along the way.
//
forwardTranscriber.pairBuilder = &pairBuilderStorage;
backwardPrimalTranscriber.pairBuilder = &pairBuilderStorage;
backwardPropagateTranscriber.pairBuilder = &pairBuilderStorage;
backwardTranscriber.pairBuilder = &pairBuilderStorage;
// Make the transcribers available to all sub passes via shared context.
context->transcriberSet.primalTranscriber = &backwardPrimalTranscriber;
context->transcriberSet.propagateTranscriber = &backwardPropagateTranscriber;
context->transcriberSet.forwardTranscriber = &forwardTranscriber;
context->transcriberSet.backwardTranscriber = &backwardTranscriber;
}
protected:
// A transcriber object that handles the main job of
// processing instructions while maintaining state.
//
ForwardDiffTranscriber forwardTranscriber;
BackwardDiffPrimalTranscriber backwardPrimalTranscriber;
BackwardDiffPropagateTranscriber backwardPropagateTranscriber;
BackwardDiffTranscriber backwardTranscriber;
// Diagnostic object from the compile request for
// error messages.
DiagnosticSink* sink;
// Shared context.
AutoDiffSharedContext* autodiffContext;
// Builder for dealing with differential pair types.
DifferentialPairTypeBuilder pairBuilderStorage;
};
void checkAutodiffPatterns(
TargetProgram* target,
IRModule* module,
DiagnosticSink* sink)
{
SLANG_UNUSED(target);
enum SideEffectBehavior
{
Warn = 0,
Allow = 1,
};
// For now, we have only 1 check to see if methods that have side-effects
// are marked with prefer-recompute
//
for (auto inst : module->getGlobalInsts())
{
if (auto func = as<IRFunc>(inst))
{
if (func->sourceLoc.isValid() && // Don't diagnose for synthesized functions
func->findDecoration<IRPreferRecomputeDecoration>())
{
// If we don't have any side-effect behavior, we should warn (note: read-none is a stronger
// guarantee than no-side-effect)
//
if (func->findDecoration<IRNoSideEffectDecoration>() ||
func->findDecoration<IRReadNoneDecoration>())
continue;
auto preferRecomputeDecor = func->findDecoration<IRPreferRecomputeDecoration>();
auto sideEffectBehavior = as<IRIntLit>(preferRecomputeDecor->getOperand(0))->getValue();
if (sideEffectBehavior == SideEffectBehavior::Allow)
continue;
// Find function name. (don't diagnose on nameless functions)
if (auto nameHint = func->findDecoration<IRNameHintDecoration>())
{
sink->diagnose(func, Diagnostics::potentialIssuesWithPreferRecomputeOnSideEffectMethod, nameHint->getName());
}
}
}
}
}
bool processAutodiffCalls(
TargetProgram* target,
IRModule* module,
DiagnosticSink* sink,
IRAutodiffPassOptions const&)
{
SLANG_PROFILE;
bool modified = false;
// Create shared context for all auto-diff related passes
AutoDiffSharedContext autodiffContext(target, module->getModuleInst());
AutoDiffPass pass(&autodiffContext, sink);
modified |= pass.processModule();
return modified;
}
struct RemoveDetachInstsPass : InstPassBase
{
RemoveDetachInstsPass(IRModule* module) :
InstPassBase(module)
{
}
void processModule()
{
processInstsOfType<IRDetachDerivative>(kIROp_DetachDerivative, [&](IRDetachDerivative* detach)
{
detach->replaceUsesWith(detach->getBase());
});
}
};
void removeDetachInsts(IRModule* module)
{
RemoveDetachInstsPass pass(module);
pass.processModule();
}
struct LowerNullCheckPass : InstPassBase
{
LowerNullCheckPass(IRModule* module, AutoDiffSharedContext* context) :
InstPassBase(module), context(context)
{
}
void processModule()
{
List<IRInst*> nullCheckInsts;
processInstsOfType<IRIsDifferentialNull>(kIROp_IsDifferentialNull, [&](IRIsDifferentialNull* isDiffNullInst)
{
IRBuilder builder(module);
builder.setInsertBefore(isDiffNullInst);
// Extract existential type from the operand.
auto operand = isDiffNullInst->getBase();
auto operandConcreteWitness = builder.emitExtractExistentialWitnessTable(operand);
auto witnessID = builder.emitGetSequentialIDInst(operandConcreteWitness);
auto nullDiffWitnessTable = context->nullDifferentialWitness;
auto nullDiffWitnessID = builder.emitGetSequentialIDInst(nullDiffWitnessTable);
// Compare the concrete type with the null differential witness table.
auto isDiffNull = builder.emitEql(witnessID, nullDiffWitnessID);
isDiffNullInst->replaceUsesWith(isDiffNull);
nullCheckInsts.add(isDiffNullInst);
});
for (auto nullCheckInst : nullCheckInsts)
{
nullCheckInst->removeAndDeallocate();
}
}
private:
AutoDiffSharedContext* context;
};
void lowerNullCheckInsts(IRModule* module, AutoDiffSharedContext* context)
{
LowerNullCheckPass pass(module, context);
pass.processModule();
}
void releaseNullDifferentialType(AutoDiffSharedContext* context)
{
if (auto nullStruct = context->nullDifferentialStructType)
{
if (auto keepAliveDecoration = nullStruct->findDecoration<IRKeepAliveDecoration>())
keepAliveDecoration->removeAndDeallocate();
if (auto exportDecoration = nullStruct->findDecoration<IRHLSLExportDecoration>())
exportDecoration->removeAndDeallocate();
}
if (auto nullWitness = context->nullDifferentialWitness)
{
if (auto keepAliveDecoration = nullWitness->findDecoration<IRKeepAliveDecoration>())
keepAliveDecoration->removeAndDeallocate();
if (auto exportDecoration = nullWitness->findDecoration<IRHLSLExportDecoration>())
exportDecoration->removeAndDeallocate();
}
}
bool finalizeAutoDiffPass(TargetProgram* target, IRModule* module)
{
bool modified = false;
// Create shared context for all auto-diff related passes
AutoDiffSharedContext autodiffContext(target, module->getModuleInst());
// Replaces IRDifferentialPairType with an auto-generated struct,
// IRDifferentialPairGetDifferential with 'differential' field access,
// IRDifferentialPairGetPrimal with 'primal' field access, and
// IRMakeDifferentialPair with an IRMakeStruct.
//
modified |= processPairTypes(&autodiffContext);
removeDetachInsts(module);
lowerNullCheckInsts(module, &autodiffContext);
stripNoDiffTypeAttribute(module);
stripAutoDiffDecorations(module);
return modified;
}
UIndex addPhiOutputArg(IRBuilder* builder, IRBlock* block, IRInst*& inoutTerminatorInst, IRInst* arg)
{
SLANG_RELEASE_ASSERT(as<IRUnconditionalBranch>(block->getTerminator()));
auto branchInst = as<IRUnconditionalBranch>(block->getTerminator());
List<IRInst*> phiArgs;
for (UIndex ii = 0; ii < branchInst->getArgCount(); ii++)
phiArgs.add(branchInst->getArg(ii));
phiArgs.add(arg);
builder->setInsertInto(block);
switch (branchInst->getOp())
{
case kIROp_unconditionalBranch:
inoutTerminatorInst = builder->emitBranch(
branchInst->getTargetBlock(), phiArgs.getCount(), phiArgs.getBuffer());
break;
case kIROp_loop:
{
auto newLoop = builder->emitLoop(
as<IRLoop>(branchInst)->getTargetBlock(),
as<IRLoop>(branchInst)->getBreakBlock(),
as<IRLoop>(branchInst)->getContinueBlock(),
phiArgs.getCount(),
phiArgs.getBuffer());
branchInst->transferDecorationsTo(newLoop);
branchInst->replaceUsesWith(newLoop);
inoutTerminatorInst = newLoop;
}
break;
default:
SLANG_UNEXPECTED("Unexpected branch-type for phi replacement");
}
branchInst->removeAndDeallocate();
return phiArgs.getCount() - 1;
}
bool isDifferentialOrRecomputeBlock(IRBlock* block)
{
if (!block)
return false;
for (auto decor : block->getDecorations())
{
switch (decor->getOp())
{
case kIROp_DifferentialInstDecoration:
case kIROp_RecomputeBlockDecoration:
return true;
default:
break;
}
}
return false;
}
IRUse* findUniqueStoredVal(IRVar* var)
{
if (isDerivativeContextVar(var))
{
IRUse* primalCallUse = nullptr;
for (auto use = var->firstUse; use; use = use->nextUse)
{
if (const auto callInst = as<IRCall>(use->getUser()))
{
// Ignore uses from differential blocks.
if (callInst->getParent()->findDecoration<IRDifferentialInstDecoration>())
continue;
// Should not see more than one IRCall. If we do
// we'll need to pick the primal call.
//
SLANG_RELEASE_ASSERT(!primalCallUse);
primalCallUse = use;
}
}
return primalCallUse;
}
else
{
IRUse* storeUse = nullptr;
for (auto use = var->firstUse; use; use = use->nextUse)
{
if (const auto storeInst = as<IRStore>(use->getUser()))
{
// Ignore uses from differential blocks.
if (storeInst->getParent()->findDecoration<IRDifferentialInstDecoration>())
continue;
// Should not see more than one IRStore
SLANG_RELEASE_ASSERT(!storeUse);
storeUse = use;
}
}
return storeUse;
}
}
// Given a local var that is supposed to have a unique write, find the last inst
// that writes to it. Note: if var is intended for an inout argument, it will
// have exactly one store that sets its initial value and one call that writes
// the final value to it, this method will return the call inst for this case.
IRUse* findLatestUniqueWriteUse(IRVar* var)
{
IRUse* callUse = nullptr;
for (auto use = var->firstUse; use; use = use->nextUse)
{
if (const auto callInst = as<IRCall>(use->getUser()))
{
// Ignore uses from differential blocks.
if (callInst->getParent()->findDecoration<IRDifferentialInstDecoration>())
continue;
SLANG_RELEASE_ASSERT(!callUse);
callUse = use;
}
}
if (callUse)
return callUse;
// If no unique call found, try to look for a store.
return findUniqueStoredVal(var);
}
// Given a local var that is supposed to have a unique write, find the last inst
// that writes to it. Note: if var is intended for an inout argument, it will
// have exactly one store that sets its initial value and one call that writes
// the final value to it, this method will return the store inst for this case.
IRUse* findEarliestUniqueWriteUse(IRVar* var)
{
IRUse* storeUse = findUniqueStoredVal(var);
if (storeUse)
return storeUse;
// If no unique store found, try to look for a call.
for (auto use = var->firstUse; use; use = use->nextUse)
{
if (const auto callInst = as<IRCall>(use->getUser()))
{
// Ignore uses from differential blocks.
if (callInst->getParent()->findDecoration<IRDifferentialInstDecoration>())
continue;
SLANG_RELEASE_ASSERT(!storeUse);
storeUse = use;
}
}
return storeUse;
}
bool isDerivativeContextVar(IRVar* var)
{
return var->findDecoration<IRBackwardDerivativePrimalContextDecoration>();
}
bool isDiffInst(IRInst* inst)
{
if (inst->findDecoration<IRDifferentialInstDecoration>() ||
inst->findDecoration<IRMixedDifferentialInstDecoration>())
return true;
if (auto block = as<IRBlock>(inst->getParent()))
return isDiffInst(block);
return false;
}
}
|