PartitioningAlgorithm Partitioning Algorithm Define a Partitioner for Parallel Algorithms PartitioningAlgorithm_1DefineAPartitionerForParallelAlgorithms Define a Static Partitioner PartitioningAlgorithm_1DefineAStaticPartitioner Define a Dynamic Partitioner PartitioningAlgorithm_1DefineADynamicPartitioner Define a Guided Partitioner PartitioningAlgorithm_1DefineAGuidedPartitioner Define a Closure Wrapper for a Partitioner PartitioningAlgorithm_1DefineAClosureWrapperForAPartitioner A partitioning algorithm allows applications to optimize parallel algorithms using different scheduling methods, such as static partitioning, dynamic partitioning, and guided partitioning. Define a Partitioner for Parallel Algorithms A partitioner defines how to partition and distribute iterations to different workers when running parallel algorithms in Taskflow, such as tf::Taskflow::for_each and tf::Taskflow::transform. The following example shows how to create parallel-iteration tasks with different execution policies: std::vector<int>data={1,2,3,4,5,6,7,8,9,10} //createdifferentpartitioners tf::GuidedPartitionerguided_partitioner; tf::StaticPartitionerstatic_partitioner; tf::RandomPartitionerrandom_partitioner; tf::DynamicPartitionerdynamic_partitioner; //createfourparallel-iterationtasksfromthefourexecutionpolicies taskflow.for_each(data.begin(),data.end(),[](inti){},guided_partitioner); taskflow.for_each(data.begin(),data.end(),[](inti){},static_partitioner); taskflow.for_each(data.begin(),data.end(),[](inti){},random_partitioner); taskflow.for_each(data.begin(),data.end(),[](inti){},dynamic_partitioner); Each partitioner has a specific algorithm to partition iterations into a set of chunks and distribute chunks to workers. A chunk is the basic unit of work that will be run by a worker during the execution of parallel iterations. The following figure illustrates the scheduling diagram for three major partitioners, tf::StaticPartitioner, tf::DynamicPartitioner, and tf::GuidedPartitioner: Depending on applications, partitioning algorithms can impact the performance a lot. For example, if a parallel-iteration workload contains a regular work unit per iteration, tf::StaticPartitioner may deliver the best performance. On the other hand, if the work unit per iteration is irregular and unbalanced, tf::GuidedPartitioner or tf::DynamicPartitioner can outperform tf::StaticPartitioner. By default, all parallel algorithms in Taskflow use tf::DefaultPartitioner, which is based on guided scheduling via tf::GuidedPartitioner. Define a Static Partitioner Static partitioner splits iterations into iter_size/chunk_size chunks and distribute chunks to workers in order. If no chunk size is given (chunk_size is 0), Taskflow will partition iterations into chunks that are approximately equal in size. The following code creates a static partitioner with chunk size equal to 100: tf::StaticPartitionerstatic_partitioner(100); Define a Dynamic Partitioner Dynamic partitioner splits iterations into iter_size/chunk_size chunks and distribute chunks to workers without any specific order. If no chunk size is given (chunk_size is 0), Taskflow will use 1 for the minimum size of a partition. The following code creates a dynamic partitioner with chunk size equal to 2: tf::DynamicPartitionerdynamic_partitioner(2); Define a Guided Partitioner Guided partitioner dynamically decides the chunk size. The size of a chunk is proportional to the number of unassigned iterations divided by the number of the threads, and the size will gradually decrease to the specified chunk size (default 1). The last chunk may be smaller than the specified chunk size. If no chunk size is given (chunk_size is 0), Taskflow will use 1 for the minimum size of a partition. The following code creates a guided partitioner with chunk size equal to 10: tf::GuidedPartitionerguided_partitioner(10); In most situations, guided partitioner can achieve decent performance due to adaptive parallelism, especially for those with irregular and unbalanced workload per iteration. As a result, guided partitioner is used as the default partitioner for our parallel algorithms. Define a Closure Wrapper for a Partitioner In addition to partition size, applications can specify a closure wrapper for a partitioner. A closure wrapper allows the application to wrapper a partitioned task, i.e., closure, with a custom function object that performs additional tasks. For example: std::atomic<int>count=0; tf::Taskflowtaskflow; taskflow.for_each_index(0,100,1, [](){ printf("%d\n",i); }, tf::StaticPartitioner(0,[](auto&&closure){ //dosomethingbeforeinvokingthepartitionedtask //... //invokethepartitionedtask closure(); //dosomethingelseafterinvokingthepartitionedtask //... } ); executor.run(taskflow).wait(); Each partitioner uses a default closure wrapper (tf::DefaultClosureWrapper) that does nothing but simply invokes the given closure to perform the ordinary partitioned task. structDefaultClosureWrapper{ template<typenameC> voidoperator()(C&&closure)const{std::forward<C>(closure)();} };