From 8ff7412f988c77f21196b907820b94aa67eb6f21 Mon Sep 17 00:00:00 2001 From: "YONGH\\yongh" Date: Thu, 19 Oct 2017 18:18:21 -0400 Subject: Support running and comparing execution results of compute shaders in testing framework. --- tests/compute/simple.slang | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/compute/simple.slang (limited to 'tests/compute/simple.slang') diff --git a/tests/compute/simple.slang b/tests/compute/simple.slang new file mode 100644 index 000000000..3f43c8cc7 --- /dev/null +++ b/tests/compute/simple.slang @@ -0,0 +1,11 @@ +//TEST(smoke,compute):COMPARE_COMPUTE: + +// This is a basic test for Slang compute shader. + +RWStructuredBuffer outputBuffer; + +[numthreads(4, 1, 1)] +void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID) +{ + outputBuffer[dispatchThreadID.x] = float(dispatchThreadID.x); +} \ No newline at end of file -- cgit v1.2.3