You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 9, 2025. It is now read-only.
Code like below (taken from the link) calls build_node_list three times, and there's a chance this causes the compile to recompute the list with every call. There is significant compilation overhead in this project, so I wouldn't be surprised if this is the case.
auto list = build_node_list();
auto tree = std::span(new node[tree_count()] {}, tree_count());
Need to minimize recomputation, or find ways to avoid it altogether.
See here.
Code like below (taken from the link) calls
build_node_listthree times, and there's a chance this causes the compile to recompute the list with every call. There is significant compilation overhead in this project, so I wouldn't be surprised if this is the case.Need to minimize recomputation, or find ways to avoid it altogether.