Copies between preallocated arrays on device.
Namespace: Cudafy.HostAssembly: Cudafy.Host (in Cudafy.Host.dll) Version: 1.0.4106.20172
Syntax
C# |
---|
public abstract void CopyOnDevice<T>(
T[] srcDevArray,
int srcOffset,
T[] dstDevArray,
int dstOffet,
int count
)
|
Visual Basic |
---|
Public MustOverride Sub CopyOnDevice(Of T) ( _
srcDevArray As T(), _
srcOffset As Integer, _
dstDevArray As T(), _
dstOffet As Integer, _
count As Integer _
) |
Visual C++ |
---|
public:
generic<typename T>
virtual void CopyOnDevice(
array<T>^ srcDevArray,
int srcOffset,
array<T>^ dstDevArray,
int dstOffet,
int count
) abstract |
Parameters
- srcDevArray
- Type: array<T>[]()[][]
The source device array.
- srcOffset
- Type: System..::..Int32
The source offset.
- dstDevArray
- Type: array<T>[]()[][]
The destination device array.
- dstOffet
- Type: System..::..Int32
The destination offet.
- count
- Type: System..::..Int32
The number of element.
Type Parameters
See Also