Hardware/Nvidia/NvidiaGPU.cs
author moel.mich
Mon, 28 Jun 2010 20:39:49 +0000
changeset 145 673c2ad36db2
parent 134 8b3b9b2e28e5
child 165 813d8bc3192f
permissions -rw-r--r--
Added the ITE chip version to the report.
moel@1
     1
/*
moel@1
     2
  
moel@1
     3
  Version: MPL 1.1/GPL 2.0/LGPL 2.1
moel@1
     4
moel@1
     5
  The contents of this file are subject to the Mozilla Public License Version
moel@1
     6
  1.1 (the "License"); you may not use this file except in compliance with
moel@1
     7
  the License. You may obtain a copy of the License at
moel@1
     8
 
moel@1
     9
  http://www.mozilla.org/MPL/
moel@1
    10
moel@1
    11
  Software distributed under the License is distributed on an "AS IS" basis,
moel@1
    12
  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
moel@1
    13
  for the specific language governing rights and limitations under the License.
moel@1
    14
moel@1
    15
  The Original Code is the Open Hardware Monitor code.
moel@1
    16
moel@1
    17
  The Initial Developer of the Original Code is 
moel@1
    18
  Michael Möller <m.moeller@gmx.ch>.
moel@1
    19
  Portions created by the Initial Developer are Copyright (C) 2009-2010
moel@1
    20
  the Initial Developer. All Rights Reserved.
moel@1
    21
moel@1
    22
  Contributor(s):
moel@1
    23
moel@1
    24
  Alternatively, the contents of this file may be used under the terms of
moel@1
    25
  either the GNU General Public License Version 2 or later (the "GPL"), or
moel@1
    26
  the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
moel@1
    27
  in which case the provisions of the GPL or the LGPL are applicable instead
moel@1
    28
  of those above. If you wish to allow use of your version of this file only
moel@1
    29
  under the terms of either the GPL or the LGPL, and not to allow others to
moel@1
    30
  use your version of this file under the terms of the MPL, indicate your
moel@1
    31
  decision by deleting the provisions above and replace them with the notice
moel@1
    32
  and other provisions required by the GPL or the LGPL. If you do not delete
moel@1
    33
  the provisions above, a recipient may use your version of this file under
moel@1
    34
  the terms of any one of the MPL, the GPL or the LGPL.
moel@1
    35
 
moel@1
    36
*/
moel@1
    37
moel@1
    38
using System;
moel@1
    39
using System.Collections.Generic;
moel@1
    40
using System.Drawing;
moel@140
    41
using System.Text;
moel@1
    42
moel@1
    43
namespace OpenHardwareMonitor.Hardware.Nvidia {
moel@38
    44
  public class NvidiaGPU : Hardware, IHardware {
moel@1
    45
moel@1
    46
    private string name;
moel@1
    47
    private Image icon;
moel@1
    48
    private int adapterIndex;
moel@1
    49
    private NvPhysicalGpuHandle handle;
moel@140
    50
    private NvDisplayHandle? displayHandle;
moel@1
    51
moel@1
    52
    private Sensor[] temperatures;
moel@38
    53
    private Sensor fan = null;
moel@140
    54
    private Sensor[] clocks;
moel@140
    55
    private Sensor[] loads;
moel@140
    56
    private Sensor control;
moel@140
    57
    private Sensor memoryLoad;
moel@38
    58
moel@140
    59
    public NvidiaGPU(int adapterIndex, NvPhysicalGpuHandle handle, 
moel@140
    60
      NvDisplayHandle? displayHandle) 
moel@140
    61
    {
moel@56
    62
      string gpuName;
moel@56
    63
      if (NVAPI.NvAPI_GPU_GetFullName(handle, out gpuName) == NvStatus.OK) {
moel@56
    64
        this.name = "NVIDIA " + gpuName.Trim();
moel@56
    65
      } else {
moel@56
    66
        this.name = "NVIDIA";
moel@56
    67
      }
moel@56
    68
      this.icon = Utilities.EmbeddedResources.GetImage("nvidia.png");
moel@56
    69
      this.adapterIndex = adapterIndex;
moel@56
    70
      this.handle = handle;
moel@140
    71
      this.displayHandle = displayHandle;
moel@1
    72
moel@56
    73
      NvGPUThermalSettings settings = GetThermalSettings();
moel@56
    74
      temperatures = new Sensor[settings.Count];
moel@56
    75
      for (int i = 0; i < temperatures.Length; i++) {
moel@56
    76
        NvSensor sensor = settings.Sensor[i];
moel@56
    77
        string name;
moel@56
    78
        switch (sensor.Target) {
moel@56
    79
          case NvThermalTarget.BOARD: name = "GPU Board"; break;
moel@56
    80
          case NvThermalTarget.GPU: name = "GPU Core"; break;
moel@56
    81
          case NvThermalTarget.MEMORY: name = "GPU Memory"; break;
moel@56
    82
          case NvThermalTarget.POWER_SUPPLY: name = "GPU Power Supply"; break;
moel@56
    83
          case NvThermalTarget.UNKNOWN: name = "GPU Unknown"; break;
moel@56
    84
          default: name = "GPU"; break;
moel@38
    85
        }
moel@134
    86
        temperatures[i] = new Sensor(name, i, SensorType.Temperature, this, 
moel@134
    87
          new ParameterDescription[0]);
moel@56
    88
        ActivateSensor(temperatures[i]);
moel@56
    89
      }
moel@1
    90
moel@56
    91
      int value;
moel@56
    92
      if (NVAPI.NvAPI_GPU_GetTachReading != null &&
moel@56
    93
        NVAPI.NvAPI_GPU_GetTachReading(handle, out value) == NvStatus.OK) {
moel@56
    94
        if (value > 0) {
moel@56
    95
          fan = new Sensor("GPU", 0, SensorType.Fan, this);
moel@56
    96
          ActivateSensor(fan);
moel@1
    97
        }
moel@1
    98
      }
moel@140
    99
moel@140
   100
      clocks = new Sensor[3];
moel@140
   101
      clocks[0] = new Sensor("GPU Core", 0, SensorType.Clock, this);
moel@140
   102
      clocks[1] = new Sensor("GPU Memory", 1, SensorType.Clock, this);
moel@140
   103
      clocks[2] = new Sensor("GPU Shader", 2, SensorType.Clock, this);
moel@140
   104
      for (int i = 0; i < clocks.Length; i++)
moel@140
   105
        ActivateSensor(clocks[i]);
moel@140
   106
moel@140
   107
      loads = new Sensor[3];
moel@140
   108
      loads[0] = new Sensor("GPU Core", 0, SensorType.Load, this);
moel@140
   109
      loads[1] = new Sensor("GPU Memory Controller", 1, SensorType.Load, this);
moel@140
   110
      loads[2] = new Sensor("GPU Video Engine", 2, SensorType.Load, this);
moel@140
   111
      memoryLoad = new Sensor("GPU Memory", 3, SensorType.Load, this);
moel@140
   112
moel@140
   113
      control = new Sensor("GPU Fan", 0, SensorType.Control, this);
moel@1
   114
    }
moel@1
   115
moel@110
   116
    public override string Name {
moel@1
   117
      get { return name; }
moel@1
   118
    }
moel@1
   119
moel@110
   120
    public override Identifier Identifier {
moel@109
   121
      get { return new Identifier("nvidiagpu", adapterIndex.ToString()); }
moel@1
   122
    }
moel@1
   123
moel@110
   124
    public override Image Icon {
moel@1
   125
      get { return icon; }
moel@1
   126
    }
moel@1
   127
moel@1
   128
    private NvGPUThermalSettings GetThermalSettings() {
moel@1
   129
      NvGPUThermalSettings settings = new NvGPUThermalSettings();
moel@1
   130
      settings.Version = NVAPI.GPU_THERMAL_SETTINGS_VER;
moel@1
   131
      settings.Count = NVAPI.MAX_THERMAL_SENSORS_PER_GPU;
moel@1
   132
      settings.Sensor = new NvSensor[NVAPI.MAX_THERMAL_SENSORS_PER_GPU];
moel@140
   133
      if (NVAPI.NvAPI_GPU_GetThermalSettings != null &&
moel@140
   134
        NVAPI.NvAPI_GPU_GetThermalSettings(handle, (int)NvThermalTarget.ALL,
moel@38
   135
        ref settings) != NvStatus.OK) {
moel@38
   136
        settings.Count = 0;        
moel@38
   137
      }
moel@1
   138
      return settings;
moel@1
   139
    }
moel@1
   140
moel@140
   141
    private uint[] GetClocks() {
moel@140
   142
      NvClocks clocks = new NvClocks();
moel@140
   143
      clocks.Version = NVAPI.GPU_CLOCKS_VER;
moel@140
   144
      clocks.Clock = new uint[NVAPI.MAX_CLOCKS_PER_GPU];
moel@140
   145
      if (NVAPI.NvAPI_GPU_GetAllClocks != null &&
moel@140
   146
        NVAPI.NvAPI_GPU_GetAllClocks(handle, ref clocks) == NvStatus.OK) {
moel@140
   147
        return clocks.Clock;
moel@140
   148
      }
moel@140
   149
      return null;
moel@140
   150
    }
moel@140
   151
moel@110
   152
    public override void Update() {
moel@1
   153
      NvGPUThermalSettings settings = GetThermalSettings();
moel@1
   154
      foreach (Sensor sensor in temperatures) 
moel@38
   155
        sensor.Value = settings.Sensor[sensor.Index].CurrentTemp;
moel@38
   156
moel@38
   157
      if (fan != null) {
moel@38
   158
        int value = 0;
moel@38
   159
        NVAPI.NvAPI_GPU_GetTachReading(handle, out value);
moel@38
   160
        fan.Value = value;
moel@38
   161
      }
moel@140
   162
moel@140
   163
      uint[] values = GetClocks();
moel@140
   164
      if (values != null) {
moel@140
   165
        clocks[0].Value = 0.001f * values[0];
moel@140
   166
        clocks[1].Value = 0.001f * values[8];
moel@140
   167
        clocks[2].Value = 0.001f * values[14];
moel@140
   168
        if (values[30] != 0) {
moel@140
   169
          clocks[0].Value = 0.0005f * values[30];
moel@140
   170
          clocks[2].Value = 0.001f * values[30];
moel@140
   171
        }
moel@140
   172
      }
moel@140
   173
moel@140
   174
      NvPStates states = new NvPStates();
moel@140
   175
      states.Version = NVAPI.GPU_PSTATES_VER;
moel@140
   176
      states.PStates = new NvPState[NVAPI.MAX_PSTATES_PER_GPU];
moel@140
   177
      if (NVAPI.NvAPI_GPU_GetPStates != null && 
moel@140
   178
        NVAPI.NvAPI_GPU_GetPStates(handle, ref states) == NvStatus.OK) {
moel@140
   179
        for (int i = 0; i < 3; i++)
moel@140
   180
          if (states.PStates[i].Present) {
moel@140
   181
            loads[i].Value = states.PStates[i].Percentage;
moel@140
   182
            ActivateSensor(loads[i]);
moel@140
   183
          }
moel@140
   184
      } else {
moel@140
   185
        NvUsages usages = new NvUsages();
moel@140
   186
        usages.Version = NVAPI.GPU_USAGES_VER;
moel@140
   187
        usages.Usage = new uint[NVAPI.MAX_USAGES_PER_GPU];
moel@140
   188
        if (NVAPI.NvAPI_GPU_GetUsages != null &&
moel@140
   189
          NVAPI.NvAPI_GPU_GetUsages(handle, ref usages) == NvStatus.OK) {
moel@140
   190
          loads[0].Value = usages.Usage[2];
moel@140
   191
          loads[1].Value = usages.Usage[6];
moel@140
   192
          loads[2].Value = usages.Usage[10];
moel@140
   193
          for (int i = 0; i < 3; i++)
moel@140
   194
            ActivateSensor(loads[i]);
moel@140
   195
        }
moel@140
   196
      }
moel@140
   197
moel@140
   198
      NvGPUCoolerSettings coolerSettings = new NvGPUCoolerSettings();
moel@140
   199
      coolerSettings.Version = NVAPI.GPU_COOLER_SETTINGS_VER;
moel@140
   200
      coolerSettings.Cooler = new NvCooler[NVAPI.MAX_COOLER_PER_GPU];
moel@140
   201
      if (NVAPI.NvAPI_GPU_GetCoolerSettings != null && 
moel@140
   202
        NVAPI.NvAPI_GPU_GetCoolerSettings(handle, 0, ref coolerSettings) ==
moel@140
   203
        NvStatus.OK && coolerSettings.Count > 0) {
moel@140
   204
        control.Value = coolerSettings.Cooler[0].CurrentLevel;
moel@140
   205
        ActivateSensor(control);
moel@140
   206
      }
moel@140
   207
moel@140
   208
      NvMemoryInfo memoryInfo = new NvMemoryInfo();
moel@140
   209
      memoryInfo.Version = NVAPI.GPU_MEMORY_INFO_VER;
moel@140
   210
      memoryInfo.Values = new uint[NVAPI.MAX_MEMORY_VALUES_PER_GPU];
moel@140
   211
      if (NVAPI.NvAPI_GPU_GetMemoryInfo != null && displayHandle.HasValue &&
moel@140
   212
        NVAPI.NvAPI_GPU_GetMemoryInfo(displayHandle.Value, ref memoryInfo) == 
moel@140
   213
        NvStatus.OK) 
moel@140
   214
      {
moel@140
   215
        uint totalMemory = memoryInfo.Values[0];
moel@140
   216
        uint freeMemory = memoryInfo.Values[4];
moel@140
   217
        float usedMemory = Math.Max(totalMemory - freeMemory, 0);
moel@140
   218
        memoryLoad.Value = 100f * usedMemory / totalMemory;
moel@140
   219
        ActivateSensor(memoryLoad);
moel@140
   220
      }
moel@140
   221
    }
moel@140
   222
moel@140
   223
    public override string GetReport() {
moel@140
   224
      StringBuilder r = new StringBuilder();
moel@140
   225
moel@140
   226
      r.AppendLine("Nvidia GPU");
moel@140
   227
      r.AppendLine();
moel@140
   228
moel@140
   229
      r.AppendFormat("Name: {0}{1}", name, Environment.NewLine);
moel@140
   230
      r.AppendFormat("Index: {0}{1}", adapterIndex, Environment.NewLine);
moel@140
   231
      
moel@140
   232
      if (displayHandle.HasValue && NVAPI.NvAPI_GetDisplayDriverVersion != null) 
moel@140
   233
      {
moel@140
   234
        NvDisplayDriverVersion driverVersion = new NvDisplayDriverVersion();
moel@140
   235
        driverVersion.Version = NVAPI.DISPLAY_DRIVER_VERSION_VER;
moel@140
   236
        if (NVAPI.NvAPI_GetDisplayDriverVersion(displayHandle.Value,
moel@140
   237
          ref driverVersion) == NvStatus.OK) {
moel@140
   238
          r.Append("Driver Version: ");
moel@140
   239
          r.Append(driverVersion.DriverVersion / 100);
moel@140
   240
          r.Append(".");
moel@140
   241
          r.Append((driverVersion.DriverVersion % 100).ToString("00"));
moel@140
   242
          r.AppendLine();
moel@140
   243
          r.Append("Driver Branch: ");
moel@140
   244
          r.AppendLine(driverVersion.BuildBranch);
moel@140
   245
        }
moel@140
   246
      }
moel@140
   247
      r.AppendLine();
moel@140
   248
moel@140
   249
      if (NVAPI.NvAPI_GPU_GetThermalSettings != null) {
moel@140
   250
        NvGPUThermalSettings settings = new NvGPUThermalSettings();
moel@140
   251
        settings.Version = NVAPI.GPU_THERMAL_SETTINGS_VER;
moel@140
   252
        settings.Count = NVAPI.MAX_THERMAL_SENSORS_PER_GPU;
moel@140
   253
        settings.Sensor = new NvSensor[NVAPI.MAX_THERMAL_SENSORS_PER_GPU];
moel@140
   254
moel@140
   255
        NvStatus status = NVAPI.NvAPI_GPU_GetThermalSettings(handle,
moel@140
   256
          (int)NvThermalTarget.ALL, ref settings);
moel@140
   257
moel@140
   258
        r.AppendLine("Thermal Settings");
moel@140
   259
        r.AppendLine();
moel@140
   260
        if (status == NvStatus.OK) {
moel@140
   261
          for (int i = 0; i < settings.Count; i++) {
moel@140
   262
            r.AppendFormat(" Sensor[{0}].Controller: {1}{2}", i,
moel@140
   263
              settings.Sensor[i].Controller, Environment.NewLine);
moel@140
   264
            r.AppendFormat(" Sensor[{0}].DefaultMinTemp: {1}{2}", i,
moel@140
   265
              settings.Sensor[i].DefaultMinTemp, Environment.NewLine);
moel@140
   266
            r.AppendFormat(" Sensor[{0}].DefaultMaxTemp: {1}{2}", i,
moel@140
   267
              settings.Sensor[i].DefaultMaxTemp, Environment.NewLine);
moel@140
   268
            r.AppendFormat(" Sensor[{0}].CurrentTemp: {1}{2}", i,
moel@140
   269
              settings.Sensor[i].CurrentTemp, Environment.NewLine);
moel@140
   270
            r.AppendFormat(" Sensor[{0}].Target: {1}{2}", i,
moel@140
   271
              settings.Sensor[i].Target, Environment.NewLine);
moel@140
   272
          }
moel@140
   273
        } else {
moel@140
   274
          r.Append(" Status: ");
moel@140
   275
          r.AppendLine(status.ToString());
moel@140
   276
        }
moel@140
   277
        r.AppendLine();
moel@140
   278
      }      
moel@140
   279
moel@140
   280
      if (NVAPI.NvAPI_GPU_GetAllClocks != null) {
moel@140
   281
        NvClocks clocks = new NvClocks();
moel@140
   282
        clocks.Version = NVAPI.GPU_CLOCKS_VER;
moel@140
   283
        clocks.Clock = new uint[NVAPI.MAX_CLOCKS_PER_GPU];
moel@140
   284
        NvStatus status = NVAPI.NvAPI_GPU_GetAllClocks(handle, ref clocks);
moel@140
   285
moel@140
   286
        r.AppendLine("Clocks");
moel@140
   287
        r.AppendLine();
moel@140
   288
        if (status == NvStatus.OK) {
moel@140
   289
          for (int i = 0; i < clocks.Clock.Length; i++)
moel@140
   290
            if (clocks.Clock[i] > 0) {
moel@140
   291
              r.AppendFormat(" Clock[{0}]: {1}{2}", i, clocks.Clock[i],
moel@140
   292
                Environment.NewLine);
moel@140
   293
            }
moel@140
   294
        } else {
moel@140
   295
          r.Append(" Status: ");
moel@140
   296
          r.AppendLine(status.ToString());
moel@140
   297
        }
moel@140
   298
        r.AppendLine();
moel@140
   299
      }         
moel@140
   300
           
moel@140
   301
      if (NVAPI.NvAPI_GPU_GetTachReading != null) {
moel@140
   302
        int tachValue; 
moel@140
   303
        NvStatus status = NVAPI.NvAPI_GPU_GetTachReading(handle, out tachValue);
moel@140
   304
moel@140
   305
        r.AppendLine("Tachometer");
moel@140
   306
        r.AppendLine();
moel@140
   307
        if (status == NvStatus.OK) {
moel@140
   308
          r.AppendFormat(" Value: {0}{1}", tachValue, Environment.NewLine);
moel@140
   309
        } else {
moel@140
   310
          r.Append(" Status: ");
moel@140
   311
          r.AppendLine(status.ToString());
moel@140
   312
        }
moel@140
   313
        r.AppendLine();
moel@140
   314
      }
moel@140
   315
moel@140
   316
      if (NVAPI.NvAPI_GPU_GetPStates != null) {
moel@140
   317
        NvPStates states = new NvPStates();
moel@140
   318
        states.Version = NVAPI.GPU_PSTATES_VER;
moel@140
   319
        states.PStates = new NvPState[NVAPI.MAX_PSTATES_PER_GPU];
moel@140
   320
        NvStatus status = NVAPI.NvAPI_GPU_GetPStates(handle, ref states);
moel@140
   321
moel@140
   322
        r.AppendLine("P-States");
moel@140
   323
        r.AppendLine();
moel@140
   324
        if (status == NvStatus.OK) {
moel@140
   325
          for (int i = 0; i < states.PStates.Length; i++)
moel@140
   326
            if (states.PStates[i].Present)
moel@140
   327
              r.AppendFormat(" Percentage[{0}]: {1}{2}", i,
moel@140
   328
                states.PStates[i].Percentage, Environment.NewLine);
moel@140
   329
        } else {
moel@140
   330
          r.Append(" Status: ");
moel@140
   331
          r.AppendLine(status.ToString());
moel@140
   332
        }
moel@140
   333
        r.AppendLine();
moel@140
   334
      }
moel@140
   335
moel@140
   336
      if (NVAPI.NvAPI_GPU_GetUsages != null) {
moel@140
   337
        NvUsages usages = new NvUsages();
moel@140
   338
        usages.Version = NVAPI.GPU_USAGES_VER;
moel@140
   339
        usages.Usage = new uint[NVAPI.MAX_USAGES_PER_GPU];
moel@140
   340
        NvStatus status = NVAPI.NvAPI_GPU_GetUsages(handle, ref usages);
moel@140
   341
     
moel@140
   342
        r.AppendLine("Usages");
moel@140
   343
        r.AppendLine();
moel@140
   344
        if (status == NvStatus.OK) {
moel@140
   345
          for (int i = 0; i < usages.Usage.Length; i++)
moel@140
   346
            if (usages.Usage[i] > 0)
moel@140
   347
              r.AppendFormat(" Usage[{0}]: {1}{2}", i,
moel@140
   348
                usages.Usage[i], Environment.NewLine);
moel@140
   349
        } else {
moel@140
   350
          r.Append(" Status: ");
moel@140
   351
          r.AppendLine(status.ToString());
moel@140
   352
        }
moel@140
   353
        r.AppendLine();
moel@140
   354
      }
moel@140
   355
moel@140
   356
      if (NVAPI.NvAPI_GPU_GetCoolerSettings != null) {
moel@140
   357
        NvGPUCoolerSettings settings = new NvGPUCoolerSettings();
moel@140
   358
        settings.Version = NVAPI.GPU_COOLER_SETTINGS_VER;
moel@140
   359
        settings.Cooler = new NvCooler[NVAPI.MAX_COOLER_PER_GPU];
moel@140
   360
        NvStatus status =
moel@140
   361
          NVAPI.NvAPI_GPU_GetCoolerSettings(handle, 0, ref settings);
moel@140
   362
moel@140
   363
        r.AppendLine("Cooler Settings");
moel@140
   364
        r.AppendLine();
moel@140
   365
        if (status == NvStatus.OK) {
moel@140
   366
          for (int i = 0; i < settings.Count; i++) {
moel@140
   367
            r.AppendFormat(" Cooler[{0}].Type: {1}{2}", i,
moel@140
   368
              settings.Cooler[i].Type, Environment.NewLine);
moel@140
   369
            r.AppendFormat(" Cooler[{0}].Controller: {1}{2}", i,
moel@140
   370
              settings.Cooler[i].Controller, Environment.NewLine);
moel@140
   371
            r.AppendFormat(" Cooler[{0}].DefaultMin: {1}{2}", i,
moel@140
   372
              settings.Cooler[i].DefaultMin, Environment.NewLine);
moel@140
   373
            r.AppendFormat(" Cooler[{0}].DefaultMax: {1}{2}", i,
moel@140
   374
              settings.Cooler[i].DefaultMax, Environment.NewLine);
moel@140
   375
            r.AppendFormat(" Cooler[{0}].CurrentMin: {1}{2}", i,
moel@140
   376
              settings.Cooler[i].CurrentMin, Environment.NewLine);
moel@140
   377
            r.AppendFormat(" Cooler[{0}].CurrentMax: {1}{2}", i,
moel@140
   378
              settings.Cooler[i].CurrentMax, Environment.NewLine);
moel@140
   379
            r.AppendFormat(" Cooler[{0}].CurrentLevel: {1}{2}", i,
moel@140
   380
              settings.Cooler[i].CurrentLevel, Environment.NewLine);
moel@140
   381
            r.AppendFormat(" Cooler[{0}].DefaultPolicy: {1}{2}", i,
moel@140
   382
              settings.Cooler[i].DefaultPolicy, Environment.NewLine);
moel@140
   383
            r.AppendFormat(" Cooler[{0}].CurrentPolicy: {1}{2}", i,
moel@140
   384
              settings.Cooler[i].CurrentPolicy, Environment.NewLine);
moel@140
   385
            r.AppendFormat(" Cooler[{0}].Target: {1}{2}", i,
moel@140
   386
              settings.Cooler[i].Target, Environment.NewLine);
moel@140
   387
            r.AppendFormat(" Cooler[{0}].ControlType: {1}{2}", i,
moel@140
   388
              settings.Cooler[i].ControlType, Environment.NewLine);
moel@140
   389
            r.AppendFormat(" Cooler[{0}].Active: {1}{2}", i,
moel@140
   390
              settings.Cooler[i].Active, Environment.NewLine);
moel@140
   391
          }
moel@140
   392
        } else {
moel@140
   393
          r.Append(" Status: ");
moel@140
   394
          r.AppendLine(status.ToString());
moel@140
   395
        }
moel@140
   396
        r.AppendLine();
moel@140
   397
      }
moel@140
   398
moel@140
   399
      if (NVAPI.NvAPI_GPU_GetMemoryInfo != null && displayHandle.HasValue) {
moel@140
   400
        NvMemoryInfo memoryInfo = new NvMemoryInfo();
moel@140
   401
        memoryInfo.Version = NVAPI.GPU_MEMORY_INFO_VER;
moel@140
   402
        memoryInfo.Values = new uint[NVAPI.MAX_MEMORY_VALUES_PER_GPU];
moel@140
   403
        NvStatus status = NVAPI.NvAPI_GPU_GetMemoryInfo(displayHandle.Value, 
moel@140
   404
          ref memoryInfo);
moel@140
   405
moel@140
   406
        r.AppendLine("Memory Info");
moel@140
   407
        r.AppendLine();
moel@140
   408
        if (status == NvStatus.OK) {
moel@140
   409
          for (int i = 0; i < memoryInfo.Values.Length; i++)
moel@140
   410
            r.AppendFormat(" Value[{0}]: {1}{2}", i,
moel@140
   411
                memoryInfo.Values[i], Environment.NewLine);
moel@140
   412
        } else {
moel@140
   413
          r.Append(" Status: ");
moel@140
   414
          r.AppendLine(status.ToString());
moel@140
   415
        }
moel@140
   416
        r.AppendLine();
moel@140
   417
      }
moel@140
   418
moel@140
   419
      return r.ToString();
moel@1
   420
    }
moel@1
   421
  }
moel@1
   422
}