UoB-HPC / stdpar-nbody

https://research-information.bris.ac.uk/en/publications/efficient-tree-based-parallel-algorithms-for-n-body-simulations-u
MIT License
2 stars 0 forks source link

Store one parent per sibling group #11

Closed gonzalobg closed 5 months ago

gonzalobg commented 5 months ago

A sibling group is a group of nodes that share the same parent node (they are the children of that parent). Since all nodes in the group share the same parent, we don't need to store the parent per node, but rather per sibling group.

This PR changes the implementation from "storing a parent per node" to "store a parent per sibling group".

limefax commented 5 months ago

Closes #12