openvino/tests/layer_tests
Luca Tam c83c06cf27
[PT FE] aten::dot operation (#22978)
### Details:
- added `aten::dot` operation for pytorch models

### Tickets:
 - Closes #22074

---------

Co-authored-by: Maxim Vafin <maxim.vafin@intel.com>
2024-03-08 09:55:47 +00:00
..
common [Layer Test] Remove legacy code from layer tests (#23067) 2024-02-26 13:53:11 +04:00
jax_tests [JAX][TF Hub][TF FE] Support XlaConvV2 operation and add JAX test (#19466) 2023-08-29 12:28:12 +04:00
mo_python_api_tests Support OpExtension in frontends (#22961) 2024-02-23 14:23:15 +04:00
onnx_tests Rename IE to OV (#22733) 2024-02-09 13:36:41 +00:00
ovc_python_api_tests [TF FE] Set single input tensor names in TF1 formats. (#22503) 2024-02-19 13:54:42 +00:00
py_frontend_tests Don't use complex dependencies in Python API tests (#23104) 2024-02-28 08:21:57 +00:00
pytorch_tests [PT FE] aten::dot operation (#22978) 2024-03-08 09:55:47 +00:00
tensorflow2_keras_tests [TF FE] Add layer test for tf.keras.layers.TextVectorization and for LookupTableFindV2 with string key (#23011) 2024-02-22 18:01:37 +01:00
tensorflow_lite_tests [CPU][ARM] Set `arm64-v8.2-a` as a default architecture (#21545) 2024-01-03 16:39:13 +04:00
tensorflow_tests [TF FE] Switch on layer test for RaggedTensorToTensor (#23335) 2024-03-08 08:09:39 +00:00
.gitignore Add layer tests (#5789) 2021-06-16 12:50:16 +03:00
CMakeLists.txt Updated copyright headers (#15124) 2023-01-16 11:02:17 +04:00
README.md Refactor of renaming ov libraries for layer tests with key --use_new_frontend (#12846) 2022-09-20 13:43:37 +04:00
conftest.py [TF FE][Layer tests] Run layer tests for TF FE by default and use_legacy_frontend for legacy FE (#22848) 2024-02-15 15:42:06 +00:00
pytest.ini [PT FE] torch.export support (#22397) 2024-01-30 11:50:18 +00:00
requirements.txt Don't use complex dependencies in Python API tests (#23104) 2024-02-28 08:21:57 +00: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 (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