Revision b1384a9addfdcbc16ae0e11b85ae2f6ba08f999b authored by jsmall-nvidia on 29 October 2021, 21:19:12 UTC, committed by GitHub on 29 October 2021, 21:19:12 UTC
* #include an absolute path didn't work - because paths were taken to always be relative.

* Update slang-llvm deps.
1 parent 22e7f3f
Raw File
dynamic-dispatch-8.slang
//TEST(compute):COMPARE_COMPUTE:-dx11 -shaderobj
//TEST(compute):COMPARE_COMPUTE:-vk -shaderobj
//TEST(compute):COMPARE_COMPUTE:-cpu -xslang -disable-specialization -shaderobj
//TEST(compute):COMPARE_COMPUTE:-cuda -xslang -disable-specialization -shaderobj

// Test dynamic dispatch code gen for extential type parameters.

[anyValueSize(16)]
interface IInterface
{
	int Compute(int inVal);
};

int GenericCompute(IInterface obj, int inVal)
{
	return obj.Compute(inVal);
}

struct Impl : IInterface
{
    int base;
	int Compute(int inVal) { return base + inVal * inVal; }
};

int test(int inVal)
{
    Impl obj;
    obj.base = 1;
	return GenericCompute(obj, inVal);
}

//TEST_INPUT:ubuffer(data=[0 1 2 3], stride=4):out,name=outputBuffer
RWStructuredBuffer<int> outputBuffer;

[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;
}
back to top