Distributed Data Location Enumeration
Enumerates possible configurations for the location
of the components of a distributed array.
Definition
Namespace: Extreme.Mathematics.Distributed
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum DistributedDataLocation
Members
Local | 0 | The components are stored and modified locally. The TryDistribute() method must be called to copy the values to the device or worker nodes. |
Distributed | 1 | 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. |
CoDistributed | 2 | The components are distributed across worker nodes. Each worker node holds a segment of the data. |