Enumerates possible configurations for the location
of the components of a distributed array.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum DistributedDataLocation
Public Enumeration DistributedDataLocation
public enum class DistributedDataLocation
type DistributedDataLocation
| Member name | Value | Description |
---|
| 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.
|
Reference