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 0765b24 commit 5174cd9Copy full SHA for 5174cd9
exir/passes/constant_prop_pass.py
@@ -31,8 +31,8 @@
31
_DEFAULT_SKIP_TARGETS = {exir_ops.edge.aten.full.default}
32
33
# Skipping transpose/permute for now because https://github.com/pytorch/executorch/issues/10499
34
-_DEFAULT_SKIP_TARGETS.add(exir_ops.edge.transpose.int)
35
-_DEFAULT_SKIP_TARGETS.add(exir_ops.edge.permute.default)
+_DEFAULT_SKIP_TARGETS.add(exir_ops.edge.aten.transpose.int)
+_DEFAULT_SKIP_TARGETS.add(exir_ops.edge.aten.permute.default)
36
37
# Do not const prop quantization primitives
38
_QDQ_OPS = [
0 commit comments