summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Kwak <82421531+jkwak-work@users.noreply.github.com>2025-10-07 01:55:28 -0700
committerGitHub <noreply@github.com>2025-10-07 08:55:28 +0000
commit36ed0362dcfe6a40570beb12c78d24c00ab051d6 (patch)
tree5bb721e870cb5edb4892b3b22fabae136ee6475d
parent9f9d28c1f496132dc71b80252b0eeddfa28cc8bc (diff)
Disable branching subgroup test for WGSL (#8614)
WGSL doesn't allow subgroup related functions in a branching. It must be used in a uniform flow. This commit disables a test for such case. Note that the test was supposed to be disabled on the previous PR, but it was mistakenly not disabled. - #8386
-rw-r--r--tests/hlsl-intrinsic/wave-is-first-lane.slang4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hlsl-intrinsic/wave-is-first-lane.slang b/tests/hlsl-intrinsic/wave-is-first-lane.slang
index 5150c506e..c4055951d 100644
--- a/tests/hlsl-intrinsic/wave-is-first-lane.slang
+++ b/tests/hlsl-intrinsic/wave-is-first-lane.slang
@@ -6,8 +6,8 @@
//TEST:COMPARE_COMPUTE_EX:-cuda -compute -capability cuda_sm_7_0 -shaderobj
//TEST:COMPARE_COMPUTE_EX:-metal -compute -shaderobj
-// WGSL doesn't support wave functions in a dynamic control flow; it works with uniform control flow.
-//TEST:COMPARE_COMPUTE_EX:-wgpu -compute -shaderobj
+// WGSL doesn't support wave functions in a dynamic control flow; it works only with uniform control flow.
+//DISABLE_TEST:COMPARE_COMPUTE_EX:-wgpu -compute -shaderobj
//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0], stride=4):out,name outputBuffer
RWStructuredBuffer<int> outputBuffer;