Copies the complete device array to the host array.
Namespace: Cudafy.HostAssembly: 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>^ devArray,
array<T>^ hostArray
) |
Parameters
- devArray
- Type: array<T>[]()[][]
The device array.
- hostArray
- Type: array<T>[]()[][]
The host array.
Type Parameters
See Also