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,
	IntPtr hostArray,
	int hostOffset,
	int count
)
Visual Basic
Public Sub CopyFromDevice(Of T) ( _
	devArray As T(), _
	devOffset As Integer, _
	hostArray As IntPtr, _
	hostOffset As Integer, _
	count As Integer _
)
Visual C++
public:
generic<typename T>
void CopyFromDevice(
	array<T>^ devArray, 
	int devOffset, 
	IntPtr hostArray, 
	int hostOffset, 
	int count
)

Parameters

devArray
Type: array<T>[]()[][]
The dev array.
devOffset
Type: System..::..Int32
The device offset.
hostArray
Type: System..::..IntPtr
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