blob: b2d20020ecca71478ca9a00482914c24d7698e13 (
plain)
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
|
//TEST(compute):COMPARE_COMPUTE:-cpu -xslang -disable-specialization
//TEST(compute):COMPARE_COMPUTE:-cuda -xslang -disable-specialization
// Test dynamic dispatch code gen for generic-typed local variables.
[anyValueSize(8)]
interface IInterface
{
[mutating]
int Compute(int inVal);
};
int GenericCompute<T:IInterface>(int inVal)
{
T obj;
obj.Compute(3);
return obj.Compute(inVal); // 3 + inVal
}
struct Impl : IInterface
{
int base;
[mutating]
int Compute(int inVal)
{
int result = base + inVal;
base = inVal;
return result;
}
};
int test(int inVal)
{
return GenericCompute<Impl>(1);
}
//TEST_INPUT:ubuffer(data=[0 1 2 3], stride=4):out,name=outputBuffer
RWStructuredBuffer<int> outputBuffer : register(u0);
[numthreads(4, 1, 1)]
void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
{
uint tid = dispatchThreadID.x;
int inVal = outputBuffer[tid];
int outVal = test(inVal);
outputBuffer[tid] = outVal;
}
|