Table of Contents

Class HardwareConstraints<T>

Namespace
AiDotNet.AutoML.NAS
Assembly
AiDotNet.dll

Hardware constraints for NAS. Defines maximum latency, energy, and memory limits for architecture search.

public class HardwareConstraints<T>

Type Parameters

T

The numeric type for constraint values

Inheritance
HardwareConstraints<T>
Inherited Members

Properties

MaxEnergy

Gets or sets the maximum energy constraint in millijoules. Null means no constraint.

public double? MaxEnergy { get; set; }

Property Value

double?

MaxLatency

Gets or sets the maximum latency constraint in milliseconds. Null means no constraint.

public double? MaxLatency { get; set; }

Property Value

double?

MaxMemory

Gets or sets the maximum memory constraint in megabytes. Null means no constraint.

public double? MaxMemory { get; set; }

Property Value

double?