|
| 1 | +# Copyright 2025 Arm Limited and/or its affiliates. |
| 2 | + |
| 3 | +# This source code is licensed under the BSD-style license found in the |
| 4 | +# LICENSE file in the root directory of this source tree. |
| 5 | + |
| 6 | +""" |
| 7 | +Tests 10 popular torch.nn.functional not tested in other ways or training related |
| 8 | +- normalize |
| 9 | +- grid_sample |
| 10 | +- one_hot |
| 11 | +- softplus |
| 12 | +- cosine_similarity |
| 13 | +- unfold |
| 14 | +- elu |
| 15 | +- fold |
| 16 | +- affine_grid |
| 17 | +- max_pool1d |
| 18 | +- threshold |
| 19 | +""" |
| 20 | +from typing import Callable |
| 21 | + |
| 22 | +import torch |
| 23 | +from executorch.backends.arm.test.common import parametrize |
| 24 | +from executorch.backends.arm.test.tester.test_pipeline import ( |
| 25 | + TosaPipelineBI, |
| 26 | + TosaPipelineMI, |
| 27 | +) |
| 28 | + |
| 29 | + |
| 30 | +def module_factory(function: Callable) -> torch.nn.Module: |
| 31 | + class ModuleWrapper(torch.nn.Module): |
| 32 | + def forward(self, *args): |
| 33 | + return function(*args) |
| 34 | + |
| 35 | + return ModuleWrapper() |
| 36 | + |
| 37 | + |
| 38 | +example_input = torch.rand(1, 6, 16, 16) |
| 39 | + |
| 40 | +module_tests = { |
| 41 | + "normalize": (module_factory(torch.nn.functional.normalize), (example_input,)), |
| 42 | + "grid_sample": ( |
| 43 | + module_factory(torch.nn.functional.grid_sample), |
| 44 | + (torch.rand(1, 1, 4, 4), torch.rand(1, 5, 5, 2)), |
| 45 | + ), |
| 46 | + "one_hot": ( |
| 47 | + module_factory(torch.nn.functional.one_hot), |
| 48 | + (torch.randint(0, 5, (2, 2, 5, 5)), 5), |
| 49 | + ), |
| 50 | + "softplus": (module_factory(torch.nn.functional.softplus), (example_input,)), |
| 51 | + "cosine_similarity": ( |
| 52 | + module_factory(torch.nn.functional.cosine_similarity), |
| 53 | + (example_input, example_input), |
| 54 | + ), |
| 55 | + "unfold": ( |
| 56 | + module_factory(torch.nn.functional.unfold), |
| 57 | + (torch.randn(1, 3, 10, 12), (4, 5)), |
| 58 | + ), |
| 59 | + "elu": (module_factory(torch.nn.functional.elu), (example_input,)), |
| 60 | + "fold": ( |
| 61 | + module_factory(torch.nn.functional.fold), |
| 62 | + (torch.randn(1, 12, 12), (4, 5), (2, 2)), |
| 63 | + ), |
| 64 | + "affine_grid": ( |
| 65 | + module_factory(torch.nn.functional.affine_grid), |
| 66 | + (torch.rand(1, 2, 3), (1, 2, 10, 10)), |
| 67 | + ), |
| 68 | + "max_pool1d": ( |
| 69 | + module_factory(torch.nn.functional.max_pool1d), |
| 70 | + (torch.randn(20, 16, 50), 4), |
| 71 | + ), |
| 72 | + "threshold": ( |
| 73 | + module_factory(torch.nn.functional.threshold), |
| 74 | + (example_input, 0.5, 0.1), |
| 75 | + ), |
| 76 | +} |
| 77 | + |
| 78 | +input_t = tuple[torch.Tensor] |
| 79 | + |
| 80 | + |
| 81 | +@parametrize( |
| 82 | + "test_data", module_tests, xfails={"max_pool1d": "ValueError: Invalid TOSA graph"} |
| 83 | +) |
| 84 | +def test_nn_functional_MI(test_data): |
| 85 | + module, inputs = test_data |
| 86 | + pipeline = TosaPipelineMI[input_t]( |
| 87 | + module, inputs, "", use_to_edge_transform_and_lower=True |
| 88 | + ) |
| 89 | + pipeline.pop_stage("check.aten") |
| 90 | + pipeline.pop_stage("check_count.exir") |
| 91 | + try: |
| 92 | + pipeline.run() |
| 93 | + except RuntimeError as e: |
| 94 | + if ( |
| 95 | + "Ran model with TosaReferenceModelDispatch but never ran TOSABackend delegate." |
| 96 | + not in str(e) |
| 97 | + ): |
| 98 | + raise e |
| 99 | + |
| 100 | + |
| 101 | +@parametrize("test_data", module_tests) |
| 102 | +def test_nn_functional_BI(test_data): |
| 103 | + module, inputs = test_data |
| 104 | + pipeline = TosaPipelineBI[input_t]( |
| 105 | + module, inputs, "", use_to_edge_transform_and_lower=True |
| 106 | + ) |
| 107 | + pipeline.pop_stage("check.aten") |
| 108 | + pipeline.pop_stage("check_count.exir") |
| 109 | + pipeline.pop_stage("check.quant_nodes") |
| 110 | + pipeline.pop_stage("check_not.quant_nodes") |
| 111 | + try: |
| 112 | + pipeline.run() |
| 113 | + except RuntimeError as e: |
| 114 | + if ( |
| 115 | + "Ran model with TosaReferenceModelDispatch but never ran TOSABackend delegate." |
| 116 | + not in str(e) |
| 117 | + ): |
| 118 | + raise e |
0 commit comments