CPU使用压力测试

时间:2018-07-13 06:06:01

标签: performance cpu stress-testing

我正在寻找一个可能会强调CPU使用率的Windows / Mac应用程序。

我知道有Prime95和IntelBurst,但是它们可以100%快速地进入CPU利用率。

我要搜索的是一个可以将CPU利用率设置为10%,20%,30%... 100%的工具。

请分享您的想法/想法。

谢谢

1 个答案:

答案 0 :(得分:0)

您可能希望使用类似以下的脚本,该脚本经常调用usleep来防止最大的CPU使用率,同时仍然会产生一些压力。

#include <unistd.h>

int main(int argc, char** argv) {
    long i;
    int stress = 10;
    while (1) {
        for (i = 0; i < (1L << stress); i++) { }
        usleep(1);
    }
}

只需增加stress即可提高CPU使用率。