Table of Contents

Class StreamInfo

Namespace
DotCompute.Core.Models
Assembly
DotCompute.Core.dll

Information about a CUDA stream.

public class StreamInfo
Inheritance
StreamInfo
Inherited Members

Properties

CreatedAt

Gets or sets when the stream was created.

public DateTimeOffset CreatedAt { get; set; }

Property Value

DateTimeOffset

Flags

Gets or sets the stream creation flags.

public StreamFlags Flags { get; set; }

Property Value

StreamFlags

Handle

Gets or sets the stream handle.

public nint Handle { get; set; }

Property Value

nint

IsCapturing

Gets or sets whether the stream is being captured for a graph.

public bool IsCapturing { get; set; }

Property Value

bool

IsInUse

Gets or sets whether the stream is currently in use.

public bool IsInUse { get; set; }

Property Value

bool

LastUsedAt

Gets or sets when the stream was last used.

public DateTimeOffset? LastUsedAt { get; set; }

Property Value

DateTimeOffset?

Name

Gets or sets the stream name for identification.

public string Name { get; set; }

Property Value

string

OperationCount

Gets or sets the number of operations executed on this stream.

public long OperationCount { get; set; }

Property Value

long

Priority

Gets or sets the stream priority.

public StreamPriority Priority { get; set; }

Property Value

StreamPriority