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

STL optimization: Bounding volume hierarchy #4140

Open
wants to merge 9 commits into
base: development
Choose a base branch
from

Commits on Sep 8, 2024

  1. STL optimization: Bounding volume hierarchy

    Speed up EB geometry generation with STL by using the bounding volume
    hierarchy (BVH) method. The BVH tree is stored in a contiguous chunk of
    memory making it easier for GPUs. Using a fixed size stack, recursion is
    avoided when traversing the tree.
    WeiqunZhang committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    2b4eb94 View commit details
    Browse the repository at this point in the history
  2. Fix warnings

    WeiqunZhang committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    0e7816e View commit details
    Browse the repository at this point in the history
  3. Fix warning

    WeiqunZhang committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    3420c31 View commit details
    Browse the repository at this point in the history
  4. Add reference

    WeiqunZhang committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    d05d366 View commit details
    Browse the repository at this point in the history
  5. minor

    WeiqunZhang committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    3642983 View commit details
    Browse the repository at this point in the history
  6. const

    WeiqunZhang committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    e1d653f View commit details
    Browse the repository at this point in the history
  7. reserve size

    WeiqunZhang committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    3ab7b9d View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Configuration menu
    Copy the full SHA
    bddfa15 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. Configuration menu
    Copy the full SHA
    1e45bf0 View commit details
    Browse the repository at this point in the history