Skip to content

Commit

Permalink
[vulkan] suppress VUID-RuntimeSpirv-None-06343
Browse files Browse the repository at this point in the history
Validation layers are complaining subgroup operations
are being used but compute is not in the subgroupSupportedStages

Bug: 385090855
Change-Id: I1b531f40338bff9626a60be94afceb9fdb112833
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/220114
Reviewed-by: Alan Baker <[email protected]>
Auto-Submit: David Neto <[email protected]>
Commit-Queue: David Neto <[email protected]>
Reviewed-by: Stephen White <[email protected]>
  • Loading branch information
dneto0 authored and Dawn LUCI CQ committed Dec 19, 2024
1 parent f3876f9 commit bd302da
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/dawn/native/vulkan/BackendVk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,11 @@ constexpr SkippedMessage kSkippedMessages[] = {
"SPIR-V Capability GroupNonUniformShuffleRelative was declared, but"},
{"VUID-VkShaderModuleCreateInfo-pCode-08740",
"SPIR-V Capability GroupNonUniformVote was declared, but"},

// crbug.com/385090855
{"VUID-RuntimeSpirv-None-06343",
"Group operations with subgroup scope must not be used if the shader stage is not in "
"subgroupSupportedStages"},
};

namespace dawn::native::vulkan {
Expand Down

0 comments on commit bd302da

Please sign in to comment.