template<class subc>
class ROOT::TExecutor< subc >
This class defines an interface to execute the same task multiple times in parallel, possibly with different arguments every time.
The classes implementing it mimic the behaviour of python's pool.Map method.
The two possible usages of the Map method are:
- Map(F func, unsigned nTimes): func is executed nTimes with no arguments
- Map(F func, T& args): func is executed on each element of the collection of arguments args
For either signature, func is executed as many times as needed by a pool of nThreads threads; It defaults to the number of cores.
A collection containing the result of each execution is returned.
Note: the user is responsible for the deletion of any object that might be created upon execution of func, returned objects included: ROOT::TExecutor never deletes what it returns, it simply forgets it.
- Parameters
-
func | a lambda expression, an std::function, a loaded macro, a functor class or a function that takes zero arguments (for the first signature) or one (for the second signature). |
args | a standard vector, a ROOT::TSeq of integer type or an initializer list for the second signature. An integer only for the first.
|
Note: in cases where the function to be executed takes more than zero/one argument but all are fixed except zero/one, the function can be wrapped in a lambda or via std::bind to give it the right signature.
Return value:
An std::vector. The elements in the container will be the objects returned by func.
Definition at line 61 of file TExecutor.hxx.