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
11 changes: 9 additions & 2 deletions backends/arm/test/ops/test_add.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

from typing import Tuple

import pytest
import torch
from executorch.backends.arm.quantizer import arm_quantizer
from executorch.backends.arm.test import common, conftest
Expand Down Expand Up @@ -201,7 +202,10 @@ def test_add_tensor_vgf_FP(test_data: input_t1):
tosa_version="TOSA-1.0+FP",
run_on_vulkan_runtime=True,
)
pipeline.run()
try:
pipeline.run()
except FileNotFoundError as e:
pytest.skip(f"VKML executor_runner not found - not built - skip {e}")


@common.parametrize("test_data", filtered_test_data)
Expand All @@ -215,4 +219,7 @@ def test_add_tensor_vgf_INT(test_data: input_t1):
tosa_version="TOSA-1.0+INT",
run_on_vulkan_runtime=True,
)
pipeline.run()
try:
pipeline.run()
except FileNotFoundError as e:
pytest.skip(f"VKML executor_runner not found - not built - skip {e}")
Loading