* Small fixes for openvino::pugixml creation for Dev packages
* Flexiable components installation
* Fixed compilation for x86
* Added extra checks for ENABLE_NCC_STYLE
* Fixed typo in RPM
* Limitations refactoring
* fix CI builds/tests
* changes after review
* Move GraphCompiler initialization to constructor
* resolve conflicts after rebase
* update after review
* resolve problem with double initialization for Limitations
* Optimize strides calculation using one loop
* Calculate strides on get_strides or set_shape
instead in ctor in TensorView
* Call once update strides on get
* Added dependencies via vcpkg
* Try to remove global imported targets
* Fix for conan
* Fixed RHEL case
* Fixed RHEL, U18 cases
* Returned OpenCV finding
* Update cmake/templates/OpenVINOConfig.cmake.in
Fixed IMPORTED_GLOBAL => GLOBAL in OpenVINOConfig.cmake.in template file
* Apply suggestions from code review
Properply used NAMES in find_package
* Fixed case with zlib
* Final fixes
* Fixes
* Removed CONFIG from find package ZLIB
* Fixed RHEL
* Reverted changes with gflags back
* Turn off LTO after thirdparty dependencies are built
* benchmark_app: except ALLOW_AUTO_BATCHING
Running benchmark_app.py with -b 1 -d CPU fails with
`Unsupported property ALLOW_AUTO_BATCHING by CPU plugin`.
C++ benchmark_app sets ALLOW_AUTO_BATCHING in
ov::Core::compile_model() call, which doesn't trigger the error.
* Move `ALLOW_AUTO_BATCHING` to `device_config`
* Reimplemented models in ngraph, added fp32 tests
* Deleted olf FP32 tests
* Switched test implementation to SubgraphBaseTest
* extended existing subgraph tests by SW_FP32 mode instead of separate FP32 tests
* Extended additional subgraph tests by SW_FP32 mode, needed to modify base test classes
* remove scale factor from fp32 tests
* revert failing test
* Added ticket number for disabled tests
* Review Proposal op for shape infer aspects:
- Check partial shape and label propagation.
- Check template implementation of shape_infer.
- Add/update unit test for static and dynamic shapes.
- Drop using `ngraph` namespace from reviewed operator.
* Add missing includes
* Correct shape infer if batch defined in input only
* Improvement in tensor accessor:
- Make possible to create TA as constexpr
- Make empty TA as cons reference to existing object
* Remove not used tensor accessor
* Move Python tests to the end of CI Pipeline.
First of all we need to run tests on C++ in order to show C++ issues
* Move CPU func tests to the end of pipeline
* Changed Windows
* Deprecate legacy Core and Allocator
* Suppress blob warnings
* Suppress some warnings
* Suppress more warnings
* Suppress blob allocator
* Suppress more warnings
* Suppress more warnings
* Fixed compilation issues for Template plugin
* Fixed some warnings
* Fixed tests
* Add WA for benchmark_app
* Suppress #warning for developer package
* Rename define
* Disable warnings for compile_tool and benchmark_app
* Suppress Windows warnings
* Suppress more warnings for Windows
* Fixed compile_tool install
* Added message for VS
* Fixed snippets and throw only first error
* primitive serialization
* updated primitive::desc() to use impl_param instead of program_node
* added hash caching unit tests
* added missed calls to save and load of parent
* updated copyright year
* [GPU] Added shape agnostic optimized Permute_tile_8x8_4x4 kernel
Signed-off-by: Andrew Park <andrew.park@intel.com>
* Add permute_gpu_tile_8x8_4x4 shape agnostic TCs for ov_gpu_unit_tests
Signed-off-by: Andrew Park <andrew.park@intel.com>
* Fix calculation for required local mem size
Signed-off-by: Andrew Park <andrew.park@intel.com>
* Update not to condisder x and feature dimension for tile size on shape agnostic kernel case
Signed-off-by: Andrew Park <andrew.park@intel.com>
---------
Signed-off-by: Andrew Park <andrew.park@intel.com>
* [TF FE] Avoid usage of NGraph routines
Also, it introduces separate test fixture with graph comparison
for FEs
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
* Specify tickets for TODOs
---------
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
* Do not fold StridedSlice when:
- On begin or end there is ShapeOf with disabled constant folding.
- StridedSlice op has disabled constant folding.
* Copy rt info to folded StridedSlice
+ Invalid calculation in reducing un-aligned feature axis for b_fs_yx_fsv16
+ Some reduce modes are not invariant by using 0 value out of range
+ Added jit ZERO_INVARIANT_REDUCTION
+ Enable blocked unit-tests on dGPU by PR#15873
Signed-off-by: Min, Byungil <byungil.min@intel.com>