Skip to content

Commit 74cf5e7

Browse files
authored
fix old command-line changes (#1067)
1 parent 3b5f067 commit 74cf5e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libexec/scaling

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ def benchmark(cfg, threads):
3838
exiting,benchmarks = False,collections.OrderedDict()
3939
cmd = ['run-clara',
4040
'-c',cfg.c,
41-
'-n',str(cfg.e*threads),
41+
'-n',str(cfg.e*int(threads)),
4242
'-t',str(threads),
4343
'-y',cfg.y,
4444
'-o',f'tmp-scaling-{threads}',
45-
cfg.input]
45+
cfg.i]
4646
for line in run(cmd):
4747
cols = line.split()
4848
print(line)

libexec/scaling.gpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
set terminal qt size 1000,700
2+
set terminal svg size 1000,700
33

44
set multiplot layout 2,2
55
set datafile columnheaders

0 commit comments

Comments
 (0)