Skip to content
Snippets Groups Projects
Commit 0d3f723f authored by Axel Farrugia's avatar Axel Farrugia
Browse files

[Fix] Exclude Clip producers

parent cbdb3438
No related branches found
No related tags found
No related merge requests found
...@@ -173,7 +173,7 @@ def exclude_unwanted_producers(model): ...@@ -173,7 +173,7 @@ def exclude_unwanted_producers(model):
configuration. configuration.
""" """
nodes_to_ignore = ["Mul", "BitShift"] nodes_to_ignore = ["Mul", "BitShift", "Clip"]
for node in model.get_nodes(): for node in model.get_nodes():
if node.type() == "Producer": if node.type() == "Producer":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment