File tree Expand file tree Collapse file tree 3 files changed +2
-11
lines changed
backends/xnnpack/operators Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 30
30
op_minimum ,
31
31
op_multiply ,
32
32
op_negate ,
33
+ op_permute ,
33
34
op_prelu ,
34
35
op_quantize_per_tensor ,
35
36
op_relu ,
42
43
op_squeeze ,
43
44
op_static_constant_pad ,
44
45
op_static_resize_bilinear_2d ,
45
- op_static_transpose ,
46
46
op_sub ,
47
47
op_to_copy ,
48
48
)
Original file line number Diff line number Diff line change 20
20
21
21
22
22
@register_node_visitor
23
- class StaticTransposeVisitor (NodeVisitor ):
23
+ class PermuteVisitor (NodeVisitor ):
24
24
target = "aten.permute_copy.default"
25
25
26
26
def __init__ (self , * args ) -> None :
Original file line number Diff line number Diff line change @@ -113,12 +113,3 @@ class OpSymSizeInt(OpSkipOps):
113
113
"""
114
114
115
115
target = "sym_size.int"
116
-
117
-
118
- @register_node_visitor
119
- class OpPermuteCopyDefault (OpSkipOps ):
120
- """
121
- do nothing if node is permute_copy.default
122
- """
123
-
124
- target = "aten.permute_copy.default"
You can’t perform that action at this time.
0 commit comments