* 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>
* enable PaddlePaddle elementwise broadcast
* fix CI fail issue
* Apply suggestions from code review
* fix CI fail issue
* only B to A broadcast is supported for PDPD
* fix GPU plugin testcase fail issue
* keep PDPD broadcast_merge cpu plugin implement align with ov core
* add type prop test case for pdpd broadcast dst shape smaller than src shape
Currently GRUCellFusion treats bias as if it's always in zr order,
which sometimes is not the case. So whenever GRUCellFusion detects rz order,
it should also split bias into r and z and concat the halves into zr.
Ticket: CVS-97025