Copies from device.

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

Syntax

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

Parameters

devArray
Type: array<T>[]()[][]
The device array.
devOffset
Type: System..::..Int32
The device offset.
hostArray
Type: array<T>[]()[][]
The host array.
hostOffset
Type: System..::..Int32
The host offset.
count
Type: System..::..Int32
The number of elements.

Type Parameters

T
Blittable type.

See Also