Runtime of SegmentMesher

Hello all,
Is there any way to speed up generating mesh using SegmentMesher?
Is it possible to use GPU for these calculations or is it possible to run in parallel? or are there any other suggestions?
Thanks for your help.

Volumetric meshing is typically not a time-constrained task, so processing time is usually not a priority when developing meshing algorithms.

Cleaver2 is actually a very fast method and it is nicely configurable to balance between mesh resolution, quality, and processing time.

GPU (or many-core CPU) can only make an algorithm faster if you can split the processing to many independent tasks. Unfortunately, most algorithms are sequential in nature and you need to make significant effort to redesign them to allow running some parts of it in parallel.

I would recommend to contact the Cleaver team about possible performance optimizations and/or do some profiling yourself and see if you can make things run faster.

1 Like

Thank you very much for your response.