Sebastiano Vigna

Results 259 comments of Sebastiano Vigna

Well, the whole idea was to avoid Rayon as the bridge is horribly slow and prone to contention (that why we wrote `ParFoldMap`—performance with the bridge was abysmal).

But we can try some benchmarks.

Yeah, that's the idea—we know the parallelism we want, so we do it. And no Rayon overhead.

This will be worked out in the current "de-parameterization" of the parallel code.

What does in addition?

Can you check that in the source you're using (4-space-width) TABs? I had to fix all spacing by hand in the previous PRs.

I'm on vacation now—I will be able to look into this mid-September.

Two observations: - Capacity/toArray is ok but you have to implement it for all queues based on arrays (heap queues and array queues) for uniformity. - toString could be done...