Use less allocations on UGGrid intersection geometries
Currently, UGGrid intersection geometries do many allocations for very small objects. In simple simulations I get millions (!) of allocation calls due to this, a few orders of magnitude higher than any other allocation in a simulation. This happens because
- The geometry object is stored as a shared pointer. While this is handy when having several geometries referring to the same intersection, this is barely of any use as we mostly expect people to have one geometry and get it from the entity. An optional type is more appropriate here.
- The coordinates are a
std::vector
of field vectors that need to be created for every geometry. This MR uses the suggestion by @oliver.sander by storing the coordinates wither withstd::array
orDune::ReservedVector
depending on the dimension of the geometry. - Every new intersection stores a
std::vector
of faces. While this is needed for the non-conforming case, it penalizes the common case where there is one or no faces neighboring the intersection. This can be solved by properly using a union type, i.e.std::variant
The current MR mitigates the first issue by using std::optional
, the second by storing coordinates on std::array
or Dune::ReservedVector
, and the third one by using std::variant
. All of them optimized to not allocate anything on the hot-path but still be flexible to allocate if needed.
Merge request reports
Activity
added feature label
added 1 commit
- 4d673cd7 - Use optional & move coordinates into geometry
assigned to @santiago.ospina
requested review from @oliver.sander
- Resolved by Santiago Ospina De Los Ríos
@oliver.sander I think we can merge this as it is since this should be straight forward and uncontroversial, and we can discuss the second problem elsewhere.
added 1 commit
- 0b8f3e01 - Add wrapper that generates coordinates on the fly
added 1 commit
- 49d8bed2 - Add wrapper that generates coordinates on the fly
added 1 commit
- 675cccfd - Add wrapper that generates coordinates on the fly
added 1 commit
- ebc64415 - Reduce size of functors to avoid allocations
added 1 commit
- a2995756 - Reduce size of functors to avoid allocations
- Resolved by Santiago Ospina De Los Ríos
Since the whole point of this MR is performance, are there any benchmarks?
- Resolved by Santiago Ospina De Los Ríos
- Resolved by Santiago Ospina De Los Ríos
Santiago, thanks for working on this. It would be helpful, though, if we could split the MR into two parts. Replacing smart pointers by
std::optional
looks convincing to me, and we could probably merge that quickly. The rest of your changes is less obvious, and would need more time.
added 11 commits
-
9cc211bd...1c7d360a - 6 commits from branch
master
- ef739516 - Use optional & move coordinates into geometry
- 7d272afe - Add wrapper that generates coordinates on the fly
- 34a0b3a9 - Avoid allocating a vector of faces when intersection has only one face
- 35a0de4a - Reduce size of functors to avoid allocations
- 41921dd0 - Add CHANGELOG entry
Toggle commit list-
9cc211bd...1c7d360a - 6 commits from branch
- Resolved by Santiago Ospina De Los Ríos
- Resolved by Santiago Ospina De Los Ríos
added 5 commits
-
24f369c3...287f7fe7 - 2 commits from branch
master
- 008a3826 - Use std::optional to store multilinear geometries & move coordinates
- a790c5a9 - Use std::variant in intersection to store a face, a face vector, or none
- feff7a8b - Store UGGeometry corner coordinates on the stack
Toggle commit list-
24f369c3...287f7fe7 - 2 commits from branch
- Resolved by Santiago Ospina De Los Ríos
- Resolved by Santiago Ospina De Los Ríos
- Resolved by Santiago Ospina De Los Ríos
- Resolved by Santiago Ospina De Los Ríos
Thank you Santiago. Please fix the three very minor issues that I found, and then feel free to merge yourself.
enabled an automatic merge when all merge checks for 22c468b1 pass
mentioned in commit 5a4a50f8
- Resolved by Santiago Ospina De Los Ríos
Hi @santiago.ospina , this merge request produced new signed vs. unsigned warnings. Can you please fix those? Thank you!
mentioned in merge request !759 (closed)