Skip to content

Commit 7bdd6cb

Browse files
committed
Rename MI -> FP in to_tosa_memory_format_pass
1 parent 375dfd7 commit 7bdd6cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

backends/arm/test/passes/test_to_tosa_memory_format.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from executorch.backends.arm.test import common
1212
from executorch.backends.arm.test.tester.test_pipeline import (
1313
PassPipeline,
14-
TosaPipelineMI,
14+
TosaPipelineFP,
1515
)
1616
from executorch.backends.transforms.remove_getitem_op import RemoveGetItemPass
1717

@@ -167,7 +167,7 @@ def get_inputs(self):
167167

168168

169169
@common.parametrize("module", modules)
170-
def test_to_tosa_memory_format_tosa_MI(module):
170+
def test_to_tosa_memory_format_tosa_FP(module):
171171
# We cannot check op counts after a specific pass with the full pipeline
172172
pipeline = PassPipeline[input_t](
173173
module,
@@ -181,7 +181,7 @@ def test_to_tosa_memory_format_tosa_MI(module):
181181

182182

183183
@common.parametrize("module", modules)
184-
def test_to_tosa_memory_format_tosa_MI_functional(module):
184+
def test_to_tosa_memory_format_tosa_FP_functional(module):
185185
# Also run the actual pass pipeline to ensure functional correctness.
186-
pipeline = TosaPipelineMI[input_t](module, module.get_inputs(), [])
186+
pipeline = TosaPipelineFP[input_t](module, module.get_inputs(), [])
187187
pipeline.run()

0 commit comments

Comments
 (0)