Skip to content

Commit

Permalink
fix: update api in sanity_check
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrery authored Apr 13, 2022
1 parent 0034200 commit 88bfc26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/release_resources/sanity_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def function_to_compile(x):
correct = 0
for idx, (input_i, label_i) in enumerate(zip(inputs, labels), 1):
print(f"Inference #{idx}")
result_i = engine.run(*input_i)
result_i = engine.encrypt_run_decrypt(*input_i)

if result_i == label_i:
correct += 1
Expand Down

0 comments on commit 88bfc26

Please sign in to comment.