Copies data on host.
Namespace: Cudafy.HostAssembly: Cudafy.Host (in Cudafy.Host.dll) Version: 1.0.4106.20172
Syntax
C# |
---|
public static void CopyOnHost<T>(
IntPtr hostAllocatedMemory,
int srcOffset,
T[] nativeHostArrayDst,
int destOffset,
int count
)
|
Visual Basic |
---|
Public Shared Sub CopyOnHost(Of T) ( _
hostAllocatedMemory As IntPtr, _
srcOffset As Integer, _
nativeHostArrayDst As T(), _
destOffset As Integer, _
count As Integer _
) |
Visual C++ |
---|
public:
generic<typename T>
static void CopyOnHost(
IntPtr hostAllocatedMemory,
int srcOffset,
array<T>^ nativeHostArrayDst,
int destOffset,
int count
) |
Type Parameters
See Also