Table of Contents

Class KernelParameterInfo

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

Contains information about a kernel parameter.

public sealed class KernelParameterInfo
Inheritance
KernelParameterInfo
Inherited Members

Properties

IsInput

Gets whether the parameter is an input.

public required bool IsInput { get; init; }

Property Value

bool

IsOutput

Gets whether the parameter is an output.

public required bool IsOutput { get; init; }

Property Value

bool

Name

Gets the parameter name.

public required string Name { get; init; }

Property Value

string

SizeInBytes

Gets the parameter size in bytes, if applicable.

public long? SizeInBytes { get; init; }

Property Value

long?

Type

Gets the parameter type.

public required string Type { get; init; }

Property Value

string