EmptyOverClock.cs 806 B

12345678910111213141516171819202122232425262728293031
  1. namespace NTMiner.Core.Gpus.Impl {
  2. public class EmptyOverClock : IOverClock {
  3. public void RefreshGpuState(int gpuIndex) {
  4. // noting need todo
  5. }
  6. public void SetFanSpeed(int gpuIndex, int value) {
  7. // noting need todo
  8. }
  9. public void SetTempLimit(int gpuIndex, int value) {
  10. // noting need todo
  11. }
  12. public void SetCoreClock(int gpuIndex, int value, int voltage) {
  13. // noting need todo
  14. }
  15. public void SetMemoryClock(int gpuIndex, int value, int voltage) {
  16. // noting need todo
  17. }
  18. public void SetPowerLimit(int gpuIndex, int value) {
  19. // noting need todo
  20. }
  21. public void Restore() {
  22. // nothing need todo
  23. }
  24. }
  25. }