本文整理汇总了C++中Cpu::getTurboBoost方法的典型用法代码示例。如果您正苦于以下问题:C++ Cpu::getTurboBoost方法的具体用法?C++ Cpu::getTurboBoost怎么用?C++ Cpu::getTurboBoost使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cpu
的用法示例。
在下文中一共展示了Cpu::getTurboBoost方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: printCpuValues
/*
* Print out the current CPU settings as configured either from
* the cpufreq sysfs files or the intel_pstate sysfs files.
*/
void printCpuValues(const Cpu &cpu)
{
if (Log::isOutputCapable()) {
printVersion();
std::ostringstream oss;
oss << Color::boldWhite()
<< " pstate::" << Color::boldGreen()
<< "CPU_DRIVER -> "
<< Color::boldCyan() << cpu.getDriver()
<< std::endl;
oss << Color::boldWhite()
<< " pstate::" << Color::boldGreen()
<< "CPU_GOVERNOR -> "
<< Color::boldCyan() << cpu.getGovernor()
<< std::endl;
const int turbo = cpu.getTurboBoost();
oss << Color::boldWhite()
<< " pstate::" << Color::boldGreen()
<< (cpu.hasPstate()
? "NO_TURBO -> "
: "TURBO_BOOST -> ")
<< Color::boldCyan() << turbo << " : "
<< (cpu.hasPstate()
? (turbo == 1
? "OFF"
: "ON")
: (turbo == 1
? "ON"
: "OFF"))
<< std::endl;
oss << Color::boldWhite()
<< " pstate::" << Color::boldGreen()
<< "CPU_MIN -> "
<< Color::boldCyan() << cpu.getMinValue() << "% : "
<< static_cast<int>(cpu.getScalingMinFrequency())
<< "KHz" << std::endl;
oss << Color::boldWhite()
<< " pstate::" << Color::boldGreen()
<< "CPU_MAX -> "
<< Color::boldCyan() << cpu.getMaxValue() << "% : "
<< static_cast<int>(cpu.getScalingMaxFrequency())
<< "KHz" << std::endl;
oss << Color::reset();
std::cout << oss.str();
}
}