Skip to content

Arm backend: Add arange.default dummy tests #10901

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 15, 2025
Merged
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
25 changes: 25 additions & 0 deletions backends/arm/test/ops/test_arange.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

from typing import Callable

import pytest

import torch
from executorch.backends.arm.test import common
from executorch.backends.arm.test.tester.test_pipeline import (
Expand Down Expand Up @@ -152,3 +154,26 @@ def test_linspace_tosa_BI(test_data: test_data_t):
)
pipeline.pop_stage("check.quant_nodes")
pipeline.run()


skip_str = "aten.arange.default is decomposed to aten.arange.start_step, so it will never exist in a lowered graph."


@pytest.mark.skip(reason=skip_str)
def test_arange_tosa_MI():
pass


@pytest.mark.skip(reason=skip_str)
def test_arange_tosa_BI():
pass


@pytest.mark.skip(reason=skip_str)
def test_arange_u55_BI():
pass


@pytest.mark.skip(reason=skip_str)
def test_arange_u85_BI():
pass
Loading