mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 12:08:06 +02:00
Revert "radv: disable VK_SUBGROUP_FEATURE_VOTE_BIT"
This reverts commit647c2b90e9. There was one recently-introduced bug in ac for dvec3 loads, but the other test failures were actually bugs in the tests. See9429e621c4Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
cc71bf529c
commit
ba94a00c7c
1 changed files with 2 additions and 4 deletions
|
|
@ -1054,13 +1054,11 @@ void radv_GetPhysicalDeviceProperties2(
|
|||
(VkPhysicalDeviceSubgroupProperties*)ext;
|
||||
properties->subgroupSize = 64;
|
||||
properties->supportedStages = VK_SHADER_STAGE_ALL;
|
||||
/* TODO: Enable VK_SUBGROUP_FEATURE_VOTE_BIT when wwm
|
||||
* is fixed in LLVM.
|
||||
*/
|
||||
properties->supportedOperations =
|
||||
VK_SUBGROUP_FEATURE_BASIC_BIT |
|
||||
VK_SUBGROUP_FEATURE_BALLOT_BIT |
|
||||
VK_SUBGROUP_FEATURE_QUAD_BIT;
|
||||
VK_SUBGROUP_FEATURE_QUAD_BIT |
|
||||
VK_SUBGROUP_FEATURE_VOTE_BIT;
|
||||
if (pdevice->rad_info.chip_class >= VI) {
|
||||
properties->supportedOperations |=
|
||||
VK_SUBGROUP_FEATURE_ARITHMETIC_BIT |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue