STAPL API Reference          
Overview   Containers   Algorithms   Views   Skeletons   Run-Time System
Modules     Classes    
List of all members | Public Member Functions | Public Types
stapl::detail::container_impl< C > Class Template Reference

Base class of containers that implements functionality that is independent of whether nested container composition exists (mainly distribution related functionality). boost::shared_ptr is being used in place of std::shared_ptr in order to minimize the number of conflicts caused by ADL. Performance was shown to be comparable. More...

Public Member Functions

 container_impl (distribution_type const &distribution)
 
 container_impl (directory_type const &dir, container_manager_type const &cm)
 
template<typename Reg >
 container_impl (directory_type const &dir, container_manager_type const &cm, Reg const &reg)
 
 container_impl (partition_type const &ps, mapper_type const &map)
 
template<typename Reg >
 container_impl (partition_type const &ps, mapper_type const &map, Reg const &reg)
 
 container_impl (partition_type const &ps, mapper_type const &map, value_type const &default_value)
 
template<typename DistSpecView , typename PartitionContainer >
 container_impl (DistSpecView const &dist_view, PartitionContainer const *const part_cont, typename std::enable_if< is_distribution_view< DistSpecView >::value &&!detail::has_is_composed_dist_spec< DistSpecView >::value &&std::is_same< typename PartitionContainer::value_type, arbitrary_partition_info >::value >::type *=0)
 
template<typename DistSpecView , typename PartitionContainer >
 container_impl (DistSpecView const &dist_view, PartitionContainer const *const part_cont, value_type const &default_value, typename std::enable_if< is_distribution_view< DistSpecView >::value &&!detail::has_is_composed_dist_spec< DistSpecView >::value &&std::is_same< typename PartitionContainer::value_type, arbitrary_partition_info >::value >::type *=0)
 
template<typename DistSpecView , typename PartitionContainer , typename Reg >
 container_impl (DistSpecView const &dist_view, PartitionContainer const *const part_cont, Reg const &reg, typename std::enable_if< is_distribution_view< DistSpecView >::value &&!detail::has_is_composed_dist_spec< DistSpecView >::value &&std::is_same< typename PartitionContainer::value_type, arbitrary_partition_info >::value >::type *=0)
 
void destroy (void)
 Used as a target method for rmis implementing one-sided destruction, as a pointer to member variable referring to the destructor cannot be initialized, per the standard. Used when container is an element of another container.
 
size_t get_num_locations (void) const
 
location_type get_location_id (void) const
 
boost::shared_ptr< C > shared_from_this ()
 
Element Manipulation
void set_element (index_type const &idx, value_type const &val)
 Sets the element specified by the index to the provided value. More...
 
template<typename View >
void set_elements (index_type const &idx, View &&vals)
 Sets a range of elements starting with a given index to a sequence of provided values. More...
 
value_type get_element (index_type const &idx) const
 Returns the value of the element specified by the index. More...
 
future< value_typeget_element_split (index_type const &idx)
 Returns a stapl::future holding the value of the element specified by the index. More...
 
template<typename F >
void apply_set (gid_type const &gid, F const &f)
 Applies a function f to the element specified by the GID. More...
 
template<typename F >
F::result_type apply_get (gid_type const &gid, F const &f)
 Applies a function f to the element specified by the GID, and returns the result. More...
 
template<typename F >
F::result_type apply_get (gid_type const &gid, F const &f) const
 Applies a function f to the element specified by the GID, and returns the result. More...
 

Public Types

typedef container_traits< C >::template construct_distribution< C >::type distribution_type
 
typedef index_type gid_type
 
typedef size_t size_type
 

Memory and Domain Management

domain_type domain (void) const
 
void migrate (gid_type const &gid, location_type destination)
 Migrates the element specified by the gid to the destination location. More...
 
size_type size (void) const
 Return the number of elements in the container. More...
 
bool empty (void) const
 
distribution_type & distribution (void)
 
distribution_type const & distribution (void) const
 
distribution_type * get_distribution (void)
 
locality_info locality (gid_type gid)
 Return locality information about the element specified by the gid. More...
 
template<typename... Indices>
bool is_local (Indices const &... i) const
 Returns true if the element specified by the GID formed from the index components provided is stored on this location, or false otherwise.
 
rmi_handle::reference get_rmi_handle_reference (void)
 
template<typename DistSpecView >
std::shared_ptr< DistSpecView > get_spec (DistSpecView const &dist_view, typename std::enable_if< !detail::has_is_composed_dist_spec< DistSpecView >::value >::type *=0)
 Return a shared_ptr to the distribution specification for this container instance. More...
 
template<typename ComposedSpec >
std::shared_ptr< typename ComposedSpec::distribution_spec > get_spec (ComposedSpec const &dist_view, typename std::enable_if< detail::has_is_composed_dist_spec< ComposedSpec >::value >::type *=0)
 Return a shared_ptr to the distribution specification for this container instance that is part of a composed container instantiation. More...
 

Detailed Description

template<typename C>
class stapl::detail::container_impl< C >

Base class of containers that implements functionality that is independent of whether nested container composition exists (mainly distribution related functionality). boost::shared_ptr is being used in place of std::shared_ptr in order to minimize the number of conflicts caused by ADL. Performance was shown to be comparable.

Template Parameters
Cderived container class for use with CRTP.

Member Function Documentation

◆ set_element()

template<typename C>
void stapl::detail::container_impl< C >::set_element ( index_type const &  idx,
value_type const &  val 
)

Sets the element specified by the index to the provided value.

Parameters
idxGID of the element to be set.
valThe new value of the element.

◆ set_elements()

template<typename C>
template<typename View >
void stapl::detail::container_impl< C >::set_elements ( index_type const &  idx,
View &&  vals 
)

Sets a range of elements starting with a given index to a sequence of provided values.

Parameters
idxGID of start of element range to be set.
valsThe new values to be assigned to the element range.

◆ get_element()

template<typename C>
value_type stapl::detail::container_impl< C >::get_element ( index_type const &  idx) const

Returns the value of the element specified by the index.

Parameters
idxGID of the element to be retrieved.
Returns
The value of the element.

◆ get_element_split()

template<typename C>
future<value_type> stapl::detail::container_impl< C >::get_element_split ( index_type const &  idx)

Returns a stapl::future holding the value of the element specified by the index.

Parameters
idxGID of the element to be set.
Returns
The future holding the value of the element.

◆ apply_set()

template<typename C>
template<typename F >
void stapl::detail::container_impl< C >::apply_set ( gid_type const &  gid,
F const &  f 
)

Applies a function f to the element specified by the GID.

Parameters
gidThe GID of the element.
fThe Functor to apply on the element.

◆ apply_get() [1/2]

template<typename C>
template<typename F >
F::result_type stapl::detail::container_impl< C >::apply_get ( gid_type const &  gid,
F const &  f 
)

Applies a function f to the element specified by the GID, and returns the result.

Parameters
gidThe GID of the element.
fThe Functor to apply on the element.
Returns
The result of applying the functor to the element.

◆ apply_get() [2/2]

template<typename C>
template<typename F >
F::result_type stapl::detail::container_impl< C >::apply_get ( gid_type const &  gid,
F const &  f 
) const

Applies a function f to the element specified by the GID, and returns the result.

Parameters
gidThe GID of the element.
fThe Functor to apply on the element.
Returns
The result of applying the functor to the element.

◆ domain()

template<typename C>
domain_type stapl::detail::container_impl< C >::domain ( void  ) const

◆ migrate()

template<typename C>
void stapl::detail::container_impl< C >::migrate ( gid_type const &  gid,
location_type  destination 
)

Migrates the element specified by the gid to the destination location.

Parameters
gidGID of the element to be migrated.
destinationId of the location where the element is to be migrated.

◆ size()

template<typename C>
size_type stapl::detail::container_impl< C >::size ( void  ) const

Return the number of elements in the container.

This method is one-sided, If other locations may be concurrently performing operations that change their local size and the effects are desired to be observed in a deterministic way, then appropriate synchronization, e.g. a fence, may be required before or after the call to size, to enforce appropriate ordering.

◆ locality()

template<typename C>
locality_info stapl::detail::container_impl< C >::locality ( gid_type  gid)

Return locality information about the element specified by the gid.

Returns
A locality_qualifier, affinity specifier, as well as this object's handle and associated location for this affinity.

◆ get_spec() [1/2]

template<typename C>
template<typename DistSpecView >
std::shared_ptr<DistSpecView> stapl::detail::container_impl< C >::get_spec ( DistSpecView const &  dist_view,
typename std::enable_if< !detail::has_is_composed_dist_spec< DistSpecView >::value >::type *  = 0 
)
protected

Return a shared_ptr to the distribution specification for this container instance.

This function is called by redistribute when the distribution specification provided is for a single container instance instead of a collection of composed container instance.

Parameters
dist_viewInstantiation of distribution_spec that describes the target distribution for redistribute
Returns
shared_ptr to the distribution specification

◆ get_spec() [2/2]

template<typename C>
template<typename ComposedSpec >
std::shared_ptr<typename ComposedSpec::distribution_spec> stapl::detail::container_impl< C >::get_spec ( ComposedSpec const &  dist_view,
typename std::enable_if< detail::has_is_composed_dist_spec< ComposedSpec >::value >::type *  = 0 
)
protected

Return a shared_ptr to the distribution specification for this container instance that is part of a composed container instantiation.

This function is called by redistribute when the distribution specification provided is for all container instances of a composed container.

Parameters
dist_viewInstantiation of composed_dist_spec that describes the target distributions for redistribute for all container instances in a composed container
Returns
shared_ptr to the distribution specification for this container instance

The documentation for this class was generated from the following file: