Class HardwareConstraints<T>
Hardware constraints for NAS. Defines maximum latency, energy, and memory limits for architecture search.
public class HardwareConstraints<T>
Type Parameters
TThe 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
MaxLatency
Gets or sets the maximum latency constraint in milliseconds. Null means no constraint.
public double? MaxLatency { get; set; }
Property Value
MaxMemory
Gets or sets the maximum memory constraint in megabytes. Null means no constraint.
public double? MaxMemory { get; set; }