Skip to content

Commit e9f9c24

Browse files
authored
Update decode.py
1 parent 385aba0 commit e9f9c24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark/decode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from subprocess import call
22

33
CWD = "../"
4-
DEGREE = [8, 12, 16, 32, 48, 63]
4+
DEGREE = [8, 16, 32, 48, 64]
55
DELTA = [0.1, 0.2, 0.3, 0.4, 0.5]
66
call(['make'], cwd=CWD)
77
call(['./bin/decode_client', '-s'], cwd=CWD)
88
for degree in DEGREE:
99
for delta in DELTA:
1010
print(degree, delta)
1111
call(['./bin/decode_server', '--degree', str(degree), '--delta', str(delta)], cwd=CWD)
12-
call(['./bin/decode_client', '-r', '-o', 'decode_out/out_{}_{}.png'.format(degree, delta)], cwd=CWD)
12+
call(['./bin/decode_client', '-r', '-o', 'decode_out/out_{}_{}.png'.format(degree, delta)], cwd=CWD)

0 commit comments

Comments
 (0)