The Insight Journal logo

Efficient multithreading for manycore processor: Multidimensional domain decomposition using Intel® TBB

St-Onge, Etienne, Scherrer, Benoit, Warfield, Simon Keith
Université de Sherbrooke
Publication cover image

Please use this identifier to cite or link to this publication: http://hdl.handle.net/10380/3585
New: Prefer using the following doi: https://doi.org/10.54294/73dn1l
Submitted by Etienne St-Onge on 2017-07-18 18:55:24.

The Insight Toolkit (ITK) utilizes a generic design for image processing filters that allows many developers to rapidly implement new algorithms. While ITK filters benefit from a platform-independent and versatile multithreading capability, the current implementation does not easily achieve high performance. First, ITK relies on a static decomposition of the image into subsets of equal size which is highly inefficient when the computational complexity varies between subsets (unbalanced workloads). Second, the current domain decomposition is limited to subdivide the input domain along a single dimension (typically the slice dimension in a 3-D volume), which causes a multithreading under-utilization when the number of threads is larger than the size of this dimension when using massively parallel compute systems. We previously presented a new itk::TBBImageToImageFilter class that replaced the static task decomposition by a dynamic task decomposition for improved workload balancing, in which the job scheduling task was optimized using the Intel® Threading Building Blocks (TBB) library. In this work, we propose a new multidimensional dynamic image decomposition approach that allows decomposition over an arbitrary number of dimensions. This new generic multithreading capability, combined with the TBB dynamic task scheduler, substantially improves multithreading performance when using massively parallel processors.