summaryrefslogtreecommitdiff
path: root/tests/cooperative-vector/matrix-mul-structuredbuffer-packed.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cooperative-vector/matrix-mul-structuredbuffer-packed.slang')
-rw-r--r--tests/cooperative-vector/matrix-mul-structuredbuffer-packed.slang6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cooperative-vector/matrix-mul-structuredbuffer-packed.slang b/tests/cooperative-vector/matrix-mul-structuredbuffer-packed.slang
index b83b4e1e7..b3f076731 100644
--- a/tests/cooperative-vector/matrix-mul-structuredbuffer-packed.slang
+++ b/tests/cooperative-vector/matrix-mul-structuredbuffer-packed.slang
@@ -1,5 +1,5 @@
-// Disabled because of Vulkan validation error
-//DISABLE_TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-vk -render-feature cooperative-vector -output-using-type
+// Fails because VVL 1.4.313.0 has a bug that sees int32_t as uint32_t in validation layers, issue #7715
+//TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-vk -render-feature cooperative-vector -output-using-type
// These platforms don't support these operations from structured buffers
//DISABLE_TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-cpu -output-using-type
@@ -39,5 +39,5 @@ void computeMain()
);
for(int i = 0; i < result.getCount(); ++i)
- outputBuffer[i] = result[i];;
+ outputBuffer[i] = result[i];
}