clang-uml icon indicating copy to clipboard operation
clang-uml copied to clipboard

Enable parallel processing of multiple TUs for single diagram

Open bkryza opened this issue 5 months ago • 0 comments

Currently, clang-uml processes all translation units for a single diagram sequentially, which means that generating a single large diagram can take a very long time (although several diagrams can be generated in parallel). There should be an option allowing to generate a single diagram in parallel.

Instead of making the intermediate diagram model re-entrant, we can try to generate a separate small model from each TU, and then combine them at the end into a single diagram (e.g., by implementing operator+()).

bkryza avatar May 25 '25 15:05 bkryza