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
|
#include "slang-ir-autodiff-pairs.h"
namespace Slang
{
struct DiffPairLoweringPass : InstPassBase
{
DiffPairLoweringPass(AutoDiffSharedContext* context)
: InstPassBase(context->moduleInst->getModule()), pairBuilderStorage(context)
{
pairBuilder = &pairBuilderStorage;
}
IRInst* lowerPairType(IRBuilder* builder, IRType* pairType)
{
auto loweredPairType = pairBuilder->lowerDiffPairType(builder, pairType);
return loweredPairType;
}
IRInst* lowerMakePair(IRBuilder* builder, IRInst* inst)
{
if (auto makePairInst = as<IRMakeDifferentialPairBase>(inst))
{
auto pairType = as<IRDifferentialPairTypeBase>(makePairInst->getDataType());
builder->setInsertBefore(makePairInst);
if (auto loweredPairType = (IRType*)lowerPairType(builder, pairType))
{
if (isRuntimeType(pairType->getValueType()))
{
auto result = pairBuilder->emitExistentialMakePair(
builder,
loweredPairType,
makePairInst->getPrimalValue(),
makePairInst->getDifferentialValue());
makePairInst->replaceUsesWith(result);
makePairInst->removeAndDeallocate();
return result;
}
else if (auto typePack = as<IRTypePack>(pairType->getValueType()))
{
// TODO: Do we need to flatten the packs here?
// If the type is a type pack, then the value must be in
// MakePair(MakeValuePack(p_0, p_1, ...), MakeValuePack(d_0, d_1, ...)) form
// Convert it to MakeValuePack(MakePair(p_0, d_0), MakePair(p_1, d_1), ...)
// and lower each MakePair.
//
// Primal pack
auto primalValue = as<IRMakeValuePack>(makePairInst->getPrimalValue());
SLANG_ASSERT(primalValue);
// Differential pack
auto diffValue = as<IRMakeValuePack>(makePairInst->getDifferentialValue());
SLANG_ASSERT(diffValue);
// Expect the lowered pair type to be a type pack of pair types.
SLANG_ASSERT(as<IRTypePack>(loweredPairType));
List<IRInst*> newValues;
for (UInt i = 0; i < typePack->getOperandCount(); i++)
{
auto primalElement = primalValue->getOperand(i);
auto diffElement = diffValue->getOperand(i);
auto loweredElementPairType = (IRType*)loweredPairType->getOperand(i);
IRInst* operands[] = {primalElement, diffElement};
auto loweredMakePair =
builder->emitMakeStruct((IRType*)loweredElementPairType, 2, operands);
newValues.add(loweredMakePair);
}
auto newPack = builder->emitMakeValuePack(
loweredPairType,
newValues.getCount(),
newValues.getBuffer());
makePairInst->replaceUsesWith(newPack);
makePairInst->removeAndDeallocate();
return newPack;
}
else
{
IRInst* result = nullptr;
IRInst* operands[2] = {
makePairInst->getPrimalValue(),
makePairInst->getDifferentialValue()};
result = builder->emitMakeStruct((IRType*)(loweredPairType), 2, operands);
makePairInst->replaceUsesWith(result);
makePairInst->removeAndDeallocate();
return result;
}
}
}
return nullptr;
}
IRInst* lowerPairAccess(IRBuilder* builder, IRInst* inst)
{
if (auto getDiffInst = as<IRDifferentialPairGetDifferentialBase>(inst))
{
auto pairType = getDiffInst->getBase()->getDataType();
if (auto pairPtrType = as<IRPtrTypeBase>(pairType))
{
pairType = pairPtrType->getValueType();
}
builder->setInsertBefore(getDiffInst);
if (auto loweredType = lowerPairType(builder, pairType))
{
IRInst* diffFieldExtract = nullptr;
diffFieldExtract = pairBuilder->emitDiffFieldAccess(
builder,
(IRType*)loweredType,
getDiffInst->getBase());
getDiffInst->replaceUsesWith(diffFieldExtract);
getDiffInst->removeAndDeallocate();
return diffFieldExtract;
}
}
else if (auto getPrimalInst = as<IRDifferentialPairGetPrimalBase>(inst))
{
auto pairType = getPrimalInst->getBase()->getDataType();
if (auto pairPtrType = as<IRPtrTypeBase>(pairType))
{
pairType = pairPtrType->getValueType();
}
builder->setInsertBefore(getPrimalInst);
if (auto loweredType = lowerPairType(builder, pairType))
{
IRInst* primalFieldExtract = nullptr;
primalFieldExtract = pairBuilder->emitPrimalFieldAccess(
builder,
(IRType*)loweredType,
getPrimalInst->getBase());
getPrimalInst->replaceUsesWith(primalFieldExtract);
getPrimalInst->removeAndDeallocate();
return primalFieldExtract;
}
}
return nullptr;
}
bool processInstWithChildren(IRBuilder* builder, IRInst* instWithChildren)
{
bool modified = false;
processAllInsts(
[&](IRInst* inst)
{
// Make sure the builder is at the right level.
builder->setInsertInto(instWithChildren);
switch (inst->getOp())
{
case kIROp_DifferentialPairGetDifferential:
case kIROp_DifferentialPairGetPrimal:
case kIROp_DifferentialPairGetDifferentialUserCode:
case kIROp_DifferentialPairGetPrimalUserCode:
case kIROp_DifferentialPtrPairGetDifferential:
case kIROp_DifferentialPtrPairGetPrimal:
lowerPairAccess(builder, inst);
break;
case kIROp_MakeDifferentialPairUserCode:
case kIROp_MakeDifferentialPtrPair:
lowerMakePair(builder, inst);
break;
default:
break;
}
});
OrderedDictionary<IRInst*, IRInst*> pendingReplacements;
processAllInsts(
[&](IRInst* inst)
{
if (auto pairType = as<IRDifferentialPairTypeBase>(inst))
{
if (auto loweredType = lowerPairType(builder, pairType))
{
pendingReplacements.add(pairType, loweredType);
modified = true;
}
}
});
for (auto replacement : pendingReplacements)
{
replacement.key->replaceUsesWith(replacement.value);
replacement.key->removeAndDeallocate();
}
return modified;
}
bool processModule()
{
IRBuilder builder(module);
return processInstWithChildren(&builder, module->getModuleInst());
}
private:
DifferentialPairTypeBuilder* pairBuilder;
DifferentialPairTypeBuilder pairBuilderStorage;
};
bool processPairTypes(AutoDiffSharedContext* context)
{
DiffPairLoweringPass pairLoweringPass(context);
return pairLoweringPass.processModule();
}
struct DifferentialPairUserCodeTranscribePass : public InstPassBase
{
DifferentialPairUserCodeTranscribePass(IRModule* module)
: InstPassBase(module)
{
}
IRInst* rewritePairType(IRBuilder* builder, IRType* pairType)
{
builder->setInsertBefore(pairType);
auto originalPairType = as<IRDifferentialPairType>(pairType);
return builder->getDifferentialPairUserCodeType(
originalPairType->getValueType(),
originalPairType->getWitness());
}
IRInst* rewriteMakePair(IRBuilder* builder, IRMakeDifferentialPair* inst)
{
auto pairType = as<IRDifferentialPairType>(inst->getFullType());
builder->setInsertBefore(inst);
auto newInst = builder->emitMakeDifferentialPairUserCode(
(IRType*)pairType,
inst->getPrimalValue(),
inst->getDifferentialValue());
inst->replaceUsesWith(newInst);
inst->removeAndDeallocate();
return newInst;
}
IRInst* rewritePairAccess(IRBuilder* builder, IRInst* inst)
{
if (auto getDiffInst = as<IRDifferentialPairGetDifferential>(inst))
{
builder->setInsertBefore(inst);
auto newInst = builder->emitDifferentialPairGetDifferentialUserCode(
(IRType*)inst->getFullType(),
getDiffInst->getBase());
inst->replaceUsesWith(newInst);
inst->removeAndDeallocate();
}
else if (auto getPrimalInst = as<IRDifferentialPairGetPrimal>(inst))
{
builder->setInsertBefore(inst);
auto newInst = builder->emitDifferentialPairGetPrimalUserCode(getPrimalInst->getBase());
inst->replaceUsesWith(newInst);
inst->removeAndDeallocate();
}
return inst;
}
bool processInstWithChildren(IRBuilder* builder, IRInst* instWithChildren)
{
SLANG_UNUSED(instWithChildren);
bool modified = false;
processAllInsts(
[&](IRInst* inst)
{
switch (inst->getOp())
{
case kIROp_DifferentialPairGetDifferential:
case kIROp_DifferentialPairGetPrimal:
rewritePairAccess(builder, inst);
break;
case kIROp_MakeDifferentialPair:
rewriteMakePair(builder, as<IRMakeDifferentialPair>(inst));
break;
default:
break;
}
});
OrderedDictionary<IRInst*, IRInst*> pendingReplacements;
processInstsOfType<IRDifferentialPairType>(
kIROp_DifferentialPairType,
[&](IRDifferentialPairType* inst)
{
if (auto loweredType = rewritePairType(builder, inst))
{
pendingReplacements.add(inst, loweredType);
modified = true;
}
});
for (auto replacement : pendingReplacements)
{
replacement.key->replaceUsesWith(replacement.value);
replacement.key->removeAndDeallocate();
}
return modified;
}
bool processModule()
{
IRBuilder builder(module);
return processInstWithChildren(&builder, module->getModuleInst());
}
};
void rewriteDifferentialPairToUserCode(IRModule* module)
{
DifferentialPairUserCodeTranscribePass pairRewritePass(module);
pairRewritePass.processModule();
}
} // namespace Slang
|