blob: 5d36e79f1d9670662d8a35655a5528a52a7240dc (
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
|
//DISABLED_TEST(compute):COMPARE_COMPUTE:
//TEST_INPUT: cbuffer(data=[1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0], stride=4):name impl
//TEST_INPUT: ubuffer(data=[0], stride=4):out,name outputBuffer
//TEST_INPUT: type Pair<Arr<Base,1>, Pair<Arr<Base,2> , Base> >
RWStructuredBuffer<float> outputBuffer;
import globalTypeParamArrayShared;
float doCompute<T:IBase>(T t)
{
return t.compute(1.0);
}
[numthreads(1, 1, 1)]
void computeMain<
TImpl : IBase>(
uniform ParameterBlock<TImpl> impl,
uint3 dispatchThreadID : SV_DispatchThreadID)
{
uint tid = dispatchThreadID.x;
float outVal = doCompute<TImpl>(impl);
outputBuffer[tid] = outVal;
}
|