115 lines
4.1 KiB
Python
115 lines
4.1 KiB
Python
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import os
|
|
import pytest
|
|
|
|
import tests_compatibility
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
def image_path():
|
|
path_to_repo = os.environ["DATA_PATH"]
|
|
path_to_img = os.path.join(path_to_repo, "validation_set", "224x224", "dog.bmp")
|
|
return path_to_img
|
|
|
|
|
|
def model_path(is_myriad=False):
|
|
path_to_repo = os.environ["MODELS_PATH"]
|
|
if not is_myriad:
|
|
test_xml = os.path.join(path_to_repo, "models", "test_model", "test_model_fp32.xml")
|
|
test_bin = os.path.join(path_to_repo, "models", "test_model", "test_model_fp32.bin")
|
|
else:
|
|
test_xml = os.path.join(path_to_repo, "models", "test_model", "test_model_fp16.xml")
|
|
test_bin = os.path.join(path_to_repo, "models", "test_model", "test_model_fp16.bin")
|
|
return (test_xml, test_bin)
|
|
|
|
|
|
def model_onnx_path():
|
|
path_to_repo = os.environ["MODELS_PATH"]
|
|
test_onnx = os.path.join(path_to_repo, "models", "test_model", "test_model.onnx")
|
|
return test_onnx
|
|
|
|
|
|
def plugins_path():
|
|
path_to_repo = os.environ["DATA_PATH"]
|
|
plugins_xml = os.path.join(path_to_repo, "ie_class", "plugins.xml")
|
|
plugins_win_xml = os.path.join(path_to_repo, "ie_class", "plugins_win.xml")
|
|
plugins_osx_xml = os.path.join(path_to_repo, "ie_class", "plugins_apple.xml")
|
|
return (plugins_xml, plugins_win_xml, plugins_osx_xml)
|
|
|
|
|
|
def _get_default_model_zoo_dir():
|
|
return Path(os.getenv("ONNX_HOME", Path.home() / ".onnx/model_zoo"))
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
parser.addoption(
|
|
"--backend",
|
|
default="CPU",
|
|
choices=["CPU", "GPU", "HDDL", "MYRIAD", "HETERO", "TEMPLATE"],
|
|
help="Select target device",
|
|
)
|
|
parser.addoption(
|
|
"--model_zoo_dir",
|
|
default=_get_default_model_zoo_dir(),
|
|
type=str,
|
|
help="location of the model zoo",
|
|
)
|
|
parser.addoption(
|
|
"--model_zoo_xfail",
|
|
action="store_true",
|
|
help="treat model zoo known issues as xfails instead of failures",
|
|
)
|
|
|
|
|
|
def pytest_configure(config):
|
|
backend_name = config.getvalue("backend")
|
|
tests_compatibility.BACKEND_NAME = backend_name
|
|
tests_compatibility.MODEL_ZOO_DIR = Path(config.getvalue("model_zoo_dir"))
|
|
tests_compatibility.MODEL_ZOO_XFAIL = config.getvalue("model_zoo_xfail")
|
|
|
|
# register additional markers
|
|
config.addinivalue_line("markers", "skip_on_cpu: Skip test on CPU")
|
|
config.addinivalue_line("markers", "skip_on_gpu: Skip test on GPU")
|
|
config.addinivalue_line("markers", "skip_on_hddl: Skip test on HDDL")
|
|
config.addinivalue_line("markers", "skip_on_myriad: Skip test on MYRIAD")
|
|
config.addinivalue_line("markers", "skip_on_hetero: Skip test on HETERO")
|
|
config.addinivalue_line("markers", "skip_on_template: Skip test on TEMPLATE")
|
|
config.addinivalue_line("markers", "onnx_coverage: Collect ONNX operator coverage")
|
|
|
|
|
|
def pytest_collection_modifyitems(config, items):
|
|
backend_name = config.getvalue("backend")
|
|
tests_compatibility.MODEL_ZOO_DIR = Path(config.getvalue("model_zoo_dir"))
|
|
tests_compatibility.MODEL_ZOO_XFAIL = config.getvalue("model_zoo_xfail")
|
|
|
|
keywords = {
|
|
"CPU": "skip_on_cpu",
|
|
"GPU": "skip_on_gpu",
|
|
"HDDL": "skip_on_hddl",
|
|
"MYRIAD": "skip_on_myriad",
|
|
"HETERO": "skip_on_hetero",
|
|
"TEMPLATE": "skip_on_template",
|
|
}
|
|
|
|
skip_markers = {
|
|
"CPU": pytest.mark.skip(reason="Skipping test on the CPU backend."),
|
|
"GPU": pytest.mark.skip(reason="Skipping test on the GPU backend."),
|
|
"HDDL": pytest.mark.skip(reason="Skipping test on the HDDL backend."),
|
|
"MYRIAD": pytest.mark.skip(reason="Skipping test on the MYRIAD backend."),
|
|
"HETERO": pytest.mark.skip(reason="Skipping test on the HETERO backend."),
|
|
"TEMPLATE": pytest.mark.skip(reason="Skipping test on the TEMPLATE backend."),
|
|
}
|
|
|
|
for item in items:
|
|
skip_this_backend = keywords[backend_name]
|
|
if skip_this_backend in item.keywords:
|
|
item.add_marker(skip_markers[backend_name])
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def device():
|
|
return os.environ.get("TEST_DEVICE") if os.environ.get("TEST_DEVICE") else "CPU"
|