Class DebugReport
- Namespace
- DotCompute.Abstractions.Debugging
- Assembly
- DotCompute.Abstractions.dll
Represents a comprehensive debug report.
public sealed class DebugReport
- Inheritance
-
DebugReport
- Inherited Members
Properties
Attachments
Gets attachments or additional files.
public IReadOnlyList<ReportAttachment> Attachments { get; init; }
Property Value
Content
Gets the main content of the report.
public string Content { get; init; }
Property Value
Format
Gets the format of this report.
public ReportFormat Format { get; init; }
Property Value
GeneratedAt
Gets when this report was generated.
public DateTime GeneratedAt { get; init; }
Property Value
KernelName
Gets the name of the kernel this report covers.
public string KernelName { get; init; }
Property Value
OverallSeverity
Gets the severity level of issues found.
public ValidationSeverity OverallSeverity { get; init; }
Property Value
Recommendations
Gets recommendations based on the analysis.
public IReadOnlyList<string> Recommendations { get; init; }
Property Value
Scores
Gets performance ratings and scores.
public Dictionary<string, double> Scores { get; init; }
Property Value
Summary
Gets the executive summary of findings.
public string Summary { get; init; }