本文整理汇总了C++中Cpu::hasPstate方法的典型用法代码示例。如果您正苦于以下问题:C++ Cpu::hasPstate方法的具体用法?C++ Cpu::hasPstate怎么用?C++ Cpu::hasPstate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cpu
的用法示例。
在下文中一共展示了Cpu::hasPstate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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();
}
}
示例2: turboFromOptArg
static int turboFromOptArg(const Cpu &cpu, char *const arg)
{
const std::string convertedArg(arg);
int turbo;
if (cpu.hasPstate()) {
if (Log::isDebug()) {
std::cout << "[Debug] System has intel_pstate"
<< std::endl;
}
if (convertedArg.compare("0") == 0
|| stringStartsWith("on",
convertedArg)) {
if (Log::isDebug()) {
std::cout << "[Debug] Turbo On"
<< std::endl;
}
turbo = Values::PSTATE_TURBO;
} else if (convertedArg.compare("1") == 0
|| stringStartsWith("off",
convertedArg)) {
if (Log::isDebug()) {
std::cout << "[Debug] Turbo Off"
<< std::endl;
}
turbo = Values::PSTATE_NO_TURBO;
} else {
if (Log::isDebug()) {
std::cout << "[Debug] Turbo is insane"
<< std::endl;
}
turbo = Values::TURBO_INSANE;
}
} else {
if (Log::isDebug()) {
std::cout << "[Debug] System does not have "
<< "intel_pstate" << std::endl;
}
if (convertedArg.compare("0") == 0
|| stringStartsWith("off",
convertedArg)) {
if (Log::isDebug()) {
std::cout << "[Debug] Turbo Off"
<< std::endl;
}
turbo = Values::CPUFREQ_NO_TURBO;
} else if (convertedArg.compare("1") == 0
|| stringStartsWith("on",
convertedArg)) {
if (Log::isDebug()) {
std::cout << "[Debug] Turbo On"
<< std::endl;
}
turbo = Values::CPUFREQ_TURBO;
} else {
if (Log::isDebug()) {
std::cout << "[Debug] Turbo is insane"
<< std::endl;
}
turbo = Values::TURBO_INSANE;
}
}
return turbo;
}