Skip to content
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