* Drop legacy stuff
* Drop HostTensor
* Remove unused element types support
* Revert "Remove unused element types support"
This reverts commit 2ca8280c56.
* Improve style
* add to DisableShapeOfConstantFolding flag; set it in ts_gather; add unit test
* fix ts_general; use check_shape flag in EnableShapeOfConstantFolding
* set EnableShapeOfConstantFolding constructor explicit
---------
Co-authored-by: Ivan Tikhonov <ivan.tikhonov@intel.com>
It's possible now to have in main.py:
parser = parse_args()
import argparse, openvino
core = openvino.Core()
class print_help(argparse.Action):
def __call__(self, parser, namespace, values, option_string):
parser.print_help()
print("\nAvailable target devices: ", (" ".join(core.available_devices)))
sys.exit()
parser.add_argument('-h', '--help', action=print_help, nargs='?', default=argparse.SUPPRESS, help='Show this help message and exit.')
args = parser.parse_args()
The details are in https://github.com/openvinotoolkit/openvino/pull/20098
* Workaround for some non-repo components in Smart CI
* Add possibility to add all components as dependent
* Remove extra check
* Add test case for "all" key
* [GPU] Fix accuracy issue for blocked format batching on iGPU
+ Bugfix GET_INDEX for batching of b_fs_zyx_fsv16 of target model
+ Updated fetch_data.cl
+ Minor fix of error message
Signed-off-by: Min, Byungil <byungil.min@intel.com>
* [TFLite] Fix for crash in case of zero-length file
* Extended verification using FourCC check in the header
* Fix for Linux build
* Fixes for Linux
* Some platforms may miss SizePrefixed... method
* Fixed path preparation
* [GPU] Fix loop issues
* if loop does not run inner body, return zero dimension layout for dynamic dimension layout
* Support dynamic sliced input in inner body in creaet concate mapping
* Modify update_shape to call reset_shape_changed() when inputs of loop are not changed
* Add unit test
* Follow-up codereview
* Skip empty subgraph of If operator
* Added test
Applied review comment
* Fix for the following case:
1) body network output has only constant input
2) body network output itself is the constant
* introduced ov.save_model(...) to the ptq code examples
* replied to comments
* fixed rendering
---------
Co-authored-by: Karol Blaszczak <karol.blaszczak@intel.com>
* 1. Add Op_conformance_utils lib.
2.rename targets.
3. Remove behavior folder from api conformance
4. Remove ov1.0 from opImplCheck
5. move tests and insts to one file
6. small refactoring for op conformance test names
* align namespaces, remove test_utils from subgraphs_dumper
* update target names
* Remove extra
* Fix the tests without shapes in meta
* fix failed test names
* Add attribute reader
* Fix buils
* Check the registered lib
* try
* add comparator
* Revert "try"
This reverts commit 27eaa4ea0f.
* try to fix win build
* types
* tr
* remove pragma once
* Migrate Convert operator to new API
* Unify Convert reference for non-LP types
* Correct evaluate when output tensor not allocated
* Correct input type name
* Restore static_cast for bool as char