PrivateDist¶
Usage
use PrivateDist;
or
import PrivateDist;
Warning
PrivateDist is unstable and may change in the future
- record privateDist : writeSerializable¶
This
privateDist
distribution maps each indexi
between0
andnumLocales-1
toLocales[i]
.The index set of a domain distributed over
privateDist
is always0..numLocales-1
, regardless of the domain’s rank, and cannot be changed.The following domain is available as a convenience, so user programs do not need to declare their own:
const PrivateSpace: domain(1) dmapped new privateDist();
Example
The following code declares a Private-distributed array
A
. The forall loop visits each locale and sets the array element corresponding to that locale to that locale’s number of cores.var A: [PrivateSpace] int; forall a in A do a = here.numPUs();
Data-Parallel Iteration
A forall loop over a
privateDist
domain or array runs a single task on each locale. That task executes the loop’s iteration corresponding to that locale’s index in theLocales
array.Limitations
Domains and arrays distributed over this distribution do not provide some standard domain/array functionality.
This distribution may perform unnecessary communication between locales.