Table of Contents

Interface IKernelParameter

Namespace
DotCompute.Abstractions.Kernels
Assembly
DotCompute.Abstractions.dll

Marker interface for kernel parameters.

public interface IKernelParameter

Properties

IsInput

Gets whether the parameter is input-only.

bool IsInput { get; }

Property Value

bool

IsOutput

Gets whether the parameter is output.

bool IsOutput { get; }

Property Value

bool

IsPointer

Gets whether the parameter is a pointer.

bool IsPointer { get; }

Property Value

bool

Name

Gets the parameter name.

string Name { get; }

Property Value

string

Type

Gets the parameter type.

Type Type { get; }

Property Value

Type