We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17c08c2 commit 6f675f3Copy full SHA for 6f675f3
exir/backend/backend_api.py
@@ -401,6 +401,11 @@ def to_backend(
401
tagged_exported_program,
402
)
403
404
+ # Partitioner added delegation tags to the graph module nodes,
405
+ # we make sure to remove them after we finished partition_and_lower
406
+ for node in tagged_graph_module.graph.nodes:
407
+ node.meta.pop("delegation_tag", None)
408
+
409
return ExportedProgram(
410
root=tagged_graph_module,
411
graph=tagged_graph_module.graph,
0 commit comments