openvino/tests/layer_tests
Ruslan Nugmanov 5a1fc67131
Implements renaming of tf_fe lib (#12684)
* tf_fe lib renaming to switch to new fe

* Apply suggestions from code review

* 1. implements renaming for win os
2. --api_2 key is equal to True by default

* --ir_version key is equal to '11' by default

* resolves merge conflicts

* check if file to rename exists

Co-authored-by: Evgenya Stepyreva <eva.my.link@gmail.com>
2022-08-30 12:51:03 +03:00
..
common Implements renaming of tf_fe lib (#12684) 2022-08-30 12:51:03 +03:00
onnx_tests [ONNX] Add operator com.microsoft.Fusedgemm support into frontend/onnx (#11878) 2022-07-14 14:35:49 +02:00
tensorflow_tests Implements renaming of tf_fe lib (#12684) 2022-08-30 12:51:03 +03:00
.gitignore Add layer tests (#5789) 2021-06-16 12:50:16 +03:00
CMakeLists.txt Update year to 2022 in copyright notice (#9755) 2022-01-19 01:07:49 +03:00
README.md Implements renaming of tf_fe lib (#12684) 2022-08-30 12:51:03 +03:00
conftest.py Implements renaming of tf_fe lib (#12684) 2022-08-30 12:51:03 +03:00
pytest.ini Remove unsued map initialization (#11621) 2022-05-05 00:50:34 +02:00
requirements.txt [MO, POT] Top up upper bounds for TensorFlow and NumPy modules in all requirement files (#12191) 2022-08-03 16:18:41 +04:00

README.md

Layer tests

This folder layer tests framework code and test files.

Getting Started

Pre-requisites

  • OpenVINO should be configured as usual.

Setup

  • Install requirements:
    pip3 install -r requirements.txt
    
  • Set up environment variables for layer tests:
    export PYTHONPATH="path_to_openvino"/tests/layer_tests/:"path_to_openvino"/tools/mo:"path to python api"
    
    To parametrize tests by device and precision (optional)
    export TEST_DEVICE="CPU;GPU"
    export TEST_PRECISION="FP32;FP16"
    

Run tests

py.test