Is your feature request related to a problem? Please describe.
Currently DXC only supports SPV_NV_compute_shader_derivatives and lacks support for SPV_KHR_compute_shader_derivatives
Shaders failed to execute on GPUs supporting KHR_compute_shader_derivatives instead of NV_compute_shader_derivatives
Describe the solution you'd like
Adding support for the official Khronos extension.
Describe alternatives you've considered
N/A
Additional context
Both extension are identical, adding support for KHR_compute_shader_derivatives is trivial. and only require adding the extension and its name to a few functions.
We have precedent for a similar situation we support the Nvidia and the official extensions for ray query, we select the official one by default.
Is your feature request related to a problem? Please describe.
Currently DXC only supports
SPV_NV_compute_shader_derivativesand lacks support forSPV_KHR_compute_shader_derivativesShaders failed to execute on GPUs supporting
KHR_compute_shader_derivativesinstead ofNV_compute_shader_derivativesDescribe the solution you'd like
Adding support for the official Khronos extension.
Describe alternatives you've considered
N/A
Additional context
Both extension are identical, adding support for KHR_compute_shader_derivatives is trivial. and only require adding the extension and its name to a few functions.
We have precedent for a similar situation we support the Nvidia and the official extensions for ray query, we select the official one by default.