summaryrefslogtreecommitdiff
path: root/tests/compute/assoctype-nested.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compute/assoctype-nested.slang')
-rw-r--r--tests/compute/assoctype-nested.slang3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/compute/assoctype-nested.slang b/tests/compute/assoctype-nested.slang
index b3d96306b..6f267a780 100644
--- a/tests/compute/assoctype-nested.slang
+++ b/tests/compute/assoctype-nested.slang
@@ -2,6 +2,7 @@
// Confirm that an associated type can be declared nested in its parent.
+//TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -cpu
//TEST(compute):COMPARE_COMPUTE_EX:-slang -compute
//TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -dx12
//TEST(compute, vulkan):COMPARE_COMPUTE_EX:-vk -compute
@@ -48,7 +49,7 @@ int test(int val)
return helper(strategy, val);
}
-//TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):dxbinding(0),glbinding(0),out
+//TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):dxbinding(0),glbinding(0),out,name=gOutputBuffer
RWStructuredBuffer<int> gOutputBuffer;
[numthreads(4, 1, 1)]