summaryrefslogtreecommitdiff
path: root/tests/cooperative-vector/matrix-mul-structuredbuffer-packed.slang
diff options
context:
space:
mode:
authorArielG-NV <159081215+ArielG-NV@users.noreply.github.com>2025-07-15 17:48:30 -0700
committerGitHub <noreply@github.com>2025-07-16 00:48:30 +0000
commit439e025c1d3c58cc261c36f1e8d804a403b2856a (patch)
tree7256b0982f4ff5a0587d2bc5a782438ff76b5b7b /tests/cooperative-vector/matrix-mul-structuredbuffer-packed.slang
parent223ccd40599ffcd74b409c7321f2264b93aec4bd (diff)
Document why failing VVL coop-vec tests cannot be enabled & minor cleanup/bug-fix (#7754)
* Changes Fix a coop-vec bug, fix incorrect test synax, clean up test, comment why some coop-vec tests are stil disabled * Changes Fix a coop-vec bug, fix incorrect test synax, clean up test, comment why some coop-vec tests are stil disabled * disable failing tests * push changes * add to failing GLSL test list
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];
}