Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
feifei-111 committed Oct 8, 2023
1 parent 4648ed8 commit 6c54af4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sot/symbolic/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ def method(self, stmt, inputs):
def layer(self, stmt, inputs):
args, kwargs = inputs
layer = stmt.layer()
assert layer is not None, "SIR bounded layer"
return stmt.layer(*args, **kwargs)
assert layer is not None, "SIR bound layer is None."
return layer(*args, **kwargs)


def compile_sir(context: SymbolicTraceContext, name: str):
Expand Down

0 comments on commit 6c54af4

Please sign in to comment.