mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Experimental GPU overclock
This commit is contained in:
42
app/NvAPIWrapper/GPU/GPUPowerTopologyStatus.cs
Normal file
42
app/NvAPIWrapper/GPU/GPUPowerTopologyStatus.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using NvAPIWrapper.Native.GPU;
|
||||
using NvAPIWrapper.Native.GPU.Structures;
|
||||
|
||||
namespace NvAPIWrapper.GPU
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains information about a power domain usage
|
||||
/// </summary>
|
||||
public class GPUPowerTopologyStatus
|
||||
{
|
||||
internal GPUPowerTopologyStatus(
|
||||
PrivatePowerTopologiesStatusV1.PowerTopologiesStatusEntry powerTopologiesStatusEntry)
|
||||
{
|
||||
Domain = powerTopologiesStatusEntry.Domain;
|
||||
PowerUsageInPCM = powerTopologiesStatusEntry.PowerUsageInPCM;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the power usage domain
|
||||
/// </summary>
|
||||
public PowerTopologyDomain Domain { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the current power usage in per cent mille (PCM)
|
||||
/// </summary>
|
||||
public uint PowerUsageInPCM { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the current power usage in percentage
|
||||
/// </summary>
|
||||
public float PowerUsageInPercent
|
||||
{
|
||||
get => PowerUsageInPCM / 1000f;
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public override string ToString()
|
||||
{
|
||||
return $"[{Domain}] {PowerUsageInPercent}%";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user