summaryrefslogtreecommitdiffstats
path: root/tests/language-feature/capability
diff options
context:
space:
mode:
authorDarren Wihandi <65404740+fairywreath@users.noreply.github.com>2025-05-25 12:58:08 -0400
committerGitHub <noreply@github.com>2025-05-25 09:58:08 -0700
commit0476b57faad96bee61f59f27ddd48c6cb067cfa2 (patch)
treed3fe49cd906c29b03b2a840dd2c057ccc331b4f7 /tests/language-feature/capability
parent554be7a5f990df19a21db10b4e5dc0285cbe8168 (diff)
Add full support for SPV_NV_shader_subgroup_partitioned (#7103)
* Properly implement WaveMask* variants of WaveMultiPrefix* intrinsics * More partitioned intrinsics * More partitioned intrinsics and cleaned up non-prefixed WaveMask* implementations * Refactor HLSL WaveMultiPrefix* implementations * fix cap atoms * Clean up implementation * Add GLSL intrinsics and cleanup * Add tests * Fix affected capability test * Update and fix tests * Move expected.txt file * Refactor WaveMask* to call WaveMulti* * Refactor SPIRV/GLSL preamble code * Enable emit-via-glsl tests * remove wave_multi_prefix capability in favor of subgroup_partitioned * Update docs * Update cap atoms doc
Diffstat (limited to 'tests/language-feature/capability')
-rw-r--r--tests/language-feature/capability/testing-framework-with-profiles.slang2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/language-feature/capability/testing-framework-with-profiles.slang b/tests/language-feature/capability/testing-framework-with-profiles.slang
index 215ba887e..97ff32a9d 100644
--- a/tests/language-feature/capability/testing-framework-with-profiles.slang
+++ b/tests/language-feature/capability/testing-framework-with-profiles.slang
@@ -17,5 +17,5 @@ RWStructuredBuffer<uint> outputBuffer;
void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
{
// BUF: 1
- outputBuffer[0] = WaveMaskSum(0xFF, 1);
+ outputBuffer[0] = WaveActiveSum(1);
}