Which is in your opinion the fastest available Delaunay triangulation algorithm for GPU? Or more general, in parallel

link|improve this question

why the down vote? – flow Oct 25 '11 at 14:59
feedback

1 Answer

up vote 2 down vote accepted

Be careful with GPU's: Delaunay Triangulations require orientation tests. These do not work reliably with floating point arithmetic, and it might be hard to cope with that problem using a GPU. Also the memory management is crucial.

You might want to try http://www.geom.at/fade2d/html/ which is among the fastest robust single threaded implementations.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.