Several improvements were added especially this one https://github.com/nim-lang/Nim/issues/8745 is partially addressed, Nim was zero-ing memory needlessly when constructing the (Node, Node) (tuple of ref types) result value.
I've noticed perf degradation of 30% to 6x, and 1.82x on this specific bench.
Can you redo the benchmark with Nim 0.19?
Several improvements were added especially this one https://github.com/nim-lang/Nim/issues/8745 is partially addressed, Nim was zero-ing memory needlessly when constructing the
(Node, Node)
(tuple of ref types) result value.I've noticed perf degradation of 30% to 6x, and 1.82x on this specific bench.
Thank you!