Advertisement
Guest User

Untitled

a guest
Jun 19th, 2020
743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. # Define CPUs governor
  2. # valid governors: ondemand, performance, powersave, conservative, userspace.
  3. governor='perfomance'
  4.  
  5. # Limit frequency range
  6. # Valid suffixes: Hz, kHz (default), MHz, GHz, THz
  7. min_freq="800MHz"
  8. max_freq="3.1GHz"
  9.  
  10. # Specific frequency to be set.
  11. # Requires userspace governor to be available.
  12. # Do not set governor field if you use this one.
  13. #freq=
  14.  
  15. # Utilizes cores in one processor package/socket first before processes are
  16. # scheduled to other processor packages/sockets.
  17. # See man (1) CPUPOWER-SET for additional details.
  18. #mc_scheduler=
  19.  
  20. # Utilizes thread siblings of one processor core first before processes are
  21. # scheduled to other cores. See man (1) CPUPOWER-SET for additional details.
  22. #smp_scheduler=
  23.  
  24. # Sets a register on supported Intel processore which allows software to convey
  25. # its policy for the relative importance of performance versus energy savings to
  26. # the processor. See man (1) CPUPOWER-SET for additional details.
  27. #perf_bias=
  28.  
  29. # vim:set ts=2 sw=2 ft=sh et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement