Table of Contents

Class KernelFaultEventArgs

Namespace
DotCompute.Backends.CUDA.RingKernels.Resilience
Assembly
DotCompute.Backends.CUDA.dll

Event arguments for kernel fault detection.

public sealed class KernelFaultEventArgs : EventArgs
Inheritance
KernelFaultEventArgs
Inherited Members

Properties

FaultTime

Gets the time the fault was detected.

public required DateTime FaultTime { get; init; }

Property Value

DateTime

FaultType

Gets the type of fault detected.

public required KernelFaultType FaultType { get; init; }

Property Value

KernelFaultType

KernelId

Gets the kernel identifier.

public required string KernelId { get; init; }

Property Value

string

MaxRestartAttempts

Gets the maximum restart attempts allowed.

public required int MaxRestartAttempts { get; init; }

Property Value

int

RestartAttempt

Gets the restart attempt number.

public required int RestartAttempt { get; init; }

Property Value

int