Base container storage that internally uses sets of intervals based off the GID to perform loopkups.
More...
|
size_t | size (void) const |
| Returns number of the local base containers in this base container manager.
|
|
iterator | begin (void) |
| Returns a begin iterator over the base containers in this base container manager.
|
|
const_iterator | begin (void) const |
| Returns a begin iterator over the base containers in this base container manager. More...
|
|
iterator | end (void) |
| Returns an end iterator over the base containers in this base container manager.
|
|
const_iterator | end (void) const |
| Returns an end iterator over the base containers in this base container manager. More...
|
|
iterator | find (gid_type const &gid) |
| Returns an iterator to the base container that contains the given GID. If not found, it returns an end iterator. More...
|
|
const_iterator | find (gid_type const &gid) const |
| Returns an iterator to the base container that contains the given GID. If not found, it returns an end iterator. More...
|
|
void | clear (void) |
| Clears the storage and destroys the metadata for all local elements.
|
|
template<typename Factory > |
base_container_type * | insert_range (gid_type const &first, gid_type const &last, Factory const &f) |
|
template<typename GID , typename Factory > |
base_container_type * | insert_range (typename boost::icl::interval_set< GID > const &ranges, Factory const &f) |
|
template<typename Domain , typename Factory > |
base_container_type * | insert_range (Domain const &dom, Factory const &f) |
| Constructs a base container that is responsible for a given domain through the use of a factory and inserts it into the registry. More...
|
|
|
template<typename Partition , typename Mapper , typename BC_Factory > |
void | init (Partition const &partition, Mapper const &mapper, BC_Factory const &bc_factory, base_container_ordering &ordering, typename std::enable_if< std::is_same< Partition, balanced_partition< typename Partition::value_type > >::value >::type *=0) |
| Instantiate the base container that should be on this location based on the balanced partition using a factory object to construct instances. More...
|
|
template<typename Partition , typename Mapper , typename BC_Factory > |
void | init (Partition const &partition, Mapper const &mapper, BC_Factory const &bc_factory, base_container_ordering &ordering, typename std::enable_if< !std::is_same< Partition, balanced_partition< typename Partition::value_type > >::value >::type *=0) |
| Instantiate all of the base containers that should be on this location based on partition and mapping information using a factory object to construct instances. More...
|
|
template<typename F > |
void | clone_apply (sparse_interval_container_registry const &other, F const &f) |
| Clone the base containers and apply a function that takes the old base container and the newly created one. More...
|
|
template<typename Container>
struct stapl::sparse_interval_container_registry< Container >
Base container storage that internally uses sets of intervals based off the GID to perform loopkups.
- Template Parameters
-
Container | Type of the base container. |
template<typename Container >
template<typename Partition , typename Mapper , typename BC_Factory >
Instantiate the base container that should be on this location based on the balanced partition using a factory object to construct instances.
This specialization for balanced_partition is able to construct the base containers without communication, and as a result is faster than the general algorithm implemented in the non-specialized init method.
- Parameters
-
partition | The container's partition object |
mapper | The container's mapper object. |
bc_factory | A factory object creating instances of the base container on the heap, when passed the domain and container id. |