-
Notifications
You must be signed in to change notification settings - Fork 2.6k
[BUG FIX] Fix BVH build's radix sort. #1305
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
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
90da431
[BUG FIX] Preserve external forces across sub-steps. (#1290)
LeonLiu4 0864103
[MISC] Reduce warning messages. (#1294)
YilingQiao 8d07248
[MISC] Update default FEM damping 45.0 -> 0.0 (#1288)
Milotrince 6d9f319
bvh query
Libero0809 197453b
Wrap aabb with python AABB class
Libero0809 bf0ee25
move query result batch dim
Libero0809 d385da6
init
Libero0809 fe432f0
Update bvh.py
duburcqa b1a7d2d
tet plane detection
Libero0809 82ffb7e
worked but far from good
Libero0809 0d564a2
add damping
Libero0809 1241c5b
add test
Libero0809 bd5aa0f
change test fem to sapcoupler
Libero0809 122e221
change test name
Libero0809 2778529
code cleanup & bug fix
Libero0809 54d5646
fix test
Libero0809 e74be79
fix test
Libero0809 bf60281
update doc for sap
Libero0809 604aef5
corotated
Libero0809 3845104
init
Libero0809 5cc72a0
fix bug in bvh
Libero0809 07e2112
Merge branch 'main' into bvh
Libero0809 2c24e59
add gpu test
Libero0809 d7889fd
change compute bound to layered reduction
Libero0809 593892b
Merge branch 'main' into bvh
Libero0809 d33f8dc
make tests faster
Libero0809 624eed4
code clean up
Libero0809 98d30ab
removed unused field
Libero0809 5fad9b7
code cleanup
Libero0809 253dc10
Merge branch 'main' into bvh
Libero0809 f04500c
small bug
Libero0809 86b6b2a
Merge branch 'main' into bvh
duburcqa 4e70712
Minor fixes.
duburcqa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Though it has been merged, just to mention there is a built-in parallel prefix sum, which might be useful: https://github.com/taichi-dev/taichi/blob/master/python/taichi/algorithms/_algorithms.py#L42
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh really! This is interesting!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for pointing this out. I think if we are doing prefix sum for just 256 elements, sequential would be fine.