diff options
| author | ArielG-NV <159081215+ArielG-NV@users.noreply.github.com> | 2025-07-15 17:48:30 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-16 00:48:30 +0000 |
| commit | 439e025c1d3c58cc261c36f1e8d804a403b2856a (patch) | |
| tree | 7256b0982f4ff5a0587d2bc5a782438ff76b5b7b /tests/cooperative-vector/variadic-init.slang | |
| parent | 223ccd40599ffcd74b409c7321f2264b93aec4bd (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/variadic-init.slang')
| -rw-r--r-- | tests/cooperative-vector/variadic-init.slang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cooperative-vector/variadic-init.slang b/tests/cooperative-vector/variadic-init.slang index 983d5f78b..019a46d75 100644 --- a/tests/cooperative-vector/variadic-init.slang +++ b/tests/cooperative-vector/variadic-init.slang @@ -16,5 +16,5 @@ void computeMain() { let result = CoopVec<int32_t, 4>(1,2,3,4); for(int i = 0; i < result.getCount(); ++i) - outputBuffer[i] = result[i];; + outputBuffer[i] = result[i]; } |
