-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Add support for torch_delaunay package in Delaunay transformation
#9748
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
Conversation
This patch adds support of torch_delaunay package, which works with Torch tensors. The new implementation uses `torch_delaunay` package if it is installed (by default), and then falls back to the `scipy` implementation otherwise.
1894160 to
df5fa49
Compare
rusty1s
left a comment
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.
Very cool :)
torch_delaunay package in Delaunay transformation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #9748 +/- ##
==========================================
- Coverage 88.13% 87.32% -0.81%
==========================================
Files 482 482
Lines 31421 31451 +30
==========================================
- Hits 27693 27466 -227
- Misses 3728 3985 +257 ☔ View full report in Codecov by Sentry. |
…pyg-team#9748) This patch adds support of torch_delaunay package, which works with Torch tensors. The new implementation uses `torch_delaunay` package if it is installed (by default), and then falls back to the `scipy` implementation otherwise. --------- Co-authored-by: rusty1s <[email protected]>
This patch adds support of torch_delaunay package, which works with Torch tensors. The new implementation uses
torch_delaunaypackage if it is installed (by default), and then falls back to thescipyimplementation otherwise.