static_partitioner Class
The static_partitioner
class represents a static partitioning of the range iterated over by parallel_for
. The partitioner divides the range into as many chunks as there are workers available to the underlying scheduler.
C++
class static_partitioner;
Name | Description |
---|---|
static_partitioner | Constructs a static_partitioner object. |
~static_partitioner Destructor | Destroys a static_partitioner object. |
static_partitioner
Header: ppl.h
Namespace: concurrency
Destroys a static_partitioner
object.
C++
~static_partitioner();
Constructs a static_partitioner
object.
C++
static_partitioner();