* Conjugate * Moved common logic into make_conj helper. * Update src/frontends/tensorflow_common/src/op/conj_transpose.cpp * Moved helper to conj_transpose * Applied helper to both conj and conj_transpose * Deleted conj.cpp * Update src/frontends/tensorflow_common/src/op/conj_transpose.cpp Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com> * Update src/frontends/tensorflow_common/src/op/conj_transpose.cpp Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com> * Removed additional Shape:: scope resolution from get_conj helper * Added Conj and ConjugateTranspose to supported ops * Update src/frontends/tensorflow/src/op_table.cpp Change "Conjugate" to "Conj" Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com> * Apply suggestions from code review * Removed perms call and moved test data directly to parametrize macro * Apply suggestions from code review * Apply suggestions from code review * Changed input types from float32 to complex64 * Changed input type back to np.float32 and removed real tensor test * Update src/frontends/tensorflow_common/src/op/conj_transpose.cpp --------- Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com> Co-authored-by: Michal Lukaszewski <michal.lukaszewski@intel.com> |
||
|---|---|---|
| .. | ||
| common | ||
| jax_tests | ||
| mo_python_api_tests | ||
| onnx_tests | ||
| ovc_python_api_tests | ||
| py_frontend_tests | ||
| pytorch_tests | ||
| tensorflow2_keras_tests | ||
| tensorflow_lite_tests | ||
| tensorflow_tests | ||
| .gitignore | ||
| CMakeLists.txt | ||
| README.md | ||
| conftest.py | ||
| pytest.ini | ||
| requirements.txt | ||
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 (if you use wheel package path to python api could be removed):
export PYTHONPATH="path_to_openvino"/tests/layer_tests/:"path_to_openvino"/tools/mo:"path to python api" - If there is need to use specific libs it is possible to specify path to them using OV_LIBRARY_PATH env variable
export OV_LIBRARY_PATH="path_to_libs" - To parametrize tests by device and precision (optional)
export TEST_DEVICE="CPU;GPU" export TEST_PRECISION="FP32;FP16"
Run tests
py.test