summaryrefslogtreecommitdiff
path: root/tests/cooperative-vector/CoopVec/array.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cooperative-vector/CoopVec/array.slang')
-rw-r--r--tests/cooperative-vector/CoopVec/array.slang25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/cooperative-vector/CoopVec/array.slang b/tests/cooperative-vector/CoopVec/array.slang
deleted file mode 100644
index b63ff2f91..000000000
--- a/tests/cooperative-vector/CoopVec/array.slang
+++ /dev/null
@@ -1,25 +0,0 @@
-//DISABLE_TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-vk -output-using-type -xslang -skip-spirv-validation
-
-// CHECK: type: float
-// CHECK-NEXT: 1.000000
-// CHECK-NEXT: 2.000000
-// CHECK-NEXT: 3.000000
-// CHECK-NEXT: 4.000000
-// CHECK-NEXT: 5.000000
-// CHECK-NEXT: 6.000000
-// CHECK-NEXT: 7.000000
-// CHECK-NEXT: 8.000000
-
-//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0], stride=4):out,name=outputBuffer
-RWStructuredBuffer<float> outputBuffer;
-
-[numthreads(1, 1, 1)]
-void computeMain()
-{
- CoopVec<float, 4> vecArray[2];
- vecArray[0] = CoopVec<float, 4>(1.0, 2.0, 3.0, 4.0);
- vecArray[1] = CoopVec<float, 4>(5.0, 6.0, 7.0, 8.0);
-
- vecArray[0].store(outputBuffer, 0);
- vecArray[1].store(outputBuffer, 16);
-}