Skip to content

Commit

Permalink
[microNPU] Fix skip tests when Vela is not present (apache#14587)
Browse files Browse the repository at this point in the history
This was failing locally due to an indirect import in `infra.py`.
Also ensure both tests are run by using the standard
`tvm.testing.main()` function to run the tests.
  • Loading branch information
lhutton1 authored Apr 12, 2023
1 parent b4c1995 commit 48d9165
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@
# specific language governing permissions and limitations
# under the License.
import pytest

pytest.importorskip("ethosu.vela")

import numpy as np

import tvm
from tvm import relay
from tests.python.contrib.test_ethosu.infra import get_tflite_graph
from tvm.relay.op.contrib.ethosu import partition_for_ethosu
Expand All @@ -28,7 +32,6 @@ def test_operations_distribution_ethos():

tflite = pytest.importorskip("tflite")
tensorflow = pytest.importorskip("tensorflow")
pytest.importorskip("ethosu.vela")

import tensorflow as tf

Expand Down Expand Up @@ -100,7 +103,6 @@ def test_operations_distribution_generic():

tflite = pytest.importorskip("tflite")
tensorflow = pytest.importorskip("tensorflow")
pytest.importorskip("ethosu.vela")

import tensorflow as tf

Expand Down Expand Up @@ -170,4 +172,4 @@ def simple_net(x):


if __name__ == "__main__":
test_operations_distribution()
tvm.testing.main()

0 comments on commit 48d9165

Please sign in to comment.