* [TF FE] Post leftovers to support the MUSE model in SavedModel format
It contains tests imitating a case with Tokenizer extension and raised problems:
setting custom type for body graph Parameter, named ports for RaggedTensorToSparse
and Unique operations.
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
* Update src/frontends/tensorflow/tests/convert_tricky_models.cpp
---------
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
* py/benchmark_app: fix -hint
Don't warn about values which are explicitly set in -hint.
That aligns C++ and Python implementations.
Ticket 106544
* Remove extra throw
* Fix code style
* Add GatherV7 and gatherV8 for convert_gather_0d pattern
* Add updating output_shape using reorder/reshape for scalar indice instead of using ConvertGather0D pass
* Add WA for NMS-gather8 pattern
* Improve op support for detectron mask rcnn
* Initial commit
* Fix for reading processed list
* Format code
* Cleanup
* cleanup
* Cleanup
* cleanup test
* Add comment
* Add rt_info
* fix type
* More fixes for detectron
* Fix build
* Add tests for if
* Revert changes in index
* Add comment
* Fix test
* Fix get_axes_range
* Add tests and fix if type alignment
* Fix code style
---------
Co-authored-by: Mateusz <mateusz.mikolajczyk@intel.com>
* [PyOV] Fix issues with RTMap
* update year
* some clean-up and items fix
* tests and small fixes
* Update src/bindings/python/src/pyopenvino/utils/utils.cpp
* undo changes
* fix serialization on python side
* rt_info as rt_map
* undo several changes in tests
* fix mo test
* sadd docstrings
* add tests
* fix codestyle
* try to fix win
* fix master
* apply comments
At the conversion stage we can't resolve Assert node because the condition
is computed only during inference time.
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
* Update core_impl.cpp
Add first implementation of register_compile_time_plugins (needs to depend on the actual CMake configuration as a next step).
* Update core.cpp
Check for missing plugins.xml
* Update core_impl.cpp
Avoid exception for missing plugins.xml
* Update core_impl.hpp
Add register_compile_time_plugins function definition
* Plugin loading based on CMake configuration
* Remove debug output command
* Unify static/dynamic plugin loading
* Add CMake option for plugins.xml that defaults to off
* Move GENERATE_PLUGINS_XML option to features.cmake
* Add missing brace
* Remove unnecessary #ifdef check
* Prepare to resolve conflicts
* Fix compile error
* Activate generation of plugins.xml in OpenVINODeveloperPackageConfig.cmake
* Fix CMake installation
* Plugin loading logic implemented in ie_core.cpp as well
* Fix format
* Small fixes
* Fixed code style
* Skip if xml file wasn't found
* Added function to find compiled plugins
* Generalize plugins hpp
* Use new API
* Fixed old core
* Fixed static build
---------
Co-authored-by: CSBVision <bjoern.boeken@csb.com>
* [GPU] Use 4-dim directly for onednn in gemm
We were collapsing n-dim into 3d for onednn gemm, But it is not necessary, up to 4d.
Signed-off-by: hyunback <hyunback.kim@intel.com>