DistributedDataLocation Enumeration

Enumerates possible configurations for the location of the components of a distributed array.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum DistributedDataLocation

Members

Local0 The components are stored and modified locally. The Distribute() method must be called to copy the values to the device or worker nodes.
Distributed1 The components are stored and modified on the device or worker nodes. Each device or worker node holds a full copy of the data. The Gather() method must be called to copy the values to the host or master node.
CoDistributed2 The components are distributed across worker nodes. Each worker node holds a segment of the data.

See Also