Table of Contents

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

IReadOnlyList<ReportAttachment>

Content

Gets the main content of the report.

public string Content { get; init; }

Property Value

string

Format

Gets the format of this report.

public ReportFormat Format { get; init; }

Property Value

ReportFormat

GeneratedAt

Gets when this report was generated.

public DateTime GeneratedAt { get; init; }

Property Value

DateTime

KernelName

Gets the name of the kernel this report covers.

public string KernelName { get; init; }

Property Value

string

OverallSeverity

Gets the severity level of issues found.

public ValidationSeverity OverallSeverity { get; init; }

Property Value

ValidationSeverity

Recommendations

Gets recommendations based on the analysis.

public IReadOnlyList<string> Recommendations { get; init; }

Property Value

IReadOnlyList<string>

Scores

Gets performance ratings and scores.

public Dictionary<string, double> Scores { get; init; }

Property Value

Dictionary<string, double>

Summary

Gets the executive summary of findings.

public string Summary { get; init; }

Property Value

string