Intel® oneAPI Threading Building Blocks
Ask questions and share information about adding parallelism to your applications when using this threading library.
2465 Discussions

Introducing a grain parameter for parallel_while?

Kostas_M_Intel
Employee
275 Views

Hi guys!

I find tbb::parallel_while very useful for my applications. However some experiments showed poor scalability due to a small iteration task weight as comapared with parallel_while and task stealing overheads. The scalability was improved after I enlarged the grain by grouping several iteration items into one item.

I think it could be done more efficiently in parallel_while implementation rather then on client's side. It would be reather useful for users to have a grain parameter (as in parallel_for) to tune their applications as in practice processing the stream itemcan be too light.

What do you think of it?

0 Kudos
1 Reply
Andrey_Marochko
New Contributor III
275 Views
Hi, Kostas

I think it is a good idea deserving further investigation. It may improve the scalability when processing a single item costs reasonably more that fetching and bundling it, but still not enough to make processing it separately efficient. And I've got a feeling that there should be enough real-world applications that may benefit from it. Actually I also thought about adding grain size to parallel_do some time ago, but since we have an internal rule of starting implementing a feature only after we have interested users (and there was other stuff to do (as it often happens)smiley [:-)]) we never even discussed it (as far as I can rememeber). Now let's see what Arch sayssmiley [:-)].

0 Kudos
Reply