Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for SPV_KHR_ray_tracing. #2780

Merged
merged 5 commits into from
Mar 23, 2020

Conversation

alelenv
Copy link
Contributor

@alelenv alelenv commented Mar 19, 2020

Added support for generating SPIR-V for provisional cross vendor spec.
By default we generate code for NV extension(to preserve compatibility) and enable KHR extension using -fspv-extension=SPV_KHR_ray_tracing

Note: Opcodes for KHR extension alias with NV other than below

  1. GeometryIndex() is supported only in KHR extension.
  2. New Capability : CapabilityRayTracingProvisionalKHR.

Added unit test and updated documentation

Once provisional spec is ratified to final, i plan to cleanup existing NV suffixes used for various internal symbols( for ex IK_RayTracingOpNV) and generate code for KHR by default

@ehsannas @jaebaek : Please review or redirect to appropriate folks
Thanks!

@ehsannas ehsannas self-requested a review March 19, 2020 19:16
@ehsannas ehsannas added the spirv Work related to SPIR-V label Mar 19, 2020
@AppVeyorBot
Copy link

Copy link
Contributor

@ehsannas ehsannas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the PR @alelenv .

Once provisional spec is ratified to final, i plan to cleanup existing NV suffixes used for various internal symbols( for ex IK_RayTracingOpNV) and generate code for KHR by default

That would be great. The compiler should by default generate SPIR-V that is compatible with core Vulkan, and generate KHR extensions as a secondary measure if necessary (since many KHR extensions end up getting into the next core Vulkan version), and only generate vendor-specific extensions as a last resort. So the default should be KHR, and -fspv-extension=<vendor-ext> should be used if the user wants to generate a vendor-specific SPIR-V. I understand the hit to backward compatibility. We should have enabled the NV extension under the -fspv-extension=SPV_NV_ray_tracing option from the beginning. That was an oversight (in this particular case, the NV extension was available so much earlier than the KHR extension, and it was not even clear whether there would ever be a KHR extension at the time).

@AppVeyorBot
Copy link

@alelenv
Copy link
Contributor Author

alelenv commented Mar 20, 2020

@ehsannas : Thanks for the review. I have updated the default to target KHR extension

Copy link
Contributor

@ehsannas ehsannas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! Thanks @alelenv

@ehsannas ehsannas merged commit 04a84f0 into microsoft:master Mar 23, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
spirv Work related to SPIR-V
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants