diff options
Diffstat (limited to 'tests/compute/dynamic-dispatch-4.slang')
| -rw-r--r-- | tests/compute/dynamic-dispatch-4.slang | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/compute/dynamic-dispatch-4.slang b/tests/compute/dynamic-dispatch-4.slang new file mode 100644 index 000000000..391ff3fd8 --- /dev/null +++ b/tests/compute/dynamic-dispatch-4.slang @@ -0,0 +1,46 @@ +//TEST(compute):COMPARE_COMPUTE:-cpu -xslang -allow-dynamic-code +//DISABLE_TEST(compute):COMPARE_COMPUTE:-cuda -xslang -allow-dynamic-code + +// Test dynamic dispatch code gen for generic-typed local variables. + +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; +} |
