We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e755c07 commit af3e27eCopy full SHA for af3e27e
python/paddle/fluid/contrib/slim/quantization/utils.py
@@ -109,6 +109,7 @@
109
"softplus",
110
"shuffle_channel",
111
"reduce_max",
112
+ "scale",
113
]
114
115
_out_scale_op_list = list(
@@ -191,7 +192,7 @@
191
192
"fill_any_like": [["X"], ["Out"]],
193
"fill_constant": [[], ["Out"]],
194
"gelu": [["X"], ["Out"]],
- "instance_norm": [["X"], ["Out"]],
195
+ "instance_norm": [["X"], ["Y"]],
196
"lookup_table": [["W", "Ids"], ["Out"]],
197
"lookup_table_v2": [["W", "Ids"], ["Out"]],
198
"norm": [["X"], ["Norm"]],
@@ -214,6 +215,7 @@
214
215
"softplus": [["X"], ["Out"]],
216
"shuffle_channel": [["X"], ["Out"]],
217
"reduce_max": [["X"], ["Out"]],
218
+ "scale": [["X"], ["Out"]],
219
}
220
221
0 commit comments