Show / Hide Table of Contents

Class IntelVmLaunchInstancePlatformConfig

The platform configuration used when launching a virtual machine instance with the Intel platform.

Inheritance
object
LaunchInstancePlatformConfig
IntelVmLaunchInstancePlatformConfig
Inherited Members
LaunchInstancePlatformConfig.IsSecureBootEnabled
LaunchInstancePlatformConfig.IsTrustedPlatformModuleEnabled
LaunchInstancePlatformConfig.IsMeasuredBootEnabled
LaunchInstancePlatformConfig.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 IntelVmLaunchInstancePlatformConfig : LaunchInstancePlatformConfig

Properties

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.

In this article
Back to top