Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

7 changes: 0 additions & 7 deletions backends/nxp/backend/ir/tflite_optimizer/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
from executorch.backends.nxp.backend.ir.tflite_optimizer.optimizations.fuse_fully_connected_and_add_operators import (
FuseFullyConnectedAndAddOperators,
)
from executorch.backends.nxp.backend.ir.tflite_optimizer.optimizations.fuse_quanitze_into_preceding_ops import (
FuseQuantizeIntoPrecedingOps,
)
from executorch.backends.nxp.backend.ir.tflite_optimizer.optimizations.keep_one_empty_buffer import (
KeepOneEmptyBuffer,
)
Expand Down Expand Up @@ -69,7 +66,6 @@ class Optimization(Enum):

PRUNE_QUANTIZE_OPERATORS = 7
FUSE_PARALLEL_QUANTIZE_OPERATORS = 8
FUSE_QUANTIZE_INTO_PRECEDING_OPS = 9

REMOVE_UNUSED_TENSORS = 10
ELIMINATE_DEAD_BRANCHES = 11
Expand Down Expand Up @@ -136,9 +132,6 @@ def __init__(
Optimization.FUSE_PARALLEL_QUANTIZE_OPERATORS: FuseParallelQuantizeOperators(
builder, conversion_config
),
Optimization.FUSE_QUANTIZE_INTO_PRECEDING_OPS: FuseQuantizeIntoPrecedingOps(
builder, conversion_config
),
Optimization.REMOVE_UNUSED_TENSORS: RemoveUnusedTensorsAndBuffers(
builder, conversion_config
),
Expand Down
Loading