Skip to content

Commit 2271777

Browse files
committed
fix missing variable
1 parent 9bd2cf3 commit 2271777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

onnx_diagnostic/torch_models/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ def validate_model(
712712
print(f"[validate_model] done (dump onnx) in {duration}")
713713
data["onnx_filename"] = onnx_filename
714714
summary["time_onnx_save"] = duration
715-
summary.update(compute_statistics(onnx_filename))
715+
summary.update(compute_statistics(onnx_filename))
716716
if verbose:
717717
print(f"[validate_model] dumps statistics in {dump_folder!r}...")
718718
dump_stats = os.path.join(dump_folder, f"{folder_name}.stats")

0 commit comments

Comments
 (0)