Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions exir/backend/backend_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,11 @@ def to_backend(
tagged_exported_program,
)

# Partitioner added delegation tags to the graph module nodes,
# we make sure to remove them after we finished partition_and_lower
for node in tagged_graph_module.graph.nodes:
node.meta.pop("delegation_tag", None)

return ExportedProgram(
root=tagged_graph_module,
graph=tagged_graph_module.graph,
Expand Down
Loading