Experimental GPU overclock

This commit is contained in:
Serge
2023-05-06 14:40:52 +02:00
parent 8e1099545a
commit c61f4d1608
497 changed files with 46937 additions and 232 deletions

View File

@@ -0,0 +1,73 @@
namespace NvAPIWrapper.Native.GPU
{
/// <summary>
/// List of possible thermal sensor controllers
/// </summary>
public enum ThermalController
{
/// <summary>
/// No Thermal Controller
/// </summary>
None = 0,
/// <summary>
/// GPU acting as thermal controller
/// </summary>
GPU,
/// <summary>
/// ADM1032 Thermal Controller
/// </summary>
ADM1032,
/// <summary>
/// MAX6649 Thermal Controller
/// </summary>
MAX6649,
/// <summary>
/// MAX1617 Thermal Controller
/// </summary>
MAX1617,
/// <summary>
/// LM99 Thermal Controller
/// </summary>
LM99,
/// <summary>
/// LM89 Thermal Controller
/// </summary>
LM89,
/// <summary>
/// LM64 Thermal Controller
/// </summary>
LM64,
/// <summary>
/// ADT7473 Thermal Controller
/// </summary>
ADT7473,
/// <summary>
/// SBMAX6649 Thermal Controller
/// </summary>
SBMAX6649,
/// <summary>
/// VideoBios acting as thermal controller
/// </summary>
VideoBiosEvent,
/// <summary>
/// Operating System acting as thermal controller
/// </summary>
OperatingSystem,
/// <summary>
/// Unknown Thermal Controller
/// </summary>
Unknown = -1
}
}