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,3>^ devArray,
array<T,3>^ hostArray
) |
Parameters
- devArray
- Type: array<T,3>[,](,)[,][,]
The device array.
- hostArray
- Type: array<T,3>[,](,)[,][,]
The host array.
Type Parameters
See Also