Table of Contents

Class DeviceInfo

Namespace
Orleans.GpuBridge.Runtime.BackendProviders.Models
Assembly
Orleans.GpuBridge.Runtime.dll

Device information

public sealed record DeviceInfo : IEquatable<DeviceInfo>
Inheritance
DeviceInfo
Implements
Inherited Members

Constructors

DeviceInfo(int, string, GpuBackend, long, int, string[])

Device information

public DeviceInfo(int Index, string Name, GpuBackend Backend, long TotalMemory, int ComputeUnits, string[] Extensions)

Parameters

Index int
Name string
Backend GpuBackend
TotalMemory long
ComputeUnits int
Extensions string[]

Properties

Backend

public GpuBackend Backend { get; init; }

Property Value

GpuBackend

ComputeUnits

public int ComputeUnits { get; init; }

Property Value

int

Extensions

public string[] Extensions { get; init; }

Property Value

string[]

Index

public int Index { get; init; }

Property Value

int

Name

public string Name { get; init; }

Property Value

string

TotalMemory

public long TotalMemory { get; init; }

Property Value

long