Copies the complete device array to the host array.

Namespace: Cudafy.Host
Assembly: Cudafy.Host (in Cudafy.Host.dll) Version: 1.0.4106.20172

Syntax

C#
public void CopyFromDevice<T>(
	T[,] devArray,
	T[,] hostArray
)
Visual Basic
Public Sub CopyFromDevice(Of T) ( _
	devArray As T(,), _
	hostArray As T(,) _
)
Visual C++
public:
generic<typename T>
void CopyFromDevice(
	array<T,2>^ devArray, 
	array<T,2>^ hostArray
)

Parameters

devArray
Type: array<T,2>[,](,)[,][,]
The device array.
hostArray
Type: array<T,2>[,](,)[,][,]
The host array.

Type Parameters

T
Blittable type.

See Also