radv: advertise VK_KHR_shader_float_controls2

Reviewed-by: Rhys Perry <pendingchaos02@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31172>
This commit is contained in:
Georg Lehmann
2024-09-13 20:41:31 +02:00
committed by Marge Bot
parent b20d793774
commit bc3b8c3a13
3 changed files with 6 additions and 1 deletions

View File

@@ -545,7 +545,7 @@ Khronos extensions that are not part of any Vulkan version:
VK_KHR_ray_tracing_position_fetch DONE (anv, radv/gfx10.3+)
VK_KHR_shader_clock DONE (anv, hasvk, lvp, nvk, radv, vn)
VK_KHR_shader_expect_assume DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
VK_KHR_shader_float_controls2 DONE (anv, tu)
VK_KHR_shader_float_controls2 DONE (anv, radv, tu)
VK_KHR_shader_maximal_reconvergence DONE (anv, lvp, nvk, radv)
VK_KHR_shader_subgroup_rotate DONE (anv, nvk, radv)
VK_KHR_shader_subgroup_uniform_control_flow DONE (anv, hasvk, nvk, radv, tu)

View File

@@ -15,3 +15,4 @@ VK_KHR_compute_shader_derivatives on nvk
VK_KHR_compute_shader_derivatives on radv
VK_KHR_shader_relaxed_extended_instruction on anv, hasvk, hk, nvk, radv, tu, v3dv, lvp
GL_OVR_multiview and GL_OVR_multiview2 on zink
VK_KHR_shader_float_controls2 on radv

View File

@@ -555,6 +555,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
.KHR_shader_expect_assume = true,
.KHR_shader_float16_int8 = true,
.KHR_shader_float_controls = true,
.KHR_shader_float_controls2 = true,
.KHR_shader_integer_dot_product = true,
.KHR_shader_maximal_reconvergence = true,
.KHR_shader_non_semantic_info = true,
@@ -1245,6 +1246,9 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
/* VK_KHR_shader_relaxed_extended_instruction */
.shaderRelaxedExtendedInstruction = true,
/* VK_KHR_shader_float_controls2 */
.shaderFloatControls2 = true,
};
}