We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 782f280 commit 76b1acbCopy full SHA for 76b1acb
1 file changed
bin/wfbench
@@ -218,8 +218,9 @@ def main():
218
if core:
219
print(f"[WfBench] {args.name} acquired core {core}")
220
221
+ mem_threads=int(10 - 10 * args.percent_cpu)
222
cpu_procs = cpu_mem_benchmark(cpu_threads=int(10 * args.percent_cpu),
- mem_threads=int(10 - 10 * args.percent_cpu),
223
+ mem_threads=mem_threads,
224
cpu_work=sys.maxsize if args.time else int(args.cpu_work),
225
core=core,
226
total_mem=args.mem)
0 commit comments