We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a4291e1 + 61f1c9a commit 7c86aeeCopy full SHA for 7c86aee
src/qonnx/core/modelwrapper.py
@@ -42,6 +42,7 @@
42
from qonnx.custom_op.registry import getCustomOp, is_custom_op
43
from qonnx.transformation.double_to_single_float import DoubleToSingleFloat
44
from qonnx.transformation.general import (
45
+ GiveUniqueParameterTensors,
46
RemoveStaticGraphInputs,
47
RemoveUnusedTensors,
48
SortCommutativeInputsInitializerLast,
@@ -209,6 +210,7 @@ def cleanup(self):
209
210
RemoveStaticGraphInputs(),
211
SortGraph(),
212
SortCommutativeInputsInitializerLast(),
213
+ GiveUniqueParameterTensors(),
214
]
215
for trn in cleanup_transforms:
216
transformed_model = transformed_model.transform(trn, cleanup=False, make_deepcopy=False)
0 commit comments