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

Scheduler that provides work stealing support. More...

Public Member Functions

 work_stealing_scheduler (size_type chunk_size, size_type fraction, size_type poll_min, size_type poll_max, size_type poll_step)
 Creates a new work_stealing_scheduler. More...
 
 work_stealing_scheduler (work_stealing_scheduler const &other)
 
void set_tg (task_graph &tg) noexcept
 
void add_active (entry_type &e)
 Adds an active entry to the scheduler. More...
 
void add_idle (entry_type &) noexcept
 Adds an idle entry to the scheduler.
 
entry_typenext (void)
 Returns the next entry to be executed.
 
bool empty (void)
 
bool ready (void)
 
size_type size (void) const noexcept
 
list_type const & migratable_entries (void) const noexcept
 
list_type & migratable_entries (void) noexcept
 
thieves_list_type & thieves (void) noexcept
 
void request_steal (size_type dest)
 Sends a steal request to the given destination.
 
void notify_steal_completion (location_type dest, size_type loot)
 Notifies of successful steal request completion to the destination.
 
runtime::location_md const & get_location_md (void) const noexcept
 Returns the location metadata of the location this object registered in.
 
runtime::location_mdget_location_md (void) noexcept
 Returns the location metadata of the location this object registered in. noexcept More...
 
Distributed Object Management
rmi_handle::const_reference const & get_rmi_handle (void) const noexcept
 Returns the associated rmi_handle.
 
rmi_handle::reference const & get_rmi_handle (void) noexcept
 Returns the associated rmi_handle.
 
size_type get_location_id (void) const noexcept
 Returns the location id of the local sub-object.
 
size_type get_num_locations (void) const noexcept
 Returns the number of locations of the gang of this p_object.
 
void advance_epoch (void)
 Advances the epoch of the object. More...
 
void unlock (void)
 Used by lock_guard functionality in method of derived classes to request atomicity with respect to incoming RMIs. More...
 
void lock (void)
 Used by lock_guard functionality in method of derived classes to request atomicity with respect to incoming RMIs. More...
 
bool try_lock (void)
 Attempt to maintain atomicity with respect to incoming RMIs. More...
 

Public Types

typedef work_stealing_sched_info sched_info_type
 
typedef work_stealing_sched_entry< sched_info_type, hook_type > entry_type
 
typedef boost::intrusive::make_list< entry_type, boost::intrusive::cache_last< true >, boost::intrusive::constant_time_size< true > >::type list_type
 
typedef std::deque< location_type > thieves_list_type
 
typedef std::size_t size_type
 

Friends

std::ostream & operator<< (std::ostream &os, work_stealing_scheduler const &s)
 

Detailed Description

template<typename StealPolicy = circular_steal>
class stapl::work_stealing_scheduler< StealPolicy >

Scheduler that provides work stealing support.

The default policy is circular stealing through circular_steal.

Constructor & Destructor Documentation

◆ work_stealing_scheduler()

template<typename StealPolicy = circular_steal>
stapl::work_stealing_scheduler< StealPolicy >::work_stealing_scheduler ( size_type  chunk_size,
size_type  fraction,
size_type  poll_min,
size_type  poll_max,
size_type  poll_step 
)

Creates a new work_stealing_scheduler.

Parameters
chunk_sizeNumber of entries to steal with one request.
fractionFraction of the total entries to steal.
poll_minMinimum number of calls to process stolen work before yielding.
poll_maxMaximum number of calls to process stolen work before yielding.
poll_stepHow many times to increase the number of calls to process stolen work before yielding.

Member Function Documentation

◆ add_active()

template<typename StealPolicy = circular_steal>
void stapl::work_stealing_scheduler< StealPolicy >::add_active ( entry_type e)

Adds an active entry to the scheduler.

If the entry is migrated from somewhere else, it also notifies about that fact.

◆ get_location_md()

runtime::location_md& stapl::p_object::get_location_md ( void  )
noexceptinherited

Returns the location metadata of the location this object registered in. noexcept

noexcept

◆ advance_epoch()

void stapl::p_object::advance_epoch ( void  )
inherited

Advances the epoch of the object.

Advancing the epoch will flush any pending RMIs. It will also increase the epoch of the current gang if the object is not a named object.

◆ unlock()

void stapl::p_object::unlock ( void  )
inherited

Used by lock_guard functionality in method of derived classes to request atomicity with respect to incoming RMIs.

Mutates counter in the associated runqueue.

◆ lock()

void stapl::p_object::lock ( void  )
inherited

Used by lock_guard functionality in method of derived classes to request atomicity with respect to incoming RMIs.

Mutates counter in the associated runqueue.

◆ try_lock()

bool stapl::p_object::try_lock ( void  )
inherited

Attempt to maintain atomicity with respect to incoming RMIs.

Mutates counter in the associated runqueue.

Returns
true if the lock was able to be acquired. false if it is already locked.

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