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
Flags
Gets or sets the stream creation flags.
public StreamFlags Flags { get; set; }
Property Value
Handle
Gets or sets the stream handle.
public nint Handle { get; set; }
Property Value
IsCapturing
Gets or sets whether the stream is being captured for a graph.
public bool IsCapturing { get; set; }
Property Value
IsInUse
Gets or sets whether the stream is currently in use.
public bool IsInUse { get; set; }
Property Value
LastUsedAt
Gets or sets when the stream was last used.
public DateTimeOffset? LastUsedAt { get; set; }
Property Value
Name
Gets or sets the stream name for identification.
public string Name { get; set; }
Property Value
OperationCount
Gets or sets the number of operations executed on this stream.
public long OperationCount { get; set; }
Property Value
Priority
Gets or sets the stream priority.
public StreamPriority Priority { get; set; }