Show / Hide Table of Contents

Class InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig

The platform configuration of a bare metal GPU instance that uses the BM.GPU4.8 shape (the AMD Rome platform).

Inheritance
object
InstanceConfigurationLaunchInstancePlatformConfig
InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig
Inherited Members
InstanceConfigurationLaunchInstancePlatformConfig.IsSecureBootEnabled
InstanceConfigurationLaunchInstancePlatformConfig.IsTrustedPlatformModuleEnabled
InstanceConfigurationLaunchInstancePlatformConfig.IsMeasuredBootEnabled
InstanceConfigurationLaunchInstancePlatformConfig.IsMemoryEncryptionEnabled
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig : InstanceConfigurationLaunchInstancePlatformConfig

Properties

AreVirtualInstructionsEnabled

Declaration
[JsonProperty(PropertyName = "areVirtualInstructionsEnabled")]
public bool? AreVirtualInstructionsEnabled { get; set; }
Property Value
Type Description
bool?

Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.

ConfigMap

Declaration
[JsonProperty(PropertyName = "configMap")]
public Dictionary<string, string> ConfigMap { get; set; }
Property Value
Type Description
Dictionary<string, string>

Instance Platform Configuration Configuration Map for flexible setting input.

IsAccessControlServiceEnabled

Declaration
[JsonProperty(PropertyName = "isAccessControlServiceEnabled")]
public bool? IsAccessControlServiceEnabled { get; set; }
Property Value
Type Description
bool?

Whether the Access Control Service is enabled on the instance. When enabled, the platform can enforce PCIe device isolation, required for VFIO device pass-through.

IsInputOutputMemoryManagementUnitEnabled

Declaration
[JsonProperty(PropertyName = "isInputOutputMemoryManagementUnitEnabled")]
public bool? IsInputOutputMemoryManagementUnitEnabled { get; set; }
Property Value
Type Description
bool?

Whether the input-output memory management unit is enabled.

IsSymmetricMultiThreadingEnabled

Declaration
[JsonProperty(PropertyName = "isSymmetricMultiThreadingEnabled")]
public bool? IsSymmetricMultiThreadingEnabled { get; set; }
Property Value
Type Description
bool?

Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.

NumaNodesPerSocket

Declaration
[JsonProperty(PropertyName = "numaNodesPerSocket")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig.NumaNodesPerSocketEnum? NumaNodesPerSocket { get; set; }
Property Value
Type Description
InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig.NumaNodesPerSocketEnum?

The number of NUMA nodes per socket (NPS).

In this article
Back to top