* Removed Intel MYRIAD plugin * Removed Intel MYIAD from CI files * Removed Intel MYRIAD from cmake folder * Removed MYRIAD, HDDL from samples * Removed MYRIAD, HDDL from scripts folder * Removed MYRIAD from bindings folder (C and Python API) * Removed MYRIAD tests * Removed MYRIAD from tests folder * Removed MYRIAD from tools folder * Removed HDDL (VAD), MYRIAD (NSC2) from documentation * Fixed build for AUTO unit tests * Fixed clang code style * Fixed comments and issues * removed MYRIAD from AUTO tests * Disabled MULTI tests in CI * Update docs/OV_Runtime_UG/auto_device_selection.md Co-authored-by: Yuan Xu <yuan1.xu@intel.com> * Update docs/get_started/get_started_demos.md Co-authored-by: Yuan Xu <yuan1.xu@intel.com> * Update docs/OV_Runtime_UG/deployment/local-distribution.md Co-authored-by: Yuan Xu <yuan1.xu@intel.com> Co-authored-by: Yuan Xu <yuan1.xu@intel.com>
18 lines
540 B
Python
18 lines
540 B
Python
# Copyright (C) 2018-2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import os
|
|
|
|
|
|
if os.environ.get('OUTPUT_DIR') is not None:
|
|
out_path = os.environ['OUTPUT_DIR']
|
|
else:
|
|
script_path = os.path.dirname(os.path.realpath(__file__))
|
|
out_path = os.path.join(script_path, 'out')
|
|
if not os.path.exists(out_path):
|
|
os.makedirs(out_path)
|
|
|
|
# supported_devices : CPU, GPU, GNA
|
|
test_device = os.environ.get('TEST_DEVICE', 'CPU;GPU').split(';')
|
|
test_precision = os.environ.get('TEST_PRECISION', 'FP32;FP16').split(';')
|