blob: 5a975882621012c28eb9761edf32a5b0facebfe5 (
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
|
//TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-cpu -output-using-type
//TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-dx12 -output-using-type -use-dxil
//TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-vk -output-using-type
//TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-vk -output-using-type -emit-spirv-directly
// CHECK: type: uint32_t
// CHECK-NEXT: 1231
// CHECK-NEXT: 1232
// CHECK-NEXT: 1233
// CHECK-NEXT: 1234
// This is a basic test for Slang compute shader.
//TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):out,name=outputBuffer
RWStructuredBuffer<uint> outputBuffer;
groupshared uint myGroupSharedValue = foo();
uint foo()
{
return 1231;
}
[numthreads(4, 1, 1)]
void computeMain(uint i : SV_GroupIndex)
{
outputBuffer[i] = i + myGroupSharedValue;
}
|