Skip to content

Commit

Permalink
Fix unsupported
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppe5 committed Dec 18, 2023
1 parent a70516d commit e2c277d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/brevitas/graph/equalize.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def srcs_names(self):

@property
def sinks_names(self):
return [name.split("$")[0] for name in self.sinks.keys()]
return [name.split("$")[0] for name in self.sinks.keys() if name is not _UNSUPPORTED_OP]

def add(
self,
Expand Down

0 comments on commit e2c277d

Please sign in to comment.