Show / Hide Table of Contents

Class GpuDevice

GPU device details.

Inheritance
object
GpuDevice
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudbridgeService.Models
Assembly: OCI.DotNetSDK.Cloudbridge.dll
Syntax
public class GpuDevice

Properties

CoresCount

Declaration
[JsonProperty(PropertyName = "coresCount")]
public int? CoresCount { get; set; }
Property Value
Type Description
int?

Number of GPU cores.

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

GPU device description.

Manufacturer

Declaration
[JsonProperty(PropertyName = "manufacturer")]
public string Manufacturer { get; set; }
Property Value
Type Description
string

The manufacturer of GPU.

MemoryInMBs

Declaration
[JsonProperty(PropertyName = "memoryInMBs")]
public long? MemoryInMBs { get; set; }
Property Value
Type Description
long?

GPU memory size in MBs.

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

GPU device name.

In this article
Back to top