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
IsOutput
Gets whether the parameter is output.
bool IsOutput { get; }
Property Value
IsPointer
Gets whether the parameter is a pointer.
bool IsPointer { get; }
Property Value
Name
Gets the parameter name.
string Name { get; }
Property Value
Type
Gets the parameter type.
Type Type { get; }