Defines the vector distribution. More...
Public Member Functions | |
STAPL_IMPORT_TYPE (typename it_base_t, iterator) | |
vector_distribution (vector_distribution const &other) | |
Copy construction of this distribution. More... | |
vector_distribution (partition_type const &partition, mapper_type const &mapper) | |
Creates a distribution with default constructed elements. More... | |
vector_distribution (partition_type const &partition, mapper_type const &mapper, value_type const &default_value) | |
Creates a distribution with an initial value for elements. More... | |
vector_distribution (directory_type const &directory, container_manager_type const &bcmangr) | |
Creates a distribution with with the given directory and base container manager bcmangr . More... | |
void | set_domain (domain_type const &domain) |
template<typename View > | |
void | insert (gid_type gid, value_type const &value, View *view) |
Inserts the given value at the given gid position. More... | |
template<typename View > | |
void | erase (gid_type gid, View *view) |
Removes the element at the given gid position. More... | |
void | clear (void) |
Remove all elements from the container. More... | |
template<typename View > | |
void | push_back (value_type const &value, View *view) |
Inserts the given value at the end of the container. More... | |
template<typename View > | |
void | pop_back (View *view) |
Removes the given value from the end of the container. More... | |
void | local_push_back (value_type const &value) |
Helper method to insert the given value locally. | |
void | update_domain (size_t num_elem) |
Updates the stored domain to represent a domain with num_elem number of elements. | |
void | synchronize_metadata (void) |
Method used to update the container's metadata (directory's registry, domain) based on the information in the base containers. More... | |
domain_type const & | domain (void) const |
iterator | find (gid_type index) |
size_t | local_size () |
size_t | size (void) const |
partition_type & | partition () |
partition_type const & | partition () const |
mapper_type & | mapper () |
directory_type & | directory (void) |
directory_type const & | directory (void) const |
container_manager_type & | container_manager (void) |
container_manager_type const & | container_manager (void) const |
container_type * | container (void) |
container_type const * | container (void) const |
local_return_type | metadata (void) |
Returns the metadata information for the base-containers on this location. More... | |
size_t | num_base_containers (void) |
Returns the global number of base-containers in this distribution. | |
bool | is_local (Indices const &... i) const |
void | defer_metadata_at (gid_type const &gid, promise< dom_info_type > p) |
Returns the metadata associated with the given gid by setting the value of the promise. More... | |
future< dom_info_type > | metadata_at (gid_type const &gid) |
Returns the metadata associated with the given index . | |
dom_info_type | metadata_of (cid_type const &cid) |
Return the metadata associated with the specified component. More... | |
void | redistribute (std::shared_ptr< DistSpecView > dist_view, typename std::enable_if< is_distribution_view< DistSpecView >::value >::type *=0) |
Redistribute data to match the distribution specification provided. More... | |
void | update (std::vector< std::tuple< std::pair< gid_type, gid_type >, cid_type, location_type >> const &updates) |
Add information on the distribution of elements not yet in the container. Use in dynamic containers with view-based distributions to allow element distribution to be based on computation. More... | |
void | set_element (gid_type const &gid, value_type const &val) |
Update the element at a GID by replacing it with a given value. More... | |
void | set_elements (gid_type gid, SourceView &&source_view) |
Update a range of contiguous elements in the container, starting at gid . A total of view.size() elements will be updated with the values in view . More... | |
void | set_elements (gid_type gid, View &&view) |
Signature of set_elements used when underlying base container is not supported. Fall back to iterative use of set_element. | |
value_type | get_element (gid_type const &gid) const |
Return a copy of the element at a specific GID. Note that this is a blocking operation. More... | |
future< value_type > | get_element_split (gid_type const &gid) |
Return a future of the element at a specific GID. This is a non-blocking operation. More... | |
void | apply_set (gid_type const &gid, Functor const &f) |
Apply a function object to the element with the given GID. More... | |
void | unordered_apply_set (gid_type const &gid, Functor &&f) |
Apply a function object to the element with the given GID, disregarding RMI causal ordering. More... | |
void | unordered_apply (gid_type const &gid, Functor &&f) |
Apply a function object to the element with the given GID, passing along the distribution pointer and disregarding RMI causal ordering. More... | |
boost::result_of< Functor(value_type &)>::type | apply_get (gid_type const &gid, Functor const &f) |
Apply a function object to the element with the given GID and return the result. More... | |
boost::result_of< Functor(value_type &)>::type | apply_get (gid_type const &gid, Functor const &f) const |
Apply a function object to the element with the given GID and return the result. More... | |
iterator | make_iterator (gid_type const &gid) |
Construct an iterator to a specific GID of the container. More... | |
const_iterator | make_const_iterator (gid_type const &gid) const |
Construct a const_iterator to a specific GID of the container. More... | |
iterator | begin () |
Construct an iterator to the beginning of the container. More... | |
const_iterator | begin () const |
Construct a const_iterator to the beginning of the container. More... | |
const_iterator | cbegin () const |
Construct a const_iterator to the beginning of the container. More... | |
iterator | end () |
Construct an iterator to the end of the container. More... | |
const_iterator | end () const |
Construct a const_iterator to the end of the container. More... | |
const_iterator | cend () const |
Construct a const_iterator to the end of the container. More... | |
reference | operator[] (gid_type const &gid) |
Construct a reference to the element at a specific gid. More... | |
const_reference | operator[] (gid_type const &gid) const |
Construct a reference to the element at a specific gid. More... | |
reference | make_reference (gid_type const &gid) |
Construct a reference to the element at a specific gid. More... | |
const_reference | make_reference (gid_type const &gid) const |
Construct a reference to the element at a specific gid. More... | |
reference | make_reference (Indices const &... i) |
Construct a reference to the element at a specific gid. More... | |
const_reference | make_reference (Indices const &... i) const |
Construct a reference to the element at a specific gid. More... | |
Public Types | |
typedef gid_type | index_type |
typedef Container | container_type |
typedef metadata::static_container_extractor< vector_distribution > | loc_dist_metadata |
typedef indexed_domain< gid_type > | domain_type |
typedef directory_type::key_type | gid_type |
typedef mapper_type::domain_type | map_dom_t |
typedef metadata_entry< domain_type, base_container_type *> | dom_info_type |
The type of the coarsened domain. | |
typedef std::vector< dom_info_type > | local_return_type |
Type for returning collected metadata from all local base-containers. | |
typedef std::random_access_iterator_tag | iterator_category |
typedef traits_t::gid_type | gid_type |
typedef container_accessor< container_t > | accessor_type |
typedef const_container_accessor< container_t > | const_accessor_type |
typedef container_iterator< container_t, accessor_type, iterator_category > | iterator |
typedef const_container_iterator< container_t, const_accessor_type, iterator_category > | const_iterator |
typedef referencer_t::result_type | reference |
typedef const_referencer_t::result_type | const_reference |
Protected Member Functions | |
template<typename View > | |
void | update_metadata (action_type action, location_type origin, View *view) |
Helper method to update the domain by increasing or reducing the number of elements in the domain based on the given action . More... | |
void | insert_bcast (gid_type gid, value_type const &value, cid_type dest, promise< void > p) |
Helper method to insert the given value at the given gid position, updating the domain. | |
void | try_insert (gid_type gid, value_type const &value, promise< void > p) |
Helper method to determine into which base container the. | |
void | erase_bcast (gid_type gid, promise< void > p) |
Helper method to remove the element at the given gid position, updating the domain. | |
template<typename View > | |
void | push_back_local (value_type const &value, location_type origin, View *view) |
Helper method to insert the given value locally. More... | |
template<typename View > | |
void | pop_back_local (location_type origin, View *view) |
Helper method to pop_back on current location. More... | |
void | update_impl (std::vector< std::tuple< std::pair< gid_type, gid_type >, cid_type, location_type >> const &updates) |
Protected Types | |
enum | action_type { INSERT, DELETE } |
typedef std::queue< std::pair< gid_type, value_type > > | insert_queue_type |
typedef std::queue< gid_type > | erase_queue_type |
Protected Attributes | |
insert_queue_type | m_insert_queue |
erase_queue_type | m_erase_queue |
domain_type | m_domain |
container_manager_type | m_container_manager |
Manages and owns the base-containers on this location. Base-containers store the actual data. Container manager also handles the mapping from gid to base-container. | |
Defines the vector distribution.
Provides the functionality required to manage the data distributions of the vector.
Container | Type of the container that is managing this distribution. |
typedef metadata::static_container_extractor< vector_distribution > stapl::vector_distribution< Container >::loc_dist_metadata |
Distribution metadata type used for coarsening
stapl::vector_distribution< Container >::vector_distribution | ( | vector_distribution< Container > const & | other | ) |
Copy construction of this distribution.
other | Another distribution to copy from. |
stapl::vector_distribution< Container >::vector_distribution | ( | partition_type const & | partition, |
mapper_type const & | mapper | ||
) |
Creates a distribution with default constructed elements.
partition | Partition used by the container. |
mapper | Mapper used by the container. |
stapl::vector_distribution< Container >::vector_distribution | ( | partition_type const & | partition, |
mapper_type const & | mapper, | ||
value_type const & | default_value | ||
) |
Creates a distribution with an initial value for elements.
partition | Partition used by the container. |
mapper | Mapper used by the container. |
default_value | The value that the elements in this distribution will be initialized with. |
stapl::vector_distribution< Container >::vector_distribution | ( | directory_type const & | directory, |
container_manager_type const & | bcmangr | ||
) |
Creates a distribution with with the given directory
and base container manager bcmangr
.
directory | Directory used by the container. |
bcmangr | Base container manager used by the container. |
|
protected |
Helper method to update the domain by increasing or reducing the number of elements in the domain based on the given action
.
If a non-null view pointer is provided, the domain of the view will be updated as well.
void stapl::vector_distribution< Container >::insert | ( | gid_type | gid, |
value_type const & | value, | ||
View * | view | ||
) |
Inserts the given value
at the given gid
position.
If a non-null view pointer is provided, initiates an update of the view domain at all locations as well.
void stapl::vector_distribution< Container >::erase | ( | gid_type | gid, |
View * | view | ||
) |
Removes the element at the given gid
position.
If a non-null view pointer is provided, initiates an update of the view domain at all locations as well.
void stapl::vector_distribution< Container >::clear | ( | void | ) |
Remove all elements from the container.
|
protected |
Helper method to insert the given value
locally.
If a non-null view pointer is provided, initiates an update of the view domain at all locations as well.
void stapl::vector_distribution< Container >::push_back | ( | value_type const & | value, |
View * | view | ||
) |
Inserts the given value
at the end of the container.
If a non-null view pointer is provided, initiates an update of the view domain at all locations as well.
|
protected |
Helper method to pop_back on current location.
If a non-null view pointer is provided, initiates an update of the view domain at all locations as well.
void stapl::vector_distribution< Container >::pop_back | ( | View * | view | ) |
Removes the given value
from the end of the container.
If a non-null view pointer is provided, initiates an update of the view domain at all locations as well.
The pop_back is attempted at the location of current last GID. The method calls decreasing_invoke_where which first asks the key mapper for the location where GID is supposed to be registered and if it still is, it will query the registry at that location for the actual location where the GID is stored. Then, pop_back_local will be invoked via RMI at that location (or directly if the last GID happens to be stored on current location).
If the GID is no longer registered at the managing location, a pop_back from a different location already removed it (note that all locations initially start from the same GID and their domains are updated asynchronously). In this case, the whole process will be repeated with GID - 1, until a location with the GID in registry is found or all positive GIDs have been used.
void stapl::vector_distribution< Container >::synchronize_metadata | ( | void | ) |
Method used to update the container's metadata (directory's registry, domain) based on the information in the base containers.
|
inherited |
Returns the metadata information for the base-containers on this location.
|
inherited |
Returns if the element with the specified gid is stored on this location.
i | components of a gid if it is multidimensional, otherwise i is the gid. |
|
inherited |
Returns the metadata associated with the given gid
by setting the value of the promise.
gid | Id of the element of interest |
p | Promise that will return the locality information to the location that invoked the method. |
|
inherited |
Return the metadata associated with the specified component.
cid | id of the base container for which metadata is requested. |
|
inherited |
Redistribute data to match the distribution specification provided.
dist_view | View-based specification of the distribution that the container elements will match after method completion. |
|
inherited |
Add information on the distribution of elements not yet in the container. Use in dynamic containers with view-based distributions to allow element distribution to be based on computation.
updates | Explicit mapping information of sets of contiguous GIDs to partition ids and location ids. |
|
inherited |
Update the element at a GID by replacing it with a given value.
gid | GID of the element to replace |
val | The new value for the element |
|
inherited |
Update a range of contiguous elements in the container, starting at gid
. A total of view.size()
elements will be updated with the values in view
.
|
inherited |
Return a copy of the element at a specific GID. Note that this is a blocking operation.
gid | GID of the element to retrieve |
|
inherited |
Return a future of the element at a specific GID. This is a non-blocking operation.
gid | GID of the element to retrieve |
|
inherited |
Apply a function object to the element with the given GID.
gid | GID of the element for which we want to apply the function object. |
f | Function object to apply to the element. |
f
has to be const
qualified.
|
inherited |
Apply a function object to the element with the given GID, disregarding RMI causal ordering.
gid | GID of the element for which we want to apply the function object. |
f | Function object to apply to the element. |
f
has to be const
qualified.
|
inherited |
Apply a function object to the element with the given GID, passing along the distribution pointer and disregarding RMI causal ordering.
gid | GID of the element for which we want to apply the function object. |
f | Function object to apply to the element. |
f
has to be const
qualified.
|
inherited |
Apply a function object to the element with the given GID and return the result.
gid | GID of the element for which we want to apply the function object and return the result. |
f | Function object to apply to the element. |
f
to the element.Functor
reflects a public type result_type
and that the invocation of its function operator returns a value that is convertible to result_type. The function operator of f
has to be const
qualified.
|
inherited |
Apply a function object to the element with the given GID and return the result.
gid | GID of the element for which we want to apply the function object and return the result. |
f | Function object to apply to the element. |
f
to the element.Functor
reflects a public type result_type
and that the invocation of its function operator returns a value that is convertible to result_type. The function operator of f
has to be const
qualified.
|
inherited |
Construct an iterator to a specific GID of the container.
gid | The GID for which to create the iterator |
|
inherited |
Construct a const_iterator to a specific GID of the container.
gid | The GID for which to create the const_iterator |
|
inherited |
Construct an iterator to the beginning of the container.
|
inherited |
Construct a const_iterator to the beginning of the container.
|
inherited |
Construct a const_iterator to the beginning of the container.
|
inherited |
Construct an iterator to the end of the container.
|
inherited |
Construct a const_iterator to the end of the container.
|
inherited |
Construct a const_iterator to the end of the container.
|
inherited |
Construct a reference to the element at a specific gid.
gid | The index for which to create the reference |
|
inherited |
Construct a reference to the element at a specific gid.
gid | The index for which to create the reference |
|
inherited |
Construct a reference to the element at a specific gid.
gid | The GID of the element |
|
inherited |
Construct a reference to the element at a specific gid.
gid | The GID of the element |
|
inherited |
Construct a reference to the element at a specific gid.
i | The indices of the gid at which the element resides. |
|
inherited |
Construct a reference to the element at a specific gid.
i | The indices of the gid at which the element resides. |