Class KernelValidationResult
- Namespace
- DotCompute.Runtime.Services.Types
- Assembly
- DotCompute.Runtime.dll
Result of kernel validation operation
public sealed class KernelValidationResult
- Inheritance
-
KernelValidationResult
- Inherited Members
Properties
Errors
Gets or sets validation errors
public IList<string> Errors { get; }
Property Value
IsValid
Gets or sets whether the kernel is valid
public bool IsValid { get; set; }
Property Value
KernelName
Gets or sets the kernel name
public string KernelName { get; set; }
Property Value
Messages
Gets or sets validation messages
public IList<string> Messages { get; }
Property Value
Metadata
Gets or sets additional metadata
public Dictionary<string, object> Metadata { get; }
Property Value
ValidationTime
Gets or sets the validation timestamp
public DateTimeOffset ValidationTime { get; set; }
Property Value
Warnings
Gets or sets validation warnings
public IList<string> Warnings { get; }