Skip to content

Commit

Permalink
[ESI Runtime] Remove an errant debug print
Browse files Browse the repository at this point in the history
One of my debug prints slipped through. Fix it.
  • Loading branch information
teqdruid committed Dec 19, 2024
1 parent c31f207 commit a91463e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/Dialect/ESI/runtime/python/esiaccel/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ def supports_host(self) -> Tuple[bool, Optional[str]]:
"""Does this type support host communication via Python? Returns either
'(True, None)' if it is, or '(False, reason)' if it is not."""

print(f"supports_host: {self.cpp_type} {type(self)}")
if self.bit_width % 8 != 0:
return (False, "runtime only supports types with multiple of 8 bits")
return (True, None)
Expand Down

0 comments on commit a91463e

Please sign in to comment.