cpupower.default 1007 B

123456789101112131415161718192021222324252627282930
  1. # Define CPUs governor
  2. # valid governors: ondemand, performance, powersave, conservative, userspace.
  3. #governor='ondemand'
  4. # Limit frequency range
  5. # Valid suffixes: Hz, kHz (default), MHz, GHz, THz
  6. #min_freq="2.25GHz"
  7. #max_freq="3GHz"
  8. # Specific frequency to be set.
  9. # Requires userspace governor to be available.
  10. # Do not set governor field if you use this one.
  11. #freq=
  12. # Utilizes cores in one processor package/socket first before processes are
  13. # scheduled to other processor packages/sockets.
  14. # See man (1) CPUPOWER-SET for additional details.
  15. #mc_scheduler=
  16. # Utilizes thread siblings of one processor core first before processes are
  17. # scheduled to other cores. See man (1) CPUPOWER-SET for additional details.
  18. #smp_scheduler=
  19. # Sets a register on supported Intel processore which allows software to convey
  20. # its policy for the relative importance of performance versus energy savings to
  21. # the processor. See man (1) CPUPOWER-SET for additional details.
  22. #perf_bias=
  23. # vim:set ts=2 sw=2 ft=sh et: