Distributed Data Location Enumeration
Enumerates possible configurations for the location
of the components of a distributed array.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public enum DistributedDataLocation
Members
Local | 0 | The components are stored and modified locally. The Distribute() 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. |