HPX - High Performance ParalleX

PrevUpHomeNext

Function find_remote_localities

hpx::find_remote_localities — Return the list of locality ids of remote localities supporting the given component type. By default this function will return the list of all remote localities (all but the current locality).

Synopsis

// In header: <hpx/hpx_fwd.hpp>


std::vector< naming::id_type > 
find_remote_localities(error_code & ec = throws);

Description

The function find_remote_localities() can be used to retrieve the global ids of all remote localities currently available to this application (i.e. all localities except the current one).

[Note] Note

Generally, the id of a locality can be used for instance to create new instances of components and to invoke plain actions (global functions).

[Note] Note

As long as ec is not pre-initialized to hpx::throws this function doesn't throw but returns the result code using the parameter ec. Otherwise it throws an instance of hpx::exception.

This function will return meaningful results only if called from an HPX-thread. It will return an empty vector otherwise.

See Also:

hpx::find_here(), hpx::find_locality()

Parameters:

ec

[in,out] this represents the error status on exit, if this is pre-initialized to hpx::throws the function will throw on error instead.

Returns:

The global ids representing the remote localities currently available to this application.


PrevUpHomeNext