Files
archived-g-helper/app/NvAPIWrapper/Native/Interfaces/GPU/IUtilizationDomainInfo.cs
2023-05-06 14:40:52 +02:00

19 lines
572 B
C#

namespace NvAPIWrapper.Native.Interfaces.GPU
{
/// <summary>
/// Holds information about a utilization domain
/// </summary>
public interface IUtilizationDomainInfo
{
/// <summary>
/// Gets a boolean value that indicates if this utilization domain is present on this GPU.
/// </summary>
bool IsPresent { get; }
/// <summary>
/// Gets the percentage of time where the domain is considered busy in the last 1 second interval.
/// </summary>
uint Percentage { get; }
}
}