Copies from device.
Namespace: Cudafy.HostAssembly: Cudafy.Host (in Cudafy.Host.dll) Version: 1.0.4106.20172
Syntax
C# |
---|
public override void CopyFromDevice<T>(
T devArray,
out T hostData
)
|
Visual Basic |
---|
Public Overrides Sub CopyFromDevice(Of T) ( _
devArray As T, _
<OutAttribute> ByRef hostData As T _
) |
Visual C++ |
---|
public:
generic<typename T>
virtual void CopyFromDevice(
T devArray,
[OutAttribute] T% hostData
) override |
Parameters
- devArray
- Type: T
The dev array.
- hostData
- Type: T%
The host data.
Type Parameters
See Also