Skip to content

Commit

Permalink
Merge branch 'cleanup-give-unique-parameter-tensors' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
iksnagreb committed Jan 28, 2025
2 parents 5bbbda7 + 109bc2b commit 2a59cae
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/qonnx/core/modelwrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
from qonnx.transformation.general import (
RemoveStaticGraphInputs,
RemoveUnusedTensors,
GiveUniqueParameterTensors,
SortCommutativeInputsInitializerLast,
SortGraph,
)
Expand Down Expand Up @@ -155,6 +156,7 @@ def cleanup(self):
RemoveStaticGraphInputs(),
SortGraph(),
SortCommutativeInputsInitializerLast(),
GiveUniqueParameterTensors(),
]
for trn in cleanup_transforms:
transformed_model = transformed_model.transform(trn, cleanup=False, make_deepcopy=False)
Expand Down

0 comments on commit 2a59cae

Please sign in to comment.