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:
46
app/NvAPIWrapper/Native/GPU/GPUFoundry.cs
Normal file
46
app/NvAPIWrapper/Native/GPU/GPUFoundry.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
namespace NvAPIWrapper.Native.GPU
|
||||
{
|
||||
/// <summary>
|
||||
/// Holds a list of known GPU foundries
|
||||
/// </summary>
|
||||
[SuppressMessage("ReSharper", "IdentifierTypo")]
|
||||
public enum GPUFoundry : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// Unknown foundry
|
||||
/// </summary>
|
||||
Unknown,
|
||||
|
||||
/// <summary>
|
||||
/// Taiwan Semiconductor Manufacturing Company Limited
|
||||
/// </summary>
|
||||
TSMC,
|
||||
|
||||
/// <summary>
|
||||
/// United Microelectronics
|
||||
/// </summary>
|
||||
UMC,
|
||||
|
||||
/// <summary>
|
||||
/// International Business Machines Corporation
|
||||
/// </summary>
|
||||
IBM,
|
||||
|
||||
/// <summary>
|
||||
/// Semiconductor Manufacturing International Corporation
|
||||
/// </summary>
|
||||
SMIC,
|
||||
|
||||
/// <summary>
|
||||
/// Chartered Semiconductor Manufacturing
|
||||
/// </summary>
|
||||
CSM,
|
||||
|
||||
/// <summary>
|
||||
/// Toshiba Corporation
|
||||
/// </summary>
|
||||
Toshiba
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user