Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

I have come accross this c++ threadpool

8 views
Skip to first unread message

Ramine

unread,
Feb 14, 2017, 12:46:05 PM2/14/17
to
Hello....

I have come accross this c++ threadpool:

https://github.com/inkooboo/thread-pool-cpp

Although they say that it is highly scalable and fast,
I really think that my efficient Threadpool engine that
scales well is more efficient, because my efficient
threadpool that scales well supports the following:

- Now it can use processor groups on windows, so that it can use more
than 64 logical processors and it scales well.

The following have been added to my efficient Threadpool engine:

- The worker threads enters in a wait state when there is no job in the
concurrent FIFO queues - for more efficiency -

- You can distribute your jobs to the worker threads and call any method
with the threadpool's execute() method.

- It uses work-stealing to be more efficient.

- You can configure it to use stacks or FIFO queues , when you use
stacks it will be cache efficient.

- Now it can use processor groups on windows, so that it can use more
than 64 logical processors and it scales well.

- Now it distributes the jobs on multiple FIFO queues or stacks so that
it scales well.

- You can wait for the jobs to finish with the wait() method.

- It's NUMA-aware and NUMA efficient.


You can download it from:

https://sites.google.com/site/aminer68/an-efficient-threadpool-engine-that-scales-well

And you can download my efficient Threadpool engine with priorities
that scales well from:

https://sites.google.com/site/aminer68/an-efficient-threadpool-engine-with-priorities-that-scales-well


Thank you,
Amine Moulay Ramdane.

0 new messages