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
|
// slang-ir-diff-jvp.cpp
#include "slang-ir-diff-jvp.h"
#include "slang-ir.h"
#include "slang-ir-insts.h"
#include "slang-ir-clone.h"
#include "slang-ir-dce.h"
namespace Slang
{
template<typename P, typename D>
struct Pair
{
P primal;
D differential;
Pair(P primal, D differential) : primal(primal), differential(differential)
{}
};
typedef Pair<IRInst*, IRInst*> InstPair;
struct DifferentiableTypeConformanceContext
{
Dictionary<IRInst*, IRInst*> witnessTableMap;
IRInst* inst = nullptr;
// A reference to the builtin IDifferentiable interface type.
// We use this to look up all the other types (and type exprs)
// that conform to a base type.
//
IRInterfaceType* differentiableInterfaceType = nullptr;
// The struct key for the 'Differential' associated type
// defined inside IDifferential. We use this to lookup the differential
// type in the conformance table associated with the concrete type.
//
IRStructKey* differentialAssocTypeStructKey = nullptr;
// Modules that don't use differentiable types
// won't have the IDifferentiable interface type available.
// Set to false to indicate that we are uninitialized.
//
bool isInterfaceAvailable = false;
// For handling generic blocks, we use a parent pointer to allow
// looking up types in all relevant scopes.
DifferentiableTypeConformanceContext* parent = nullptr;
DifferentiableTypeConformanceContext(DifferentiableTypeConformanceContext* parent, IRInst* inst) : parent(parent), inst(inst)
{
if (parent)
{
differentiableInterfaceType = parent->differentiableInterfaceType;
differentialAssocTypeStructKey = parent->differentialAssocTypeStructKey;
isInterfaceAvailable = parent->isInterfaceAvailable;
}
else
{
differentiableInterfaceType = as<IRInterfaceType>(findDifferentiableInterface());
if (differentiableInterfaceType)
{
differentialAssocTypeStructKey = findDifferentialTypeStructKey();
if (differentialAssocTypeStructKey)
isInterfaceAvailable = true;
}
}
if (isInterfaceAvailable)
{
// Load all witness tables corresponding to the IDifferentiable interface.
loadWitnessTablesForInterface(differentiableInterfaceType);
}
}
DifferentiableTypeConformanceContext(IRInst* inst) :
DifferentiableTypeConformanceContext(nullptr, inst)
{}
// Lookup a witness table for the concreteType. One should exist if concreteType
// inherits (successfully) from IDifferentiable.
//
IRInst* lookUpConformanceForType(IRInst* type)
{
SLANG_ASSERT(isInterfaceAvailable);
if (witnessTableMap.ContainsKey(type))
return witnessTableMap[type];
else if (parent)
return parent->lookUpConformanceForType(type);
else
return nullptr;
}
// Lookup and return the 'Differential' type declared in the concrete type
// in order to conform to the IDifferentiable interface.
// Note that inside a generic block, this will be a witness table lookup instruction
// that gets resolved during the specialization pass.
//
IRInst* getDifferentialForType(IRBuilder* builder, IRType* origType)
{
SLANG_ASSERT(isInterfaceAvailable);
if (auto conformance = lookUpConformanceForType(origType))
{
if (auto witnessTable = as<IRWitnessTable>(conformance))
{
for (auto entry : witnessTable->getEntries())
{
if (entry->getRequirementKey() == differentialAssocTypeStructKey)
return as<IRType>(entry->getSatisfyingVal());
}
}
else if (auto witnessTableParam = as<IRParam>(conformance))
{
return builder->emitLookupInterfaceMethodInst(
builder->getTypeKind(),
witnessTableParam,
differentialAssocTypeStructKey);
}
}
return nullptr;
}
private:
IRInst* findDifferentiableInterface()
{
if (auto module = as<IRModuleInst>(inst))
{
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 (globalInst->getOp() == kIROp_InterfaceType &&
as<IRInterfaceType>(globalInst)->findDecoration<IRNameHintDecoration>()->getName() == "IDifferentiable")
{
return globalInst;
}
}
}
return nullptr;
}
IRStructKey* findDifferentialTypeStructKey()
{
if (as<IRModuleInst>(inst) && differentiableInterfaceType)
{
// Assume for now that IDifferentiable has exactly one field: the 'Differential' associated type.
SLANG_ASSERT(differentiableInterfaceType->getOperandCount() == 1);
if (auto entry = as<IRInterfaceRequirementEntry>(differentiableInterfaceType->getOperand(0)))
return as<IRStructKey>(entry->getRequirementKey());
else
{
SLANG_UNEXPECTED("IDifferentiable interface entry unexpected type");
}
}
return nullptr;
}
void loadWitnessTablesForInterface(IRInst* interfaceType)
{
if (auto module = as<IRModuleInst>(inst))
{
for (auto globalInst : module->getGlobalInsts())
{
if (globalInst->getOp() == kIROp_WitnessTable &&
cast<IRWitnessTableType>(globalInst->getDataType())->getConformanceType() ==
interfaceType)
{
// TODO: Can we have multiple conformances for the same pair of types?
// TODO: Can type instrs be duplicated (i.e. two different float types)? And if they are duplicated, can
// we supply the dictionary with a custom equality rule that uses 'type1->equals(type2)'
witnessTableMap.Add(as<IRWitnessTable>(globalInst)->getConcreteType(), globalInst);
}
}
}
else if (auto generic = as<IRGeneric>(inst))
{
List<IRParam*> typeParams;
auto genericParam = generic->getFirstParam();
while (genericParam)
{
if (as<IRTypeType>(genericParam->getDataType()))
{
typeParams.add(genericParam);
}
else
break;
genericParam = genericParam->getNextParam();
}
UCount tableIndex = 0;
while (genericParam)
{
SLANG_ASSERT(!as<IRTypeType>(genericParam->getDataType()));
if (auto witnessTableType = as<IRWitnessTableType>(genericParam->getDataType()))
{
if (witnessTableType->getConformanceType() == differentiableInterfaceType)
witnessTableMap.Add(typeParams[tableIndex], genericParam);
}
else
break;
tableIndex += 1;
genericParam = genericParam->getNextParam();
}
}
}
};
struct DifferentialPairTypeBuilder
{
DifferentialPairTypeBuilder(DifferentiableTypeConformanceContext* diffConformanceContext) :
diffConformanceContext(diffConformanceContext)
{}
IRInst* emitPrimalFieldAccess(IRBuilder* builder, IRInst* baseInst)
{
if (auto basePairStructType = as<IRStructType>(baseInst->getDataType()))
{
auto primalField = as<IRStructField>(basePairStructType->getFirstChild());
SLANG_ASSERT(primalField);
return as<IRFieldExtract>(builder->emitFieldExtract(
primalField->getFieldType(),
baseInst,
primalField->getKey()
));
}
else if (auto ptrType = as<IRPtrTypeBase>(baseInst->getDataType()))
{
if (auto pairStructType = as<IRStructType>(ptrType->getValueType()))
{
auto primalField = as<IRStructField>(pairStructType->getFirstChild());
SLANG_ASSERT(primalField);
return as<IRFieldAddress>(builder->emitFieldAddress(
builder->getPtrType(primalField->getFieldType()),
baseInst,
primalField->getKey()
));
}
}
else
{
SLANG_UNREACHABLE("basePairType must be an IRStructType or PtrType<IRStructType>");
}
return nullptr;
}
IRInst* emitDiffFieldAccess(IRBuilder* builder, IRInst* baseInst)
{
if (auto basePairStructType = as<IRStructType>(baseInst->getDataType()))
{
auto diffField = as<IRStructField>(basePairStructType->getFirstChild()->getNextInst());
SLANG_ASSERT(diffField);
return as<IRFieldExtract>(builder->emitFieldExtract(
diffField->getFieldType(),
baseInst,
diffField->getKey()
));
}
else if (auto ptrType = as<IRPtrTypeBase>(baseInst->getDataType()))
{
if (auto pairStructType = as<IRStructType>(ptrType->getValueType()))
{
auto diffField = as<IRStructField>(pairStructType->getFirstChild()->getNextInst());
SLANG_ASSERT(diffField);
return as<IRFieldAddress>(builder->emitFieldAddress(
builder->getPtrType(diffField->getFieldType()),
baseInst,
diffField->getKey()
));
}
}
else
{
SLANG_UNREACHABLE("basePairType must be an IRStructType or PtrType<IRStructType>");
}
return nullptr;
}
IRStructType* _createDiffPairType(IRBuilder* builder, IRType* origBaseType)
{
if (auto diffBaseType = diffConformanceContext->getDifferentialForType(builder, origBaseType))
{
auto diffPairType = builder->createStructType();
// Create a keys for the primal and differential fields.
IRStructKey* origKey = builder->createStructKey();
builder->addNameHintDecoration(origKey, UnownedTerminatedStringSlice("primal"));
builder->createStructField(diffPairType, origKey, origBaseType);
IRStructKey* diffKey = builder->createStructKey();
builder->addNameHintDecoration(diffKey, UnownedTerminatedStringSlice("differential"));
builder->createStructField(diffPairType, diffKey, (IRType*)(diffBaseType));
return diffPairType;
}
return nullptr;
}
IRStructType* getOrCreateDiffPairType(IRBuilder* builder, IRType* origBaseType)
{
if (pairTypeCache.ContainsKey(origBaseType))
return pairTypeCache[origBaseType];
auto pairType = _createDiffPairType(builder, origBaseType);
pairTypeCache.Add(origBaseType, pairType);
return pairType;
}
Dictionary<IRType*, IRStructType*> pairTypeCache;
DifferentiableTypeConformanceContext* diffConformanceContext;
};
struct JVPTranscriber
{
// Stores the mapping of arbitrary 'R-value' instructions to instructions that represent
// their differential values.
Dictionary<IRInst*, IRInst*> instMapD;
// Cloning environment to hold mapping from old to new copies for the primal
// instructions.
IRCloneEnv cloneEnv;
// Diagnostic sink for error messages.
DiagnosticSink* sink;
// Type conformance information.
DifferentiableTypeConformanceContext* diffConformanceContext;
// Builder to help with creating and accessing the 'DifferentiablePair<T>' struct
DifferentialPairTypeBuilder* pairBuilder;
DiagnosticSink* getSink()
{
SLANG_ASSERT(sink);
return sink;
}
void mapDifferentialInst(IRInst* origInst, IRInst* diffInst)
{
instMapD.Add(origInst, diffInst);
}
void mapPrimalInst(IRInst* origInst, IRInst* primalInst)
{
if (cloneEnv.mapOldValToNew.ContainsKey(origInst) && cloneEnv.mapOldValToNew[origInst] != primalInst)
{
getSink()->diagnose(origInst->sourceLoc,
Diagnostics::internalCompilerError,
"inconsistent primal instruction for original");
}
else
{
cloneEnv.mapOldValToNew[origInst] = primalInst;
}
}
IRInst* lookupDiffInst(IRInst* origInst)
{
return instMapD[origInst];
}
IRInst* lookupDiffInst(IRInst* origInst, IRInst* defaultInst)
{
return (hasDifferentialInst(origInst)) ? instMapD[origInst] : defaultInst;
}
bool hasDifferentialInst(IRInst* origInst)
{
return instMapD.ContainsKey(origInst);
}
IRInst* lookupPrimalInst(IRInst* origInst)
{
return cloneEnv.mapOldValToNew[origInst];
}
IRInst* lookupPrimalInst(IRInst* origInst, IRInst* defaultInst)
{
return (hasPrimalInst(origInst)) ? lookupPrimalInst(origInst) : defaultInst;
}
bool hasPrimalInst(IRInst* origInst)
{
return cloneEnv.mapOldValToNew.ContainsKey(origInst);
}
IRInst* findOrTranscribeDiffInst(IRBuilder* builder, IRInst* origInst)
{
if (!hasDifferentialInst(origInst))
{
transcribe(builder, origInst);
SLANG_ASSERT(hasDifferentialInst(origInst));
}
return lookupDiffInst(origInst);
}
IRInst* findOrTranscribePrimalInst(IRBuilder* builder, IRInst* origInst)
{
if (!hasPrimalInst(origInst))
{
transcribe(builder, origInst);
SLANG_ASSERT(hasPrimalInst(origInst));
}
return lookupPrimalInst(origInst);
}
IRFuncType* differentiateFunctionType(IRBuilder* builder, IRFuncType* funcType)
{
List<IRType*> newParameterTypes;
IRType* diffReturnType;
for (UIndex i = 0; i < funcType->getParamCount(); i++)
{
auto origType = funcType->getParamType(i);
if (auto diffPairType = tryGetDiffPairType(builder, origType))
newParameterTypes.add(diffPairType);
else
newParameterTypes.add(origType);
}
// Transcribe return type to a pair.
// This will be void if the primal return type is non-differentiable.
//
if (auto returnPairType = tryGetDiffPairType(builder, funcType->getResultType()))
diffReturnType = returnPairType;
else
diffReturnType = builder->getVoidType();
return builder->getFuncType(newParameterTypes, diffReturnType);
}
IRType* differentiateType(IRBuilder* builder, IRType* origType)
{
switch (origType->getOp())
{
case kIROp_HalfType:
case kIROp_FloatType:
case kIROp_DoubleType:
case kIROp_VectorType:
return (IRType*)(diffConformanceContext->getDifferentialForType(builder, origType));
case kIROp_OutType:
return builder->getOutType(differentiateType(builder, as<IROutType>(origType)->getValueType()));
case kIROp_InOutType:
return builder->getInOutType(differentiateType(builder, as<IRInOutType>(origType)->getValueType()));
default:
return nullptr;
}
}
IRType* tryGetDiffPairType(IRBuilder* builder, IRType* origType)
{
// If this is a PtrType (out, inout, etc..), then create diff pair from
// value type and re-apply the appropropriate PtrType wrapper.
//
if (auto origPtrType = as<IRPtrTypeBase>(origType))
{
if (auto diffPairValueType = tryGetDiffPairType(builder, origPtrType->getValueType()))
return builder->getPtrType(origType->getOp(), diffPairValueType);
else
return nullptr;
}
return pairBuilder->getOrCreateDiffPairType(builder, origType);
}
InstPair transcribeParam(IRBuilder* builder, IRParam* origParam)
{
if (auto diffPairType = tryGetDiffPairType(builder, origParam->getFullType()))
{
IRParam* diffPairParam = builder->emitParam(diffPairType);
auto diffPairVarName = makeDiffPairName(origParam);
if (diffPairVarName.getLength() > 0)
builder->addNameHintDecoration(diffPairParam, diffPairVarName.getUnownedSlice());
SLANG_ASSERT(diffPairParam);
return InstPair(
pairBuilder->emitPrimalFieldAccess(builder, diffPairParam),
pairBuilder->emitDiffFieldAccess(builder, diffPairParam));
}
return InstPair(
cloneInst(&cloneEnv, builder, origParam),
nullptr);
}
// Returns "d<var-name>" to use as a name hint for variables and parameters.
// If no primal name is available, returns a blank string.
//
String getJVPVarName(IRInst* origVar)
{
if (auto namehintDecoration = origVar->findDecoration<IRNameHintDecoration>())
{
return ("d" + String(namehintDecoration->getName()));
}
return String("");
}
// Returns "dp<var-name>" to use as a name hint for parameters.
// If no primal name is available, returns a blank string.
//
String makeDiffPairName(IRInst* origVar)
{
if (auto namehintDecoration = origVar->findDecoration<IRNameHintDecoration>())
{
return ("dp" + String(namehintDecoration->getName()));
}
return String("");
}
InstPair transcribeVar(IRBuilder* builder, IRVar* origVar)
{
if (IRType* diffType = differentiateType(builder, origVar->getDataType()->getValueType()))
{
IRVar* diffVar = builder->emitVar(diffType);
SLANG_ASSERT(diffVar);
auto diffNameHint = getJVPVarName(origVar);
if (diffNameHint.getLength() > 0)
builder->addNameHintDecoration(diffVar, diffNameHint.getUnownedSlice());
return InstPair(cloneInst(&cloneEnv, builder, origVar), diffVar);
}
return InstPair(cloneInst(&cloneEnv, builder, origVar), nullptr);
}
InstPair transcribeBinaryArith(IRBuilder* builder, IRInst* origArith)
{
SLANG_ASSERT(origArith->getOperandCount() == 2);
IRInst* primalArith = cloneInst(&cloneEnv, builder, origArith);
auto origLeft = origArith->getOperand(0);
auto origRight = origArith->getOperand(1);
auto primalLeft = findOrTranscribePrimalInst(builder, origLeft);
auto primalRight = findOrTranscribePrimalInst(builder, origRight);
auto diffLeft = findOrTranscribeDiffInst(builder, origLeft);
auto diffRight = findOrTranscribeDiffInst(builder, origRight);
auto leftZero = builder->getFloatValue(origLeft->getDataType(), 0.0);
auto rightZero = builder->getFloatValue(origRight->getDataType(), 0.0);
if (diffLeft || diffRight)
{
diffLeft = diffLeft ? diffLeft : leftZero;
diffRight = diffRight ? diffRight : rightZero;
auto resultType = origArith->getDataType();
switch(origArith->getOp())
{
case kIROp_Add:
return InstPair(primalArith, builder->emitAdd(resultType, diffLeft, diffRight));
case kIROp_Mul:
return InstPair(primalArith, builder->emitAdd(resultType,
builder->emitMul(resultType, diffLeft, primalRight),
builder->emitMul(resultType, primalLeft, diffRight)));
case kIROp_Sub:
return InstPair(primalArith, builder->emitSub(resultType, diffLeft, diffRight));
case kIROp_Div:
return InstPair(primalArith, builder->emitDiv(resultType,
builder->emitSub(
resultType,
builder->emitMul(resultType, diffLeft, primalRight),
builder->emitMul(resultType, primalLeft, diffRight)),
builder->emitMul(
primalRight->getDataType(), primalRight, primalRight
)));
default:
getSink()->diagnose(origArith->sourceLoc,
Diagnostics::unimplemented,
"this arithmetic instruction cannot be differentiated");
}
}
return InstPair(primalArith, nullptr);
}
InstPair transcribeLoad(IRBuilder* builder, IRLoad* origLoad)
{
auto origPtr = origLoad->getPtr();
auto primalLoad = cloneInst(&cloneEnv, builder, origLoad);
if (auto diffPtr = lookupDiffInst(origPtr, nullptr))
{
IRLoad* diffLoad = as<IRLoad>(builder->emitLoad(diffPtr));
SLANG_ASSERT(diffLoad);
return InstPair(primalLoad, diffLoad);
}
return InstPair(primalLoad, nullptr);
}
InstPair transcribeStore(IRBuilder* builder, IRStore* origStore)
{
IRInst* origStoreLocation = origStore->getPtr();
IRInst* origStoreVal = origStore->getVal();
auto primalStore = cloneInst(&cloneEnv, builder, origStore);
auto diffStoreLocation = lookupDiffInst(origStoreLocation, nullptr);
auto diffStoreVal = lookupDiffInst(origStoreVal, nullptr);
// If the stored value has a differential version,
// emit a store instruction for the differential parameter.
// Otherwise, emit nothing since there's nothing to load.
//
if (diffStoreLocation && diffStoreVal)
{
IRStore* diffStore = as<IRStore>(
builder->emitStore(diffStoreLocation, diffStoreVal));
SLANG_ASSERT(diffStore);
return InstPair(primalStore, diffStore);
}
return InstPair(primalStore, nullptr);
}
InstPair transcribeReturn(IRBuilder* builder, IRReturn* origReturn)
{
IRInst* origReturnVal = origReturn->getVal();
if (auto pairType = tryGetDiffPairType(builder, origReturnVal->getDataType()))
{
IRInst* primalReturnVal = findOrTranscribePrimalInst(builder, origReturnVal);
IRInst* diffReturnVal = findOrTranscribeDiffInst(builder, origReturnVal);
if(!diffReturnVal)
diffReturnVal = getZeroOfType(builder, origReturnVal->getDataType());
auto diffPair = builder->emitMakeDifferentialPair(pairType, primalReturnVal, diffReturnVal);
IRReturn* pairReturn = as<IRReturn>(builder->emitReturn(diffPair));
return InstPair(pairReturn, pairReturn);
}
else
{
// If the differential return value is not available, emit a
// void return.
IRInst* voidReturn = builder->emitReturn();
return InstPair(voidReturn, voidReturn);
}
}
// Since int/float literals are sometimes nested inside an IRConstructor
// instruction, we check to make sure that the nested instr is a constant
// and then return nullptr. Literals do not need to be differentiated.
//
InstPair transcribeConstruct(IRBuilder* builder, IRInst* origConstruct)
{
IRInst* primalConstruct = cloneInst(&cloneEnv, builder, origConstruct);
if (as<IRConstant>(origConstruct->getOperand(0)) && origConstruct->getOperandCount() == 1)
return InstPair(primalConstruct, nullptr);
else
getSink()->diagnose(origConstruct->sourceLoc,
Diagnostics::unimplemented,
"this construct instruction cannot be differentiated");
return InstPair(primalConstruct, nullptr);
}
// Differentiating a call instruction here is primarily about generating
// an appropriate call list based on whichever parameters have differentials
// in the current transcription context.
//
InstPair transcribeCall(IRBuilder* builder, IRCall* origCall)
{
if (auto origCallee = as<IRFunc>(origCall->getCallee()))
{
// Build the differential callee
IRInst* diffCall = builder->emitJVPDifferentiateInst(
differentiateFunctionType(builder, as<IRFuncType>(origCallee->getFullType())),
origCallee);
List<IRInst*> args;
// Go over the parameter list and create pairs for each input (if required)
for (UIndex ii = 0; ii < origCall->getArgCount(); ii++)
{
auto origArg = origCall->getArg(ii);
auto primalArg = findOrTranscribePrimalInst(builder, origArg);
SLANG_ASSERT(primalArg);
auto origType = origArg->getDataType();
if (auto pairType = tryGetDiffPairType(builder, origType))
{
auto diffArg = findOrTranscribeDiffInst(builder, origArg);
// TODO(sai): This part is flawed. Replace with a call to the
// 'zero()' interface method.
if (!diffArg)
diffArg = getZeroOfType(builder, origType);
auto diffPair = builder->emitMakeDifferentialPair(pairType, primalArg, diffArg);
args.add(diffPair);
}
else
{
// Add original/primal argument.
args.add(primalArg);
}
}
auto callInst = builder->emitCallInst(
tryGetDiffPairType(builder, origCall->getFullType()),
diffCall,
args);
return InstPair(
pairBuilder->emitPrimalFieldAccess(builder, callInst),
pairBuilder->emitDiffFieldAccess(builder, callInst));
}
else
{
// Note that this can only happen if the callee is a result
// of a higher-order operation. For now, we assume that we cannot
// differentiate such calls safely.
// TODO(sai): Should probably get checked in the front-end.
//
getSink()->diagnose(origCall->sourceLoc,
Diagnostics::internalCompilerError,
"attempting to differentiate unresolved callee");
}
return InstPair(nullptr, nullptr);
}
InstPair transcribeSwizzle(IRBuilder* builder, IRSwizzle* origSwizzle)
{
IRInst* primalSwizzle = cloneInst(&cloneEnv, builder, origSwizzle);
if (auto diffBase = lookupDiffInst(origSwizzle->getBase(), nullptr))
{
List<IRInst*> swizzleIndices;
for (UIndex ii = 0; ii < origSwizzle->getElementCount(); ii++)
swizzleIndices.add(origSwizzle->getElementIndex(ii));
return InstPair(
primalSwizzle,
builder->emitSwizzle(
differentiateType(builder, origSwizzle->getDataType()),
diffBase,
origSwizzle->getElementCount(),
swizzleIndices.getBuffer()));
}
return InstPair(primalSwizzle, nullptr);
}
InstPair transcribeByPassthrough(IRBuilder* builder, IRInst* origInst)
{
IRInst* primalInst = cloneInst(&cloneEnv, builder, origInst);
UCount operandCount = origInst->getOperandCount();
List<IRInst*> diffOperands;
for (UIndex ii = 0; ii < operandCount; ii++)
{
// If the operand has a differential version, replace the original with the
// differential.
// Otherwise, abandon the differentiation attempt and assume that origInst
// cannot (or does not need to) be differentiated.
//
if (auto diffInst = lookupDiffInst(origInst->getOperand(ii), nullptr))
diffOperands.add(diffInst);
else
return InstPair(primalInst, nullptr);
}
return InstPair(
primalInst,
builder->emitIntrinsicInst(
differentiateType(builder, origInst->getDataType()),
origInst->getOp(),
operandCount,
diffOperands.getBuffer()));
}
InstPair transcribeControlFlow(IRBuilder* builder, IRInst* origInst)
{
switch(origInst->getOp())
{
case kIROp_unconditionalBranch:
auto origBranch = as<IRUnconditionalBranch>(origInst);
// Branches with extra operands not handled currently.
if (origBranch->getOperandCount() > 1)
break;
IRInst* diffBranch = nullptr;
if (auto diffBlock = lookupDiffInst(origBranch->getTargetBlock(), nullptr))
diffBranch = builder->emitBranch(as<IRBlock>(diffBlock));
// For now, every block in the original fn must have a corresponding
// block to compute both primals and derivatives.
SLANG_ASSERT(diffBranch);
return InstPair(diffBranch, diffBranch);
}
getSink()->diagnose(
origInst->sourceLoc,
Diagnostics::unimplemented,
"attempting to differentiate unhandled control flow");
return InstPair(nullptr, nullptr);
}
InstPair transcribeConst(IRBuilder*, IRInst* origInst)
{
switch(origInst->getOp())
{
case kIROp_FloatLit:
return InstPair(origInst, nullptr);
}
getSink()->diagnose(
origInst->sourceLoc,
Diagnostics::unimplemented,
"attempting to differentiate unhandled const type");
return InstPair(nullptr, nullptr);
}
// In differential computation, the 'default' differential value is always zero.
// This is a consequence of differential computing being inherently linear. As a
// result, it's useful to have a method to generate zero literals of any (arithmetic) type.
//
IRInst* getZeroOfType(IRBuilder* builder, IRType* type)
{
switch (type->getOp())
{
case kIROp_FloatType:
case kIROp_HalfType:
case kIROp_DoubleType:
return builder->getFloatValue(type, 0.0);
case kIROp_IntType:
return builder->getIntValue(type, 0);
case kIROp_VectorType:
{
IRInst* args[] = {getZeroOfType(builder, as<IRVectorType>(type)->getElementType())};
return builder->emitIntrinsicInst(
type,
kIROp_constructVectorFromScalar,
1,
args);
}
default:
getSink()->diagnose(type->sourceLoc,
Diagnostics::internalCompilerError,
"could not generate zero value for given type");
return nullptr;
}
}
IRInst* transcribe(IRBuilder* builder, IRInst* origInst)
{
InstPair pair = transcribeInst(builder, origInst);
if (auto primalInst = pair.primal)
{
mapPrimalInst(origInst, pair.primal);
mapDifferentialInst(origInst, pair.differential);
return pair.differential;
}
getSink()->diagnose(origInst->sourceLoc,
Diagnostics::internalCompilerError,
"failed to transcibe instruction");
return nullptr;
}
InstPair transcribeInst(IRBuilder* builder, IRInst* origInst)
{
// Handle common operations
switch (origInst->getOp())
{
case kIROp_Param:
return transcribeParam(builder, as<IRParam>(origInst));
case kIROp_Var:
return transcribeVar(builder, as<IRVar>(origInst));
case kIROp_Load:
return transcribeLoad(builder, as<IRLoad>(origInst));
case kIROp_Store:
return transcribeStore(builder, as<IRStore>(origInst));
case kIROp_Return:
return transcribeReturn(builder, as<IRReturn>(origInst));
case kIROp_Add:
case kIROp_Mul:
case kIROp_Sub:
case kIROp_Div:
return transcribeBinaryArith(builder, origInst);
case kIROp_Construct:
return transcribeConstruct(builder, origInst);
case kIROp_Call:
return transcribeCall(builder, as<IRCall>(origInst));
case kIROp_swizzle:
return transcribeSwizzle(builder, as<IRSwizzle>(origInst));
case kIROp_constructVectorFromScalar:
return transcribeByPassthrough(builder, origInst);
case kIROp_unconditionalBranch:
case kIROp_conditionalBranch:
return transcribeControlFlow(builder, origInst);
case kIROp_FloatLit:
return transcribeConst(builder, origInst);
}
// If none of the cases have been hit, check if the instruction is a
// type.
// For now we don't have logic to differentiate types that appear in blocks.
// So, we clone and avoid differentiating them.
//
if (auto origType = as<IRType>(origInst))
return InstPair(cloneInst(&cloneEnv, builder, origType), nullptr);
// If we reach this statement, the instruction type is likely unhandled.
getSink()->diagnose(origInst->sourceLoc,
Diagnostics::unimplemented,
"this instruction cannot be differentiated");
return InstPair(nullptr, nullptr);
}
};
struct IRWorkQueue
{
// Work list to hold the active set of insts whose children
// need to be looked at.
//
List<IRInst*> workList;
HashSet<IRInst*> workListSet;
void push(IRInst* inst)
{
if(!inst) return;
if(workListSet.Contains(inst)) return;
workList.add(inst);
workListSet.Add(inst);
}
IRInst* pop()
{
if (workList.getCount() != 0)
{
IRInst* topItem = workList.getFirst();
// TODO(Sai): Repeatedly calling removeAt() can be really slow.
// Consider a specialized data structure or using removeLast()
//
workList.removeAt(0);
workListSet.Remove(topItem);
return topItem;
}
return nullptr;
}
IRInst* peek()
{
return workList.getFirst();
}
};
struct JVPDerivativeContext
{
DiagnosticSink* getSink()
{
return sink;
}
bool processModule()
{
// We start by initializing our shared IR building state,
// since we will re-use that state for any code we
// generate along the way.
//
SharedIRBuilder* sharedBuilder = &sharedBuilderStorage;
sharedBuilder->init(module);
IRBuilder builderStorage(sharedBuilderStorage);
IRBuilder* builder = &builderStorage;
// Process all JVPDifferentiate instructions (kIROp_JVPDifferentiate), by
// generating derivative code for the referenced function.
//
bool modified = processReferencedFunctions(builder);
// Replaces IRDifferentialPairType with an auto-generated struct,
// IRDifferentialPairGetDifferential with 'differential' field access,
// IRDifferentialPairGetPrimal with 'primal' field access, and
// IRMakeDifferentialPair with an IRMakeStruct.
//
modified |= processPairTypes(builder, module->getModuleInst(), (&diffConformanceContextStorage));
return modified;
}
IRInst* lookupJVPReference(IRInst* primalFunction)
{
if(auto jvpDefinition = primalFunction->findDecoration<IRJVPDerivativeReferenceDecoration>())
return jvpDefinition->getJVPFunc();
return nullptr;
}
// Recursively process instructions looking for JVP calls (kIROp_JVPDifferentiate),
// then check that the referenced function is marked correctly for differentiation.
//
bool processReferencedFunctions(IRBuilder* builder)
{
IRWorkQueue* workQueue = &(workQueueStorage);
// Put the top-level inst into the queue.
workQueue->push(module->getModuleInst());
// Keep processing items until the queue is complete.
while (IRInst* workItem = workQueue->pop())
{
for(auto child = workItem->getFirstChild(); child; child = child->getNextInst())
{
// Either the child instruction has more children (func/block etc..)
// and we add it to the work list for further processing, or
// it's an ordinary inst in which case we check if it's a JVPDifferentiate
// instruction.
//
if (child->getFirstChild() != nullptr)
workQueue->push(child);
if (auto jvpDiffInst = as<IRJVPDifferentiate>(child))
{
auto baseFunction = jvpDiffInst->getBaseFn();
// If the JVP Reference already exists, no need to
// differentiate again.
//
if(lookupJVPReference(baseFunction)) continue;
if (isFunctionMarkedForJVP(as<IRGlobalValueWithCode>(baseFunction)))
{
IRFunc* jvpFunction = emitJVPFunction(builder, as<IRFunc>(baseFunction));
builder->addJVPDerivativeReferenceDecoration(baseFunction, jvpFunction);
workQueue->push(jvpFunction);
}
else
{
// TODO(Sai): This would probably be better with a more specific
// error code.
getSink()->diagnose(jvpDiffInst->sourceLoc,
Diagnostics::internalCompilerError,
"Cannot differentiate functions not marked for differentiation");
}
}
}
}
return true;
}
// Run through all the global-level instructions,
// looking for callables.
// Note: We're only processing global callables (IRGlobalValueWithCode)
// for now.
//
bool processMarkedGlobalFunctions(IRBuilder* builder)
{
for (auto inst : module->getGlobalInsts())
{
// If the instr is a callable, get all the basic blocks
if (auto callable = as<IRGlobalValueWithCode>(inst))
{
if (isFunctionMarkedForJVP(callable))
{
SLANG_ASSERT(as<IRFunc>(callable));
IRFunc* jvpFunction = emitJVPFunction(builder, as<IRFunc>(callable));
builder->addJVPDerivativeReferenceDecoration(callable, jvpFunction);
unmarkForJVP(callable);
}
}
}
return true;
}
IRInst* lowerPairType(IRBuilder* builder, IRType* type, DifferentiableTypeConformanceContext* diffContext)
{
if (diffContext->isInterfaceAvailable)
{
if (auto pairType = as<IRDifferentialPairType>(type))
{
builder->setInsertBefore(pairType);
auto diffPairStructType = (&pairBuilderStorage)->getOrCreateDiffPairType(
builder,
pairType->getValueType());
pairType->replaceUsesWith(diffPairStructType);
pairType->removeAndDeallocate();
return diffPairStructType;
}
else if (auto loweredStructType = as<IRStructType>(type))
{
// Already lowered to struct.
return loweredStructType;
}
}
return nullptr;
}
IRInst* lowerMakePair(IRBuilder* builder, IRInst* inst, DifferentiableTypeConformanceContext* diffContext)
{
if (auto makePairInst = as<IRMakeDifferentialPair>(inst))
{
auto diffPairStructType = lowerPairType(builder, makePairInst->getDataType(), diffContext);
builder->setInsertBefore(makePairInst);
List<IRInst*> operands;
operands.add(makePairInst->getPrimalValue());
operands.add(makePairInst->getDifferentialValue());
auto makeStructInst = builder->emitMakeStruct(as<IRStructType>(diffPairStructType), operands);
makePairInst->replaceUsesWith(makeStructInst);
makePairInst->removeAndDeallocate();
return makeStructInst;
}
return nullptr;
}
IRInst* lowerPairAccess(IRBuilder* builder, IRInst* inst, DifferentiableTypeConformanceContext* diffContext)
{
if (auto getDiffInst = as<IRDifferentialPairGetDifferential>(inst))
{
lowerPairType(builder, getDiffInst->getBase()->getDataType(), diffContext);
builder->setInsertBefore(getDiffInst);
auto diffFieldExtract = (&pairBuilderStorage)->emitDiffFieldAccess(builder, getDiffInst->getBase());
getDiffInst->replaceUsesWith(diffFieldExtract);
getDiffInst->removeAndDeallocate();
return diffFieldExtract;
}
else if (auto getPrimalInst = as<IRDifferentialPairGetPrimal>(inst))
{
lowerPairType(builder, getPrimalInst->getBase()->getDataType(), diffContext);
builder->setInsertBefore(getPrimalInst);
auto primalFieldExtract = (&pairBuilderStorage)->emitPrimalFieldAccess(builder, getPrimalInst->getBase());
getPrimalInst->replaceUsesWith(primalFieldExtract);
getPrimalInst->removeAndDeallocate();
return primalFieldExtract;
}
return nullptr;
}
bool processPairTypes(IRBuilder* builder, IRInst* instWithChildren, DifferentiableTypeConformanceContext* diffContext)
{
bool modified = false;
// Create a new sub-context to scan witness tables inside workItem
// (mainly relevant if instWithChildren is a generic scope)
//
auto subContext = DifferentiableTypeConformanceContext(diffContext, instWithChildren);
(&pairBuilderStorage)->diffConformanceContext = (&subContext);
for (auto child = instWithChildren->getFirstChild(); child; )
{
// Make sure the builder is at the right level.
builder->setInsertInto(instWithChildren);
auto nextChild = child->getNextInst();
switch (child->getOp())
{
case kIROp_DifferentialPairType:
lowerPairType(builder, as<IRType>(child), &subContext);
break;
case kIROp_DifferentialPairGetDifferential:
case kIROp_DifferentialPairGetPrimal:
lowerPairAccess(builder, child, &subContext);
break;
case kIROp_MakeDifferentialPair:
lowerMakePair(builder, child, &subContext);
break;
default:
if (child->getFirstChild())
modified = processPairTypes(builder, child, (&subContext)) | modified;
}
child = nextChild;
}
// Reset the context back to the parent.
(&pairBuilderStorage)->diffConformanceContext = diffContext;
return modified;
}
// Checks decorators to see if the function should
// be differentiated (kIROp_JVPDerivativeMarkerDecoration)
//
bool isFunctionMarkedForJVP(IRGlobalValueWithCode* callable)
{
for(auto decoration = callable->getFirstDecoration();
decoration;
decoration = decoration->getNextDecoration())
{
if (decoration->getOp() == kIROp_JVPDerivativeMarkerDecoration)
{
return true;
}
}
return false;
}
// Removes the JVPDerivativeMarkerDecoration from the provided callable,
// if it exists.
//
void unmarkForJVP(IRGlobalValueWithCode* callable)
{
for(auto decoration = callable->getFirstDecoration();
decoration;
decoration = decoration->getNextDecoration())
{
if (decoration->getOp() == kIROp_JVPDerivativeMarkerDecoration)
{
decoration->removeAndDeallocate();
return;
}
}
}
List<IRParam*> emitFuncParameters(IRBuilder* builder, IRFuncType* dataType)
{
List<IRParam*> params;
for(UIndex i = 0; i < dataType->getParamCount(); i++)
{
params.add(
builder->emitParam(dataType->getParamType(i)));
}
return params;
}
// Perform forward-mode automatic differentiation on
// the intstructions.
//
IRFunc* emitJVPFunction(IRBuilder* builder,
IRFunc* primalFn)
{
builder->setInsertBefore(primalFn->getNextInst());
auto jvpFn = builder->createFunc();
SLANG_ASSERT(as<IRFuncType>(primalFn->getFullType()));
IRType* jvpFuncType = transcriberStorage.differentiateFunctionType(
builder,
as<IRFuncType>(primalFn->getFullType()));
jvpFn->setFullType(jvpFuncType);
if (auto jvpName = getJVPFuncName(builder, primalFn))
builder->addNameHintDecoration(jvpFn, jvpName);
builder->setInsertInto(jvpFn);
// Emit a block instruction for every block in the function, and map it as the
// corresponding differential.
//
for (auto block = primalFn->getFirstBlock(); block; block = block->getNextBlock())
{
auto jvpBlock = builder->emitBlock();
transcriberStorage.mapDifferentialInst(block, jvpBlock);
transcriberStorage.mapPrimalInst(block, jvpBlock);
}
// Go back over the blocks, and process the children of each block.
for (auto block = primalFn->getFirstBlock(); block; block = block->getNextBlock())
{
auto jvpBlock = as<IRBlock>(transcriberStorage.lookupDiffInst(block, block));
SLANG_ASSERT(jvpBlock);
emitJVPBlock(builder, block, jvpBlock);
}
return jvpFn;
}
IRStringLit* getJVPFuncName(IRBuilder* builder,
IRFunc* func)
{
auto oldLoc = builder->getInsertLoc();
builder->setInsertBefore(func);
IRStringLit* name = nullptr;
if (auto linkageDecoration = func->findDecoration<IRLinkageDecoration>())
{
name = builder->getStringValue((String(linkageDecoration->getMangledName()) + "_jvp").getUnownedSlice());
}
else if (auto namehintDecoration = func->findDecoration<IRNameHintDecoration>())
{
name = builder->getStringValue((String(namehintDecoration->getName()) + "_jvp").getUnownedSlice());
}
builder->setInsertLoc(oldLoc);
return name;
}
IRBlock* emitJVPBlock(IRBuilder* builder,
IRBlock* origBlock,
IRBlock* jvpBlock = nullptr)
{
JVPTranscriber* transcriber = &(transcriberStorage);
// Create if not already created, and then insert into new block.
if (!jvpBlock)
jvpBlock = builder->emitBlock();
else
builder->setInsertInto(jvpBlock);
// First transcribe every parameter in the block.
for (auto param = origBlock->getFirstParam(); param; param = param->getNextParam())
{
transcriber->transcribe(builder, param);
}
// Then, run through every instruction and use the transcriber to generate the appropriate
// derivative code.
//
for (auto child = origBlock->getFirstOrdinaryInst(); child; child = child->getNextInst())
{
transcriber->transcribe(builder, child);
}
return jvpBlock;
}
JVPDerivativeContext(IRModule* module, DiagnosticSink* sink) :
module(module), sink(sink),
diffConformanceContextStorage(module->getModuleInst()),
pairBuilderStorage(&diffConformanceContextStorage)
{
transcriberStorage.sink = sink;
transcriberStorage.diffConformanceContext = &(diffConformanceContextStorage);
transcriberStorage.pairBuilder = &(pairBuilderStorage);
}
protected:
// This type passes over the module and generates
// forward-mode derivative versions of functions
// that are explicitly marked for it.
//
IRModule* module;
// Shared builder state for our derivative passes.
SharedIRBuilder sharedBuilderStorage;
// A transcriber object that handles the main job of
// processing instructions while maintaining state.
//
JVPTranscriber transcriberStorage;
// Diagnostic object from the compile request for
// error messages.
DiagnosticSink* sink;
// Work queue to hold a stream of instructions that need
// to be checked for references to derivative functions.
IRWorkQueue workQueueStorage;
// Context to find and manage the witness tables for types
// implementing `IDifferentiable`
DifferentiableTypeConformanceContext diffConformanceContextStorage;
// Builder for dealing with differential pair types.
DifferentialPairTypeBuilder pairBuilderStorage;
};
// Set up context and call main process method.
//
bool processJVPDerivativeMarkers(
IRModule* module,
DiagnosticSink* sink,
IRJVPDerivativePassOptions const&)
{
// Simplify module to remove dead code.
IRDeadCodeEliminationOptions options;
options.keepExportsAlive = true;
options.keepLayoutsAlive = true;
eliminateDeadCode(module, options);
JVPDerivativeContext context(module, sink);
return context.processModule();
}
}
|