From 439e025c1d3c58cc261c36f1e8d804a403b2856a Mon Sep 17 00:00:00 2001 From: ArielG-NV <159081215+ArielG-NV@users.noreply.github.com> Date: Tue, 15 Jul 2025 17:48:30 -0700 Subject: 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 --- tests/cooperative-vector/load-store-arbitrary-array-vec.slang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/cooperative-vector/load-store-arbitrary-array-vec.slang') diff --git a/tests/cooperative-vector/load-store-arbitrary-array-vec.slang b/tests/cooperative-vector/load-store-arbitrary-array-vec.slang index 39ab45618..87522acab 100644 --- a/tests/cooperative-vector/load-store-arbitrary-array-vec.slang +++ b/tests/cooperative-vector/load-store-arbitrary-array-vec.slang @@ -31,5 +31,5 @@ void computeMain() vec.storeAny(temp); let result = CoopVec.loadAny(temp); for(int i = 0; i < result.getCount(); ++i) - outputBuffer[i] = result[i];; + outputBuffer[i] = result[i]; } -- cgit v1.2.3