* move evaluate method to runtime/reference
* move backend test from fused_op.in.cpp to depth_to_space.in.cpp
* cleanup test
* Drop unnecessary reshapes
* add some comment
* cleanup names
* add visitor test
* Add backend test for DepthToSpace
* Add serialization test
* add empyt lines to get more readable code
* cleanup headers
* fix used types
* remove unnecessary includes
* use RTTI macro
Signed-off-by: Li, Tingqian <tingqian.li@intel.com>
* add backend test
Signed-off-by: Li, Tingqian <tingqian.li@intel.com>
* add visitor API test
Signed-off-by: Li, Tingqian <tingqian.li@intel.com>
* add checks for input size and type in validate_and_infer_types()
Signed-off-by: Li, Tingqian <tingqian.li@intel.com>
* add test for incompatible input data types to type_prop
Signed-off-by: Li, Tingqian <tingqian.li@intel.com>
* disable fp16 tests for IE backend
Signed-off-by: Li, Tingqian <tingqian.li@intel.com>
* fix bugs:
add static linkage to mish_test
use T instead of double for calculation of expected answer
Signed-off-by: Li, Tingqian <tingqian.li@intel.com>
* PaddlePaddle frontend - Core Part
Basic functionality, only limited number of supported operations
Rest of operations will be submitted in separate PR
* Remove copy-paste for 'protobuf-generate'
* Remove copy-paste for 'protobuf-generate'
* Disable all installs for static protobuf
* Fixed error in protobuf generator script
* Disable compilation warnings for generated Protobuf code
* Cmake - move PDPD frontend to the bottom
Add install rules for PDPD and Frontend_manager
* Separate working directory for static protobuf
* Use system 'protoc' code generator in case of cross-compiling mode
* Pass SYSTEM_PROTOC to static protobuf subproject
Needed for cross compiling
* Enable back commented out PDPD unit tests
* Fix TODOs
* Fix some comments
* Update according to new gtest
* Removed NGRAPH_EXPORT_TARGETS_ENABLE for PDPD frontend
* Moved cmake/templates to <root>
* Removed ngraph versioning, reused IE one
* Merged converage
* Removed duplicatde ngraph cmake options
* Moved dependencies to <root>/cmake
* Removed installing of VERSION
* [NG Frontend] Introduce classes and macros for Frontend-specific exceptions
* [nGraph Frontend] Python bindings
Exposing Python API for nGraph FrontEndManager introduced in PR #5470
* Exposing 'Dimension' class to Python nGraph API
* Model optimizer code from pdpd_frontend
Removed 'use_legacy_frontend' option as not needed for PDPD integration
* Added XML/BIN prints for 'ngraph-FE' serialization path
* Update python bindings to latest code from PR #5995
* Add OV_FRONTEND_PATH to LD_LIBRARY_PATH by default for Model Optimizer
* Test with 'mock' frontend
* Added meta info to generated IR
Added more tests to cover currently supported scenarios
Clang config for MO mock frontend
* some flake8 and pylint fixes
* Try to 'import' ngraph-related packages on top of python files
This will help to specify type of function arguments, but can break unit tests if they're using functions directly without ngraph
* CI fixes
* Run tests from 'main_test.py' inside ngraph environment
* Fixed review comments
* Fixed comments
Added more tests for checking if inputs and outputs are same
* Renamed front_ng to moc_frontend
* Update package_BOM.txt
* [IE CLDNN] Build ICD loader from sources
* [IE CLDNN] Switched ocl submodules to latest tag instead of master
* [IE CLDNN] Added several cmake variables to enable find_package for OpenCL
* Update Swish OP description.
Signed-off-by: Luwei Zhou <luwei.zhou@intel.com>
* Use RTTI to declare/define NGraph Swish OP.
Add input element type check when constructing Swish OP.
Signed-off-by: Luwei Zhou <luwei.zhou@intel.com>
* Add Swish into activation serialization test list.
Signed-off-by: Luwei Zhou <luwei.zhou@intel.com>
* Add Swish into IE CPU plugin activation single layer test suit.
Signed-off-by: Luwei Zhou <luwei.zhou@intel.com>
* Add Swish NGraph backend and visitor API tests.
Signed-off-by: Luwei Zhou <luwei.zhou@intel.com>
* Add Swish unsupported parameter data type test cases.
Signed-off-by: Luwei Zhou <luwei.zhou@intel.com>
* Update the Swish OP visistor API to use typed test.
Signed-off-by: Luwei Zhou <luwei.zhou@intel.com>