gDel3D
gDel3D copied to clipboard
gDel3D is the fastest 3D Delaunay triangulation algorithm. It uses the GPU for massive parallelism.
Hello, Thanks for your code, which looks promising. I've added it to my project, and I'm able to triangulate a point cloud. But I'd like some help on how to...
Hello, I'm running into memory issues when running the code on AWS instances with 8GB + of GPU memory. I am working with large datasets (they can be up to...
Hello! When running this program, I came across two problems which say " CUDA error 8 [c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\iterator\../util_device.cuh, 151]: invalid device function " and " CUDA error...
Hi, I am loading my own point cloud file (xyz format) and calculating the triangulation. I need the triangle faces created by the algorithm, but I can get only a...
Hello, I am getting the error thrust has no member device_malloc. Any ideas on how to correct this issue? ``` /home/gFlip3D-Release_271/GDelFlipping/src/gDel3D/GPU/ThrustWrapper.cu(121): error: namespace "thrust" has no member "device_malloc" /home/gFlip3D-Release_271/GDelFlipping/src/gDel3D/GPU/ThrustWrapper.cu(121): error:...
Hello editor, I'm a C++ language rookie, when I compiled your code on Windows10, I met some problems, so I would like to ask you with my great gratitude. My...
Hello, Has anyone made a docker image that will run this library or is there anyone that can tell me which docker image to start from that would be easy...
as in the title. I am implementing a progressive TIN densification algorithm. It requires an incremental Delaunay TIN construction algorithm. There is a lib named incremental-delaunay, but it is in...
Thanks for releasing this amazing project! I have read your thesis and tried your code. I learned from your thesis that: ``` [1] The limitation of gStar4D is that it...