你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 04:56:51 +08:00
Correction to thread calc for benchmarking.
这个提交包含在:
@@ -205,9 +205,9 @@ def run_benchmark_sim(args, inputfile, usernamespace):
|
|||||||
minthreads = 1
|
minthreads = 1
|
||||||
maxthreads = psutil.cpu_count(logical=False)
|
maxthreads = psutil.cpu_count(logical=False)
|
||||||
threads = []
|
threads = []
|
||||||
while thread < maxthreads:
|
while minthreads < maxthreads:
|
||||||
threads.append(int(thread))
|
threads.append(int(minthreads))
|
||||||
thread *= 2
|
minthreads *= 2
|
||||||
threads.append(int(maxthreads))
|
threads.append(int(maxthreads))
|
||||||
threads.reverse()
|
threads.reverse()
|
||||||
|
|
||||||
|
在新工单中引用
屏蔽一个用户