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
49 changes: 3 additions & 46 deletions backends/arm/test/ops/test_scalars.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,17 +231,6 @@ def test_add_scalar_tosa_INT(test_data):
pipeline.run()


# ADD ETHOS-U ------------------------------------------------------
@pytest.mark.skip(reason="This is tested in test_add_scalar_tosa_INT")
def test_add_scalar_u55_INT():
pass


@pytest.mark.skip(reason="This is tested in test_add_scalar_tosa_INT")
def test_add_scalar_u85_INT():
pass


# SUB FP ------------------------------------------------------


Expand Down Expand Up @@ -290,17 +279,6 @@ def test_sub_scalar_tosa_INT(test_data):
pipeline.run()


# SUB ETHOS-U ------------------------------------------------------
@pytest.mark.skip(reason="This is tested in test_sub_scalar_tosa_INT")
def test_sub_scalar_u55_INT():
pass


@pytest.mark.skip(reason="This is tested in test_sub_scalar_tosa_INT")
def test_sub_scalar_u85_INT():
pass


# MUL FP ------------------------------------------------------
@common.parametrize("test_data", tensor_scalar_tests, xfails=xfails)
def test_mul_tensor_tosa_FP_scalar(test_data):
Expand Down Expand Up @@ -347,17 +325,6 @@ def test_mul_scalar_tosa_INT(test_data):
pipeline.run()


# MUL ETHOS-U ------------------------------------------------------
@pytest.mark.skip(reason="This is tested in test_mul_scalar_tosa_INT")
def test_mul_scalar_u55_INT():
pass


@pytest.mark.skip(reason="This is tested in test_mul_scalar_tosa_INT")
def test_mul_scalar_u85_INT():
pass


# DIV FP ------------------------------------------------------
@common.parametrize("test_data", tensor_scalar_tests, xfails=xfails)
def test_div_tensor_tosa_FP_scalar(test_data):
Expand Down Expand Up @@ -412,20 +379,10 @@ def test_div_scalar_tosa_INT(test_data):
pipeline.run()


# DIV ETHOS-U ------------------------------------------------------
@pytest.mark.skip(reason="This is tested in test_div_scalar_tosa_INT")
def test_div_scalar_u55_INT():
pass


@pytest.mark.skip(reason="This is tested in test_div_scalar_tosa_INT")
def test_div_scalar_u85_INT():
pass


# SHIFT ETHOS-U ------------------------------------------------------
@pytest.mark.skip(
reason="integer operations (shift and sub) are not supported on FP profile"
@pytest.mark.xfail(
reason="integer operations (shift and sub) are not supported on FP profile",
strict=True,
)
Comment on lines +383 to 386
def test_bitwise_right_shift_tensor_tosa_FP_inplace():
pipeline = TosaPipelineFP[input_t1](
Expand Down
Loading