Copies to constant memory.

Namespace: Cudafy.Host
Assembly: Cudafy.Host (in Cudafy.Host.dll) Version: 1.0.4106.20172

Syntax

C#
public void CopyToConstantMemory<T>(
	T[,] hostArray,
	T[,] devArray
)
Visual Basic
Public Sub CopyToConstantMemory(Of T) ( _
	hostArray As T(,), _
	devArray As T(,) _
)
Visual C++
public:
generic<typename T>
void CopyToConstantMemory(
	array<T,2>^ hostArray, 
	array<T,2>^ devArray
)

Parameters

hostArray
Type: array<T,2>[,](,)[,][,]
The host array.
devArray
Type: array<T,2>[,](,)[,][,]
The device array.

Type Parameters

T
Blittable type.

See Also