Mateusz Tabaka
5ffba43f62
Disable fc_int8_inputs_fused_fp32_sum ( #11709 )
...
Ticket: 85210
2022-05-25 06:54:22 +02:00
Chenhu Wang
fa7ca20425
NMS-9 op creation and ref implementation and CPU plugin ( #11132 )
...
* operation creation
* refrence implementation
* code style
* soft_nms_supported_by_nms9
* IE core and cpu plugin update
* apply review
* add transformation test
2022-05-25 06:27:12 +03:00
Karol Blaszczak
728a243d77
Docs-minor fix for documentation build error ( #11724 )
...
* Docs-minor fix for documentation build error
* fix one snippet comment and auto-device updates
2022-05-24 19:50:29 +02:00
Mateusz Tabaka
3a202c2775
Don't install networkx with version 2.8.1 ( #11718 )
...
With new networkx release (2.8.1) some of MO tests started to fail
with following error:
```
def __setstate__(self, state):
self._graph = G = state["_graph"]
self._adjdict = G._pred if hasattr(G, "pred") else G._adj
AttributeError: 'Graph' object has no attribute '_adj'
```
Seems like regression that was introduced in
f50fc70b8c
2022-05-24 14:07:36 +02:00
Tetiana Gubanova
22ee17fda6
[GPU] AdaptiveMaxPool and AdaptiveAvgPool gpu implementations ( #11556 )
...
* Add kernel for AdaptivePooling
* Add GPU primitive for AdaptivePooling
* Add single-layer tests for GPU
* Add adaptive pooling unit tests
2022-05-24 00:48:55 +09:00
Mateusz Tabaka
ff6ea62ce0
Fix local work size for conv kernel yxfb_yxio_b16 with fp16 ( #11679 )
...
convolution_gpu_yxfb_yxio_b16 for fp16 has hardcoded reqd_work_group_size
to (16, 1, 1). On devices where CL_DEVICE_MAX_WORK_GROUP_SIZE is 512
GetOptimalLocalWorkGroupSizes picks (16, 2, 1) for LWS.
That causes issues during clEnqueueNDRangeKernel since LWS doesn't match
with reqd_work_group_size in the kernel.
2022-05-23 15:59:37 +02:00
Mateusz Tabaka
fbc99ef1ad
Disable conv_int8_activation_eltwise_quantize_onednn/bsv32_fsv32 ( #11708 )
...
Tests fail because eltwise is not fused properly to convolution.
Ticket: 85205
2022-05-23 12:50:53 +02:00
Mateusz Tabaka
488315fe2e
Fix pooling_onednn_activation2 test in cldnn tests ( #11680 )
2022-05-23 10:26:42 +02:00
Mateusz Bencer
a859024d76
MO support of RDFT and IRDFT ( #11690 )
2022-05-21 13:14:23 +02:00
Szymon Irzabek
714601cf5b
[GNA] Change Constants' precision in MVN decomposition ( #11665 )
2022-05-20 13:21:32 +02:00
Adam Tumialis
14f82ea31c
Update CODEOWNERS
...
Maintainers for IE transformations changed to a new team.
2022-05-20 12:22:43 +02:00
Tetiana Gubanova
91ab69e0c7
[GPU] Implement ExperimentalDetectronGenerateProposalsSingleImage-6 ( #11616 )
...
* Add single layer tests for GPU
* Add GPU primitive for ExperimentalDetectronGenerateProposalsSingleImage
* Add kernel for ExperimentalDetectronGenerateProposalsSingleImage
* Add unit test
* rename abbreviation edgpsi to the full name experimental_detectron_generate_proposal_single_image
* Add f16 support to operation
* Add f16 support to the unit test
* Add notification about the second output in primitive
Co-authored-by: Oleksii Khovan <okhovan@lohika.com>
2022-05-20 17:02:29 +09:00
Chen Xu
8886d0fde7
[CPU] Fix shape mismatching in fusing per channel ( #11162 )
...
* Fix shape mismatching in fusing per channel
* channelAxis data type changes to int
2022-05-20 11:05:17 +08:00
yanlan song
35ba009cd6
Bell/cache refine ( #11414 )
...
* cache compliance
Signed-off-by: fishbell <bell.song@intel.com>
* clang format
Signed-off-by: fishbell <bell.song@intel.com>
* fix crash
Signed-off-by: fishbell <bell.song@intel.com>
* enable test cases
Signed-off-by: fishbell <bell.song@intel.com>
* enable more tests
Signed-off-by: fishbell <bell.song@intel.com>
* refine cases
Signed-off-by: fishbell <bell.song@intel.com>
* do not use try catch
Signed-off-by: fishbell <bell.song@intel.com>
* case refine
Signed-off-by: fishbell <bell.song@intel.com>
* fix unicode failure
Signed-off-by: fishbell <bell.song@intel.com>
* use model_path.empty instead of try catch
Signed-off-by: fishbell <bell.song@intel.com>
* add mock test
Signed-off-by: fishbell <bell.song@intel.com>
* add more mock test
Signed-off-by: fishbell <bell.song@intel.com>
* disable unicode test on windows
Signed-off-by: fishbell <bell.song@intel.com>
* add hetero caching/stateful mode support
Signed-off-by: fishbell <bell.song@intel.com>
* remove the disable label for CPU
Signed-off-by: fishbell <bell.song@intel.com>
* resolve the CI failure
Signed-off-by: fishbell <bell.song@intel.com>
remove redundant lines
Signed-off-by: fishbell <bell.song@intel.com>
Co-authored-by: Chen Peter <peter.chen@intel.com>
2022-05-20 10:17:40 +08:00
Katarzyna Mitrus
76dfeceb93
[Eye-9] Reference and CPU implementation for Eye-9 ( #11538 )
...
* Added shell for Eye-9
* Updated spec for Eye-9
* Added reference for Eye-9
* eye cpu
* Added op impl check for Eye-9
* Fix unallowed dynamic to static dim conversion in eye shape_infer
* Add template plugin tests for dynamic shapes
* Add template plugin tests for dynamic shapes batch input
* Enable batch shape input dynamic rank
* Uncomment 3D batch cpu Eye tests
* Update assertions and messages
* use ov::element type
* Remove redundant evaluate from eval map
* Style fix
* Add static_cast<T>(1) to cpu eye
* Add defaults to eye cpu class members
* Reuse out_ptr and checks
* Reutrn if onesPerBatchNum == 0
* Add Eye CPU Dynamic shape tests with 2D batch
* Additional test cases for CPU and reference
* Disable 3D batch eye cpu tests
* Fix CPU implementation for matrix with not equal cols and rows
* Update CPU test name
* Disable CPU Eye 3D batch static shapes tests
Co-authored-by: Alexandra Sidorova <alexandra.sidorova@intel.com>
Co-authored-by: Yury Gaydaychuk <yury.gaydaychuk@intel.com>
2022-05-19 16:37:00 +03:00
Bartek Szmelczynski
f83530138e
[ROIAlign-9] Extend nGraph Python API for operation "ROIAlign-9" ( #11572 )
...
* add opset8 ngraph ROIAlign op
* fix style
* fix style v2
* remove redundnat added files
* fix __init__.py imports
* fix style v3
* fix wrong imports
* fix flake error
* fix minor errors
* add blank line
* fix args name
* Update src/bindings/python/src/compatibility/ngraph/opset9/ops.py
Co-authored-by: Jan Iwaszkiewicz <jan.iwaszkiewicz@intel.com>
* update docsstring, move roi_align tests to test_create_op.py file
* Update src/bindings/python/tests/test_ngraph/test_create_op.py
Co-authored-by: Jan Iwaszkiewicz <jan.iwaszkiewicz@intel.com>
* Update src/bindings/python/tests_compatibility/test_ngraph/test_create_op.py
Co-authored-by: Jan Iwaszkiewicz <jan.iwaszkiewicz@intel.com>
* add alias
Co-authored-by: Jan Iwaszkiewicz <jan.iwaszkiewicz@intel.com>
2022-05-19 13:55:46 +02:00
Mateusz Bencer
4d0a572f13
Move RemoveConcatZeroDimInput and RemoveMultiSubGraphOpDanglingParams to CNNNetworkNGraphImpl ctor ( #11547 )
2022-05-19 10:50:22 +02:00
Yuan Xu
18260e0b4b
Revert "CVS-82186 port to master ( #11701 )" ( #11704 )
...
This reverts commit 31dab599c7
.
2022-05-18 13:43:22 +02:00
Tomasz Jankowski
a61902fc7c
Disable ONNX UT on Mac ( #11685 )
2022-05-17 16:15:26 +02:00
Tomasz Dołbniak
94ce06fc29
ONNX node names as friendly names ( #10532 )
2022-05-17 13:47:52 +02:00
Yuan Xu
31dab599c7
CVS-82186 port to master ( #11701 )
...
* Add Overview page
* Revert "Add Overview page"
* plugin api separate config (#11109 )
Co-authored-by: Nikolay Tyukaev <nikolay.tyukaev@intel.com>
2022-05-17 11:46:46 +00:00
hyunback kim
8691b88296
[GPU] Support weight tag for oneDNN v2.6 ( #10859 )
...
* Update oneDNN rls-v2.6
* Support weight tag for oneDNN v2.6
* Fix first conv selection issue in oneDNN
* oneDNN v2.6 required specific tags to run jit:ir primitives.
* any_tag can find optimized primitives in oneDNN.
* Enable aBcd2b src tag for oneDNN v2.6
* Add create_memory_desc from format string.
* Apply group depthwise separable conv uses jit:ir in oneDNN v2.6
* Use byxf format.
* Update only use acdb format in shallow group conv
* Fix refconv selection in shallow conv with post operations.
2022-05-17 16:55:55 +09:00
Taylor Yeonbok Lee
a82a0d3672
[GPU] Improve int8 FC performance ( #11612 )
...
* Enable reshape int8
* Fixed quantize fusing through reorder+reshape : Fixed the condition to check per_tensor_input_shift only when need_input_shift is true
* minor change
* Allow FP quant to be fused to FC/gemm
* Disable reshape tranform for onednn until onednn FC is optimized
2022-05-17 12:48:38 +09:00
Tomasz Dołbniak
ffea6b5aac
ONNX Resize - sizes/scales inputs handling ( #11692 )
2022-05-16 20:05:06 +03:00
Mateusz Bencer
3b32502fbf
Add IRDFT reference implementation ( #11642 )
2022-05-16 10:30:56 +03:00
mei, yang
9648080fbc
Meiyang/paddle generate proposals 2 ( #11285 )
...
* create new op v9::GenerateProposalsSingleImage and support paddle generate proposal v2
* support scale in GenerateProposals
* Add output roi_num in GenerateProposal; change anchor's shape to [H, W, A, 4]
* fix paddle generate proposals frontend issue
* rename MKLDNNGenerateProposalsSingleImage to GenerateProposalsSingleImage
* add GenerateProposals attribute 'roi_num_type'
* fuse type togenerate_proposals
* multibatch support
* fix review comments; paddle tests added
* use pad instead of concat
* fix generate proposals visitor test parameter
* add testcase for generate proposal scale and fix generate proposals reference issue
* rename to GenerateProposals
* add generate proposals ngraph reshape test; opset9 support and test;
* fix compiling issue
* add dependency 'paddledet' on paddle frontend test
* Update src/core/include/ngraph/op/generate_proposals.hpp
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
* Update src/core/include/openvino/op/generate_proposals.hpp
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
* Update src/core/reference/include/ngraph/runtime/reference/generate_proposal.hpp
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
* Update src/core/src/op/generate_proposals.cpp
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
* Update src/core/include/ngraph/op/generate_proposals.hpp
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
* Update src/core/src/op/generate_proposals.cpp
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
* Update src/core/src/op/generate_proposals.cpp
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
* Update src/core/src/op/generate_proposals.cpp
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
* Update src/core/include/openvino/op/generate_proposals.hpp
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
* Update src/core/include/openvino/op/generate_proposals.hpp
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
* fix compiling issue after newly added commit
* clang fix
* fix compiling issue
* add paddledet dependency
* fix compiling issue
* fix compiling issue
* clang fix
* skip ppdet.modeling.ops in paddle generate proposals test
* single layer update after rebase master
* set pycocotools to 2.0.4
* skip ppdet.modeling.ops.__init__
* add paddle test dependency
* fix template issue
* rename mkldnn to dnnl
* fix template issue
* fix windows compiling issue
* update testcase vector construction
* add shape check and test; add some annotation; apply review suggestion
* Revert "add paddle test dependency"
This reverts commit 959a2d770d3f6cb28d4609981c79cc49a25847fd.
* rm dependency of paddledet for paddle frontend test
* update opset9 number
* fix windows issue
Co-authored-by: Luo Cheng <cheng.luo@intel.com>
Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
2022-05-16 09:13:52 +08:00
Jade Cho
6ce6a7662e
[GPU] Support implicit crop in input transposition. ( #11496 )
...
* [GPU] Support implicit crop in input transposition.
+ Make the crop in front of quantize implicit by changing output format to bfyx.
+ Use implicit concat after quantize nodes.
* Add unit test for implicit crop and concat.
+ remove unnecessary code.
2022-05-13 18:02:13 +09:00
Min, Byungil
5da3162cd1
[GPU] Bugfix for invalid LoadType for planar input ( #11493 )
...
+ Modified jitter Load for planar input of fused eltwise
+ Bugfix in jitter if planar input has LT_ALIGNED_READ
Signed-off-by: Min, Byungil <byungil.min@intel.com>
2022-05-13 17:31:20 +09:00
Jan Iwaszkiewicz
d19b80a82d
[SoftSign-9][PYTHON] Python API for SoftSign ( #11677 )
2022-05-13 09:55:14 +02:00
Jade Cho
de1db99383
[GPU] Replace out scale attribute of onednn pooling with binary mul ( #11674 )
2022-05-13 13:34:12 +09:00
yanlan song
b1ecd3ea8f
only strip when device start with - ( #11651 )
...
Signed-off-by: fishbell <bell.song@intel.com>
2022-05-12 04:53:38 +00:00
Jan Iwaszkiewicz
62d17a070a
[SoftSign-9] Shell, reference impl and decomposition for SoftSign-9 ( #11546 )
2022-05-11 16:44:15 +02:00
Katarzyna Mitrus
7851020cd3
[ONNX] Enable ONNX ROIAlign-16 (by ov::v9::ROIAlign) ( #11633 )
2022-05-11 11:43:15 +02:00
Wilson Seok
5456631517
Cleanup eltwise skipped testcase in gpu single layer test ( #11525 )
...
* cleanup eltwise skipped test cases in gpu plugin
* update comment clearly
2022-05-11 18:07:36 +09:00
hyunback kim
a7368d2e35
[GPU] Apply hsigmoid decomposition in oneDNN post-opt ( #11603 )
...
* [GPU] Apply hsigmoid decomposition in oneDNN post-opt
Signed-off-by: hyunback <hyunback.kim@intel.com>
2022-05-11 10:07:02 +09:00
Anuj Mittal
01a08c0a97
installing-openvino-yocto: update for 2022.1 ( #11657 )
...
Update the branch to be used for 2022.1 and remove reference to
-staticdev package which isn't generated anymore.
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Co-authored-by: Yuan Xu <yuan1.xu@intel.com>
2022-05-10 18:00:42 +02:00
Kevin Putnam
bdf1d92660
1. Makes transition guide link absolute so it will work for API docs using the same theme ( #11610 )
...
2. Adds # to links that are broken in openvino_docs_get_started_get_started_demos.htm
Signed-off-by: intelkevinputnam <intelkevinputnam@github.com>
Co-authored-by: intelkevinputnam <intelkevinputnam@github.com>
Co-authored-by: Yuan Xu <yuan1.xu@intel.com>
2022-05-10 17:59:48 +02:00
Sebastian Golebiewski
4924e33255
Proofreading the Transition Guide ( #11543 )
...
* Update common_inference_pipeline.md
Minor stylistic and grammar corrections.
* Proofreading
Minor stylistic and grammar corrections.
* Update common_inference_pipeline.md
* Update common_inference_pipeline.md
* Proofreading
Minor corrections
* Update preprocessing.md
* Update intro.md
* Update deployment_migration.md
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/deployment_migration.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/deployment_migration.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/deployment_migration.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/deployment_migration.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Sebastian Golebiewski <sebastianx.golebiewski@intel.com>
* Update intro.md
* Update docs/OV_Runtime_UG/migration_ov_2_0/common_inference_pipeline.md
Co-authored-by: Karol Blaszczak <karol.blaszczak@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/deployment_migration.md
Co-authored-by: Karol Blaszczak <karol.blaszczak@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/deployment_migration.md
Co-authored-by: Karol Blaszczak <karol.blaszczak@intel.com>
* Update deployment_migration.md
* Update intro.md
* Update common_inference_pipeline.md
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Karol Blaszczak <karol.blaszczak@intel.com>
* Update docs/OV_Runtime_UG/migration_ov_2_0/intro.md
Co-authored-by: Karol Blaszczak <karol.blaszczak@intel.com>
* Update intro.md
* Update deployment_migration.md
* Update docs/OV_Runtime_UG/migration_ov_2_0/deployment_migration.md
Co-authored-by: msmykx <101244365+msmykx-intel@users.noreply.github.com>
Co-authored-by: Maciej Smyk <maciejx.smyk@intel.com>
Co-authored-by: Karol Blaszczak <karol.blaszczak@intel.com>
2022-05-10 17:59:12 +02:00
Paul Youngsoo Ahn
35b8972da3
[GPU] fix coverity control flow issue ( #11585 ) ( #11585 )
...
- Coverity CID: 1488473
- Coverity CID: 1486904
2022-05-10 09:15:03 +09:00
Bo Liu
eddd31f58f
Liubo/roi align 9 ov core cpu plugin ( #11188 )
...
* roi_align_9: ov_core, transformations, template_plugin
* roi_align_9: CPU Plugin
* keep only constructor with enums which is aligned with spec
* remove evaluate function for ROIAlign_9
* Add op check test for operation ROIAlign-9
* Apply suggestions from code review
* fix version name from 'v0' to 'v3' in transform part
* use common shape_infer function for v3 and v9
* remove'tf_' prefix for ROIAlign::AlignedMode to avoid misleading for models from different platforms
2022-05-10 08:14:37 +08:00
Karol Blaszczak
ad61593aa5
Update Convert_Model_From_TensorFlow.md ( #11425 ) ( #11591 )
...
* Update Convert_Model_From_TensorFlow.md (#11425 )
* Apply suggestions by Yuan
The changes are made in the port PR, so will be published with the 22.2 version.
Co-authored-by: Evan <evan.juras@gmail.com>
Co-authored-by: Yuan Xu <yuan1.xu@intel.com>
2022-05-09 16:49:15 +02:00
Karol Blaszczak
ab7b9afc14
Docs: Add links to specific examples - port ( #11618 ) ( #11653 )
...
* Docs: Add links to specific examples (#11618 )
* Update docs/OV_Runtime_UG/integrate_with_your_application.md
* Add links to specific examples
This edit adds links to more example applications, making it easier for users to discover how to build an OpenVINO application around their specific model.
* Add links to MO installation and ONNX examples (#11617 )
These edits help make it easier for a new user to find more information on how to convert ONNX models.
* Apply suggestions by Yuan
The changes are made in the port PR, so will be published with the 22.2 version.
Co-authored-by: Evan <evan.juras@gmail.com>
Co-authored-by: Yuan Xu <yuan1.xu@intel.com>
2022-05-09 16:48:39 +02:00
Tomasz Dołbniak
53e62d2ac6
ONNX OperatorsBridge - non-static version ( #11578 )
2022-05-09 12:58:51 +00:00
Kelvin Choi
860a074fa9
[GPU] Add tuning cache v2 for yolo_v3 and yolo_v3_tiny ( #11589 )
2022-05-09 17:10:11 +09:00
Mateusz Bencer
99c04c0d6a
additional validation of places ( #11480 )
2022-05-09 07:24:07 +00:00
yanlan song
35ad252003
Bell/rule out device ( #11516 )
...
* Fix batchability check of MAX_BATCH_SIZE
* Applied review comment
* new implementation
Signed-off-by: fishbell <bell.song@intel.com>
* enable device removing
Signed-off-by: fishbell <bell.song@intel.com>
* enable tests
Signed-off-by: fishbell <bell.song@intel.com>
* Update plugin.hpp
cpplint error
Co-authored-by: Taylor Yeonbok Lee <taylor.lee@intel.com>
2022-05-07 17:41:59 +08:00
Mateusz Bencer
c404e7f76d
Handle onnx shape inference exceptions ( #11451 )
2022-05-07 01:04:07 +03:00
Mateusz Bencer
d60deae083
If shape inference - scalar and 1D union handle ( #11499 )
2022-05-07 00:55:36 +03:00
Tomasz Jankowski
e0e916b557
[ONNX] Extract onnx frontend tests from ov core unit tests ( #11535 )
2022-05-06 11:21:55 +02:00
Jan Iwaszkiewicz
6eb9c11d7e
[PYTHON] Infer calls improvement ( #11498 )
2022-05-06 08:58:00 +02:00