File tree Expand file tree Collapse file tree 2 files changed +0
-243
lines changed
backends/nxp/backend/ir/tflite_optimizer Expand file tree Collapse file tree 2 files changed +0
-243
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 .fuse_activation_functions import (
15- FuseActivationFunctions ,
16- )
1714from executorch .backends .nxp .backend .ir .tflite_optimizer .optimizations .move_relu_before_concat import (
1815 MoveActivationBeforeConcatenation ,
1916)
2724
2825
2926class Optimization (Enum ):
30- FUSE_ACTIVATION_FUNCTIONS = 1
31-
3227 FUSE_TRANSPOSE_OPERATORS = 5
3328 REMOVE_IDENTITY_TRANSPOSE_OPERATORS = 6
3429
@@ -64,9 +59,6 @@ def __init__(
6459 self ._builder = builder
6560
6661 self .optimization_map = {
67- Optimization .FUSE_ACTIVATION_FUNCTIONS : FuseActivationFunctions (
68- builder , conversion_config
69- ),
7062 Optimization .FUSE_TRANSPOSE_OPERATORS : FuseTransposeOperators (
7163 builder , conversion_config
7264 ),
You can’t perform that action at this time.
0 commit comments