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
Currently, from some benchmarks, it seems that the huge bottleneck is Pqueue.extract_min_exn (which re-balances the priority queue). The Domain_elt.compare is also called a lot (probably due to cancelled tasks). We should take a deeper look on the implementation.
The text was updated successfully, but these errors were encountered:
I've noticed quite a few allocations in the major heap with this implementation but with other observation tools, it seems that Miou_pqueue (the proved impl.) isn't Miou's biggest problem. There are still some interesting areas for optimisation (inlining of Vector.get, the functor doesn't allow you to inline the function compare elements, etc.). It's clearly a low priority.
I'll leave this issue open, however, if one day implementation becomes a real problem.
Currently, from some benchmarks, it seems that the huge bottleneck is
Pqueue.extract_min_exn
(which re-balances the priority queue). TheDomain_elt.compare
is also called a lot (probably due to cancelled tasks). We should take a deeper look on the implementation.The text was updated successfully, but these errors were encountered: