cpu性能测试 1.素数介绍 sysbench的cpu测试是在指定时间内,循环进行素数计算 素数(也叫质数)就是从1开始的自然数中,无法被整除的数,比如2、3、5、7、11、13、17等。编程公式:对正整数n,如果用2到根号n之间的所有整数去除,均无法整除,则n为素数。 2.sysbench安装、使用 #使用方法 sysbench [general-options]… –test=<test-name> [test-options]… command General options: #通用选项 –num-threads=N number of threads to use [1] #创建测试线程的数目。默认为1. –max-requests=N limit for total number of requests [10000] #请求的最大数目。默认为10000,0代表不限制。 –max-time=N limit for total execution time in seconds [0] #最大执行时间,单位是s。默认是0,不限制。 –forced-shutdown=STRING amount of time to wait after –max-time before forcing shutdown [off] #超过max-time强制中断。默认是off。 –thread-stack-size=SIZE size of stack per thread [32K] #每个线程的堆栈大小。默认是32K。 –init-rng=[on|off] initialize random number generator [off] #在测试开始时是否初始化随机数发生器。默认是off。 –test=STRING test to run #指定测试项目名称。 –debug=[on|off] print more debugging info [off] #是否显示更多的调试信息。默认是off。 –validate=[on|off] perform validation checks where possible [off] #在可能情况下执行验证检查。默认是off。 –help=[on|off] print help and exit #帮助信息。 –version=[on|off] print version and exit #版本信息。 Compiled-in tests: #测试项目 fileio – File I/O test #IO cpu – CPU performance test #CPU memory – Memory functions speed test #内存 threads – Threads subsystem performance test #线程 mutex – Mutex performance test #互斥性能测试 oltp – OLTP test # 数据库,事务处理 Commands: prepare:测试前准备工作; run:正式测试 cleanup:测试后删掉测试数据 help version See ‘sysbench –test=<name> help’ for a list of options for each test. #查看每个测试项目的更多选项列表 3.CPU压测命令 参数介绍 –cpu-max-prime: 素数生成数量的上限 –threads: 线程数 –time: 运行时长,单位秒 –events: event上限次数 结果分析 执行命令 结果分析 event: 完成了几轮的素数计算 stddev(标准差): 在相同时间内,多个线程分别完成的素数计算次数是否稳定,如果数值越低,则表示多个线程的结果越接近(即越稳定)。该参数对于单线程无意义。 性能对比 如果有2台服务器进行CPU性能对比,当素数上限和线程数一致时: 相同时间,比较event 相同event,比较时间 时间和event都相同,比较stddev(标准差)
2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/39486.html