Modified some comments.

这个提交包含在:
Craig Warren
2017-03-08 14:42:40 +00:00
父节点 dc502837fb
当前提交 a71a2b529b

查看文件

@@ -202,7 +202,7 @@ def run_benchmark_sim(args, inputfile, usernamespace):
hyperthreading = ', {} cores with Hyper-Threading'.format(hostinfo['logicalcores']) if hostinfo['hyperthreading'] else ''
machineIDlong = '{}; {} x {} ({} cores{}); {} RAM; {}'.format(hostinfo['machineID'], hostinfo['sockets'], hostinfo['cpuID'], hostinfo['physicalcores'], hyperthreading, human_size(hostinfo['ram'], a_kilobyte_is_1024_bytes=True), hostinfo['osversion'])
# Number of threads to test - start from single thread and double threads until maximum number of physical cores
# Number of CPU threads to test - start from single thread and double threads until maximum number of physical cores
minthreads = 1
maxthreads = hostinfo['physicalcores']
threads = []