Overview#
Map() is an idiom in parallel computing where a simple operation is applied to all elements of a sequence, potentially in parallel.Map() is used to solve embarrassingly parallel problems: those problems that can be decomposed into independent subtasks, requiring no communication/synchronization between the subtasks except a join or barrier at the end.
More Information#
There might be more information for this subject on one of the following:- [#1] - Map_(parallel_pattern)
- based on information obtained 2017-04-30-