File tree Expand file tree Collapse file tree 2 files changed +0
-115
lines changed
backends/nxp/backend/ir/tflite_optimizer Expand file tree Collapse file tree 2 files changed +0
-115
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1111
1212from executorch .backends .nxp .backend .ir import logger
1313from executorch .backends .nxp .backend .ir .conversion_config import ConversionConfig
14- from executorch .backends .nxp .backend .ir .tflite_optimizer .optimizations .move_relu_before_concat import (
15- MoveActivationBeforeConcatenation ,
16- )
1714from executorch .backends .nxp .backend .ir .tflite_optimizer .optimizations .permute_fully_connected_weights_after_reshape import (
1815 PermuteFullyConnectedWeightsAfterReshape ,
1916)
@@ -29,8 +26,6 @@ class Optimization(Enum):
2926
3027 PERMUTE_FULLY_CONNECTED_WEIGHTS_AFTER_RESHAPE = 12
3128
32- MOVE_ACTIVATION_BEFORE_CONCAT = 15
33-
3429
3530class Optimizer :
3631 """
@@ -68,9 +63,6 @@ def __init__(
6863 Optimization .PERMUTE_FULLY_CONNECTED_WEIGHTS_AFTER_RESHAPE : PermuteFullyConnectedWeightsAfterReshape (
6964 builder , conversion_config
7065 ),
71- Optimization .MOVE_ACTIVATION_BEFORE_CONCAT : MoveActivationBeforeConcatenation (
72- builder , conversion_config
73- ),
7466 }
7567
7668 def optimize (
You can’t perform that action at this time.
0 commit comments