Skip to content

Commit

Permalink
fixed deny list file path in log (#4)
Browse files Browse the repository at this point in the history
Co-authored-by: i.kalgin <[email protected]>
  • Loading branch information
ivkalgin and i.kalgin authored Feb 6, 2024
1 parent c996623 commit cfe33c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ti_vit/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def export(
deny_list_path = output_onnx_path.with_suffix(".deny_list")
with deny_list_path.open("wt") as deny_list_file: # pylint: disable=unspecified-encoding
json.dump(deny_list, fp=deny_list_file, indent=4)
_LOGGER.info(f'deny list created (path = "{output_onnx_path}")')
_LOGGER.info(f'deny list created (path = "{deny_list_path}")')


def export_ti_compatible_vit() -> None: # pylint: disable=missing-function-docstring
Expand Down

0 comments on commit cfe33c1

Please sign in to comment.