summaryrefslogtreecommitdiff
path: root/tests/cooperative-matrix/array.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cooperative-matrix/array.slang')
-rw-r--r--tests/cooperative-matrix/array.slang36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/cooperative-matrix/array.slang b/tests/cooperative-matrix/array.slang
new file mode 100644
index 000000000..b46c0f66b
--- /dev/null
+++ b/tests/cooperative-matrix/array.slang
@@ -0,0 +1,36 @@
+//TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-vk -output-using-type -emit-spirv-directly
+
+// CHECK: type: float
+// CHECK: 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=[1.0 2.0 3.0 4.0], stride=256),name=input1
+ByteAddressBuffer input1;
+
+//TEST_INPUT:ubuffer(data=[5.0 6.0 7.0 8.0], stride=256),name=input1
+ByteAddressBuffer input2;
+
+//TEST_INPUT:ubuffer(stride=4, count=256):out,name=outputBuffer
+RWStructuredBuffer<float> outputBuffer;
+
+typealias CoopMatType = CoopMat<float, CoopMatScope::Subgroup, 16, 16, CoopMatMatrixUse::MatrixAccumulator>;
+
+[numthreads(32, 1, 1)]
+void computeMain()
+{
+ let stride = 16;
+ let matrixLayout = CoopMatMatrixLayout::RowMajor;
+
+ CoopMatType coopMatArray[2];
+ coopMatArray[0] = CoopMatType.load(input1, 0, stride, matrixLayout);
+ coopMatArray[1] = CoopMatType.load(input2, 0, stride, matrixLayout);
+
+ coopMatArray[0].store(outputBuffer, 0, stride, matrixLayout);
+ coopMatArray[1].store(outputBuffer, 4, stride, matrixLayout);
+}