Launches the specified kernel.

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

Syntax

C#
public void Launch(
	dim3 gridSize,
	int blockSize,
	string methodName,
	params Object[] arguments
)
Visual Basic
Public Sub Launch ( _
	gridSize As dim3, _
	blockSize As Integer, _
	methodName As String, _
	ParamArray arguments As Object() _
)
Visual C++
public:
void Launch(
	dim3^ gridSize, 
	int blockSize, 
	String^ methodName, 
	... array<Object^>^ arguments
)

Parameters

gridSize
Type: Cudafy..::..dim3
Size of the grid.
blockSize
Type: System..::..Int32
Size of the block.
methodName
Type: System..::..String
Name of the method.
arguments
Type: array<System..::..Object>[]()[][]
The arguments.

See Also