Click or drag to resize
SoCudaBufferObjectMemcpy Method (SoCudaBufferObject, UInt64, UInt64, UInt64)

Copy data from a CUDA buffer into this CUDA buffer.

Namespace: OIV.Inventor.Devices
Assembly: OIV.Inventor.Cuda (in OIV.Inventor.Cuda.dll) Version: 9.9.36.0 (9.9.36.0)
Syntax
public virtual void Memcpy(
	SoCudaBufferObject sourceBufferObject,
	ulong destOffset,
	ulong sourceOffset,
	ulong copySize
)

Parameters

sourceBufferObject
Type: OIV.Inventor.DevicesSoCudaBufferObject
destOffset
Type: SystemUInt64
sourceOffset
Type: SystemUInt64
copySize
Type: SystemUInt64
Remarks

: Source and destination overlaping is NOT supported.

This function is a specialized function for speed-up. See the regular memcpy function for more information

See Also