DistributedMatrix<T>.TryDistribute Method

Definition

Namespace: Numerics.NET.Distributed
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

TryDistribute() Attempts to distribute the local copy of the data from the host or master to the device or worker nodes.
TryDistribute(Matrix<T>) Distributes the data from a matrix on the host or master to the device or worker nodes.

TryDistribute

Attempts to distribute the local copy of the data from the host or master to the device or worker nodes.
C#
public bool TryDistribute()

Return Value

Boolean
true if the data was tranferred successfully; otherwise false.

TryDistribute(Matrix<T>)

Distributes the data from a matrix on the host or master to the device or worker nodes.
C#
public virtual bool TryDistribute(
	Matrix<T> matrix
)

Parameters

matrix  Matrix<T>
 

Return Value

Boolean

See Also