File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 41
41
from qonnx .transformation .general import (
42
42
RemoveStaticGraphInputs ,
43
43
RemoveUnusedTensors ,
44
+ SortCommutativeInputsInitializerLast ,
44
45
SortGraph ,
45
- SortCommutativeInputsInitializerLast
46
46
)
47
47
48
48
Original file line number Diff line number Diff line change 29
29
import json
30
30
import numpy as np
31
31
import warnings
32
+
33
+ # Protobuf onnx graph node type
34
+ from onnx import NodeProto # noqa
32
35
from onnx import mapping
33
36
from toposort import toposort_flatten
34
37
35
38
import qonnx .util .basic as util
36
39
from qonnx .transformation .base import Transformation
37
40
38
- # Protobuf onnx graph node type
39
- from onnx import NodeProto # noqa
40
-
41
41
42
42
class MovePadAttributeToTensor (Transformation ):
43
43
"Move padding info from attribute into input tensor for Pad nodes."
You can’t perform that action at this time.
0 commit comments