.. default-domain:: chpl .. module:: ReplicatedDim ReplicatedDim ============= **Usage** .. code-block:: chapel use ReplicatedDim; or .. code-block:: chapel import ReplicatedDim; .. record:: ReplicatedDim This Replicated dimension specifier is for use with the :mod:`dimensionalDist2D ` distribution. The dimension of a domain or array for which this specifier is used has a *replicand* for each element of ``targetLocales`` in the same dimension. This is similar to the Replicated distribution (``Replicated``). The dimension specifies differs in that it always accesses the local replicand, whereas the Replicated distribution accesses all replicands in certain cases, as specified there. **Initializer Arguments** The ``ReplicatedDim`` record initializer is available as follows: .. code-block:: chapel proc ReplicatedDim.init(numLocales:int) It creates a dimension specifier for replication over ``numLocales`` locales.