Extending VectorTypes for double precision types#80
Merged
natevm merged 2 commits intogprt-org:masterfrom Jul 16, 2025
Merged
Conversation
Contributor
|
Our host-side math backend is pretty chaotic. A lot of it was taken from Falcor. At some point, I'd like to more directly integrate Slang's math library which comes bundled with the Vulkan SDK. In the interim, hacks are welcome. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR extends the
VectorTypes.hto also include definitions fordouble1,double2,double3anddouble4for use within GPRT shaders.As part of the XDG project, we would like an implementation of double precision ray tracing using GPRT similar to the h5m-reader. In the past, it seems GPRT also included a
linalg.hheader, see gprt @ 77642f2 which was used within the h5m-reader to create double precision buffers.At some point though the
linalg.hheader has been replaced by the math utlities found here https://github.com/gprt-org/GPRT/tree/master/gprt/math, which do not currently include any definitions for vectors of doubles.This may be missing some additional utility/functions but as far as a I can tell it does work.