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
|
#include "slang-ir-pytorch-cpp-binding.h"
#include "slang-ir.h"
#include "slang-ir-insts.h"
#include "slang-diagnostics.h"
namespace Slang
{
// Convert a type to a target tuple type.
static IRType* translateToTupleType(IRBuilder& builder, IRType* type)
{
if (as<IRVoidType>(type))
return type;
if (as<IRBasicType>(type))
return type;
else if (as<IRTorchTensorType>(type))
return type;
else if (auto vectorType = as<IRVectorType>(type))
{
auto count = as<IRIntLit>(vectorType->getElementCount());
if (!count)
{
return nullptr;
}
List<IRType*> elementTypes;
for (IRIntegerValue i = 0; i < count->getValue(); i++)
{
elementTypes.addRange(vectorType->getElementType());
}
return builder.getTargetTupleType((UInt)elementTypes.getCount(), elementTypes.getBuffer());
}
else if (auto arrayType = as<IRArrayType>(type))
{
auto arraySize = as<IRIntLit>(arrayType->getElementCount());
if (!arraySize)
{
return nullptr;
}
List<IRType*> subElementTypes;
auto subElementType = translateToTupleType(builder, arrayType->getElementType());
for (IRIntegerValue i = 0; i < arraySize->getValue(); i++)
{
subElementTypes.addRange(subElementType);
}
return builder.getTargetTupleType((UInt)subElementTypes.getCount(), subElementTypes.getBuffer());
}
else if (auto structType = as<IRStructType>(type))
{
List<IRType*> elementTypes;
for (auto field : structType->getFields())
{
auto fieldType = translateToTupleType(builder, field->getFieldType());
if (!fieldType)
{
return nullptr;
}
elementTypes.addRange(fieldType);
}
return builder.getTargetTupleType((UInt)elementTypes.getCount(), elementTypes.getBuffer());
}
else
{
return nullptr;
}
}
// Convert a value to a target tuple type.
static IRInst* makeTargetTuple(IRBuilder& builder, IRInst* val)
{
auto type = val->getDataType();
if (as<IRVoidType>(type))
return val;
if (as<IRBasicType>(type))
return val;
else if (as<IRTorchTensorType>(type))
return val;
else if (auto vectorType = as<IRVectorType>(type))
{
auto count = as<IRIntLit>(vectorType->getElementCount());
if (!count)
{
return nullptr;
}
List<IRInst*> resultElements;
List<IRType*> elementTypes;
for (IRIntegerValue i = 0; i < count->getValue(); i++)
{
auto elementVal = builder.emitElementExtract(val, builder.getIntValue(builder.getIntType(), i));
auto tupleElement = makeTargetTuple(builder, elementVal);
if (!tupleElement)
return nullptr;
resultElements.add(tupleElement);
elementTypes.add(tupleElement->getFullType());
}
auto resultType = builder.getTargetTupleType((UInt)elementTypes.getCount(), elementTypes.getBuffer());
return builder.emitMakeTargetTuple(resultType, (UInt)resultElements.getCount(), resultElements.getBuffer());
}
else if (auto arrayType = as<IRArrayType>(type))
{
auto arraySize = as<IRIntLit>(arrayType->getElementCount());
if (!arraySize)
{
return nullptr;
}
List<IRInst*> resultElements;
List<IRType*> elementTypes;
for (IRIntegerValue i = 0; i < arraySize->getValue(); i++)
{
auto elementVal = builder.emitElementExtract(val, builder.getIntValue(builder.getIntType(), i));
auto tupleElement = makeTargetTuple(builder, elementVal);
if (!tupleElement)
return nullptr;
resultElements.add(tupleElement);
elementTypes.add(tupleElement->getFullType());
}
auto resultType = builder.getTargetTupleType((UInt)elementTypes.getCount(), elementTypes.getBuffer());
return builder.emitMakeTargetTuple(resultType, (UInt)resultElements.getCount(), resultElements.getBuffer());
}
else if (auto structType = as<IRStructType>(type))
{
List<IRInst*> resultElements;
List<IRType*> elementTypes;
for (auto field : structType->getFields())
{
auto elementVal = builder.emitFieldExtract(field->getFieldType(), val, field->getKey());
auto tupleElement = makeTargetTuple(builder, elementVal);
if (!tupleElement)
return nullptr;
resultElements.add(tupleElement);
elementTypes.add(tupleElement->getFullType());
}
auto resultType = builder.getTargetTupleType((UInt)elementTypes.getCount(), elementTypes.getBuffer());
return builder.emitMakeTargetTuple(resultType, (UInt)resultElements.getCount(), resultElements.getBuffer());
}
else
{
return nullptr;
}
}
// Convert a target tuple type to a value.
static IRInst* makeValueFromTargetTuple(IRBuilder& builder, IRType* type, IRInst* val)
{
if (as<IRVoidType>(type))
return val;
if (as<IRBasicType>(type))
return val;
else if (as<IRTorchTensorType>(type))
return val;
else if (auto vectorType = as<IRVectorType>(type))
{
auto count = as<IRIntLit>(vectorType->getElementCount());
if (!count)
{
return nullptr;
}
List<IRInst*> resultElements;
auto elementType = vectorType->getElementType();
for (IRIntegerValue i = 0; i < count->getValue(); i++)
{
auto tupleElement = builder.emitTargetTupleGetElement(elementType, val, builder.getIntValue(builder.getIntType(), i));
auto convertedElement = makeValueFromTargetTuple(builder, elementType, tupleElement);
if (!convertedElement)
return nullptr;
resultElements.add(convertedElement);
}
return builder.emitMakeVector(type, (UInt)resultElements.getCount(), resultElements.getBuffer());
}
else if (auto arrayType = as<IRArrayType>(type))
{
auto arraySize = as<IRIntLit>(arrayType->getElementCount());
if (!arraySize)
{
return nullptr;
}
List<IRInst*> resultElements;
auto elementType = arrayType->getElementType();
for (IRIntegerValue i = 0; i < arraySize->getValue(); i++)
{
auto tupleElement = builder.emitTargetTupleGetElement(elementType, val, builder.getIntValue(builder.getIntType(), i));
auto convertedElement = makeValueFromTargetTuple(builder, elementType, tupleElement);
if (!convertedElement)
return nullptr;
resultElements.add(convertedElement);
}
return builder.emitMakeArray(type, (UInt)resultElements.getCount(), resultElements.getBuffer());
}
else if (auto structType = as<IRStructType>(type))
{
List<IRInst*> resultElements;
IRIntegerValue i = 0;
for (auto field : structType->getFields())
{
auto tupleElement = builder.emitTargetTupleGetElement(field->getFieldType(), val, builder.getIntValue(builder.getIntType(), i));
auto convertedElement = makeValueFromTargetTuple(builder, field->getFieldType(), tupleElement);
if (!convertedElement)
return nullptr;
resultElements.add(convertedElement);
i++;
}
return builder.emitMakeStruct(type, (UInt)resultElements.getCount(), resultElements.getBuffer());
}
else
{
return nullptr;
}
}
static void generateCppBindingForFunc(IRFunc* func, DiagnosticSink* sink)
{
IRBuilder builder(func);
builder.setInsertBefore(func);
auto hostReturnType = translateToTupleType(builder, func->getResultType());
if (!hostReturnType)
{
sink->diagnose(func->sourceLoc, Diagnostics::invalidTorchKernelReturnType, func->getResultType());
return;
}
List<IRType*> hostParamTypes;
auto funcType = as<IRFuncType>(func->getDataType());
for (UInt i = 0; i < funcType->getParamCount(); i++)
{
hostParamTypes.add(translateToTupleType(builder, funcType->getParamType(i)));
}
auto bindingFuncType = builder.getFuncType(hostParamTypes, hostReturnType);
func->setFullType(bindingFuncType);
builder.setInsertBefore(func->getFirstBlock()->getFirstOrdinaryInst());
List<IRInst*> instsToRemove;
List<IRInst*> oldParams;
for (auto param : func->getFirstBlock()->getParams())
{
oldParams.add(param);
}
List<IRInst*> newParams;
for (auto param : oldParams)
{
auto paramType = param->getFullType();
auto newParamType = translateToTupleType(builder, paramType);
if (!newParamType)
{
sink->diagnose(param->sourceLoc, Diagnostics::invalidTorchKernelParamType, paramType);
return;
}
auto newParam = builder.emitParam(newParamType);
param->transferDecorationsTo(newParam);
newParams.add(newParam);
}
// Convert all new parameters from tuples to their original types.
for (Index i = 0; i < newParams.getCount(); i++)
{
auto oldParam = oldParams[i];
auto newParam = newParams[i];
auto convertedParam = makeValueFromTargetTuple(builder, oldParam->getFullType(), newParam);
if (!convertedParam)
{
return;
}
oldParam->replaceUsesWith(convertedParam);
oldParam->removeAndDeallocate();
}
for (auto block : func->getBlocks())
{
for (auto inst : block->getChildren())
{
if (auto kernelDispatch = as<IRDispatchKernel>(inst))
{
builder.setInsertBefore(kernelDispatch);
List<IRInst*> kernelArgs;
auto kernelArgCount = kernelDispatch->getArgCount();
auto argArrayType = builder.getArrayType(builder.getPtrType(builder.getVoidType()),
builder.getIntValue(builder.getIntType(), kernelArgCount));
auto argArrayVar = builder.emitVar(argArrayType);
for (UInt i = 0; i < kernelArgCount; i++)
{
auto arg = kernelDispatch->getArg(i);
auto argVar = builder.emitVar(arg->getFullType());
builder.emitStore(argVar, arg);
auto addr = builder.emitElementAddress(argArrayVar, builder.getIntValue(builder.getIntType(), i));
builder.emitStore(addr, argVar);
}
auto argArrayPtr = builder.emitElementAddress(argArrayVar, builder.getIntValue(builder.getIntType(), 0));
builder.emitCudaKernelLaunch(
kernelDispatch->getBaseFn(),
kernelDispatch->getDispatchSize(),
kernelDispatch->getThreadGroupSize(),
argArrayPtr,
builder.emitGetTorchCudaStream());
instsToRemove.add(inst);
}
else if (auto getView = as<IRTorchTensorGetView>(inst))
{
builder.setInsertBefore(getView);
auto makeView = builder.emitMakeTensorView(getView->getFullType(), inst->getOperand(0));
getView->replaceUsesWith(makeView);
instsToRemove.add(getView);
}
else if (auto ret = as<IRReturn>(inst))
{
builder.setInsertBefore(ret);
auto retVal = makeTargetTuple(builder, ret->getVal());
ret->setOperand(0, retVal);
}
}
}
for (auto inst : instsToRemove)
inst->removeAndDeallocate();
}
void generatePyTorchCppBinding(IRModule* module, DiagnosticSink* sink)
{
List<IRFunc*> workList;
List<IRFunc*> cudaKernels;
for (auto globalInst : module->getGlobalInsts())
{
auto func = as<IRFunc>(globalInst);
if (!func)
continue;
if (func->findDecoration<IRTorchEntryPointDecoration>())
{
workList.add(func);
}
else if (func->findDecoration<IRCudaKernelDecoration>())
{
cudaKernels.add(func);
}
else
{
// Remove all other export decorations if this is not a cuda host func.
if (auto decor = func->findDecoration<IRPublicDecoration>())
decor->removeAndDeallocate();
if (auto decor = func->findDecoration<IRHLSLExportDecoration>())
decor->removeAndDeallocate();
if (auto decor = func->findDecoration<IRKeepAliveDecoration>())
decor->removeAndDeallocate();
if (auto decor = func->findDecoration<IRDllExportDecoration>())
decor->removeAndDeallocate();
}
}
for (auto func : workList)
generateCppBindingForFunc(func, sink);
for (auto func : cudaKernels)
{
for (auto block = func->getFirstBlock(); block;)
{
auto nextBlock = block->getNextBlock();
block->removeAndDeallocate();
block = nextBlock;
}
}
}
// Remove all [TorchEntryPoint] functions when emitting CUDA source.
void removeTorchKernels(IRModule* module)
{
List<IRInst*> toRemove;
for (auto globalInst : module->getGlobalInsts())
{
if (!as<IRFunc>(globalInst))
continue;
if (globalInst->findDecoration<IRTorchEntryPointDecoration>())
toRemove.add(globalInst);
}
for (auto inst : toRemove)
inst->removeAndDeallocate();
}
}
|