Maxim Shevtsov
8a85bfa312
fixed excessive outputs copying (in case when the fallback happened) and updated the test for that ( #10110 )
...
* fixed excessive outputs copying (in case when the fallback happened) and updated the test for that
* enum eExecutionFlavor to cover initial state
2022-02-04 16:58:37 +03:00
Aleksandr Korolev
9743784f91
[VPU] update config header ( #9857 )
...
* [VPU] update config header
* Review fixes
* Performance hint config update
* Removal deprecated vpu config stuff
* Review changes
* Rename myriad properties from camelCase to snake_case
* Review changes
* Review fixes
* Removal intel_myriad::common namespace
* OV throughput stream option
* Test fix
* Reverted disable_convert & disable_reorder
* Bugfixes
* Change default value for PerformanceHintNumRequestsOption
2022-02-04 16:32:00 +03:00
Mateusz Tabaka
72216a9b95
[ONNX] Replace subgraph's inputs from parent with Parameter before node is created ( #10113 )
...
This patch fixes case when If operator has subgraph with just Identity op,
which input comes from parent graph. Since Identity is eliminated,
its input is incorrectly pulled to this subgraph's body.
For example:
this ONNX subgraph:
```
+-----------+
|AveragePool|
+-+---+-----+
| |
+----+ v
| .....
| |
| v
+-------|--------------------------+
| | If |
| then|branch else branch |
+-------|--------+-----------------+
| | | |
| v | |
| +-----------+ | |
| | Identity | | ......... |
| +-----------+ | |
| | |
| | |
+----------------+-----------------+
```
was converted to following (incorrect) nGraph representation:
```
+-------------+
| AveragePool |
+--+---+------+
| |
+----+ v
| .....
| |
| v
+-------|---------------------------+
| | If |
| then|branch else branch |
+-------|---------+-----------------+
| v | |
| +-----------+ | |
| | Parameter | | |
| +-----------+ | |
| | | |
| v | |
| +-------------+ | |
| | AveragePool | | ......... |
| +-------------+ | |
| | | |
| v | |
| +--------+ | |
| | Result | | |
| +--------+ | |
| | |
+-----------------+-----------------+
```
With this change, subgraph's inputs from parent scope are replaced with
Parameter before nGraph node is created. In that case Identity's input
is a Parameter (and not AveragePool) and therefore 'then branch' looks like:
```
+-----------+
| Parameter |
+-----------+
|
v
+-----------+
| Result |
+-----------+
```
Ticket: 73895.
2022-02-04 12:23:27 +01:00
Ivan Novoselov
b7c62fcfbc
[CPU] Improve weights sharing sync on multiple outputs ( #10060 )
2022-02-04 12:26:57 +03:00
Tomasz Dołbniak
797b2221be
ONNX pooling - extended auto_pad attribute support ( #10092 )
2022-02-04 10:23:31 +01:00
Alexey Lebedev
7478915ef3
[PYTHON API] Fix InferQueue.is_ready() call ( #10096 )
...
* Fix is_ready and add tests
* remove wrong comment
* refactor test
* Fix code style
2022-02-04 11:57:56 +03:00
Indira Salyahova
da02951d67
[POT] Fix get layout from model ( #10018 )
...
* fix: layout pot
* layout
* fix: layout
* pylint
* add logger
* Update image_loader.py
* pylint
* repeat layout in data free
* resolve conflicts
* sample
* resolve comments
2022-02-04 11:46:54 +03:00
Victor Kuznetsov
ed6bb8ab2d
Update models folder for TimeTests ( #10107 )
...
* add performance hint to time infer
* upd time models
2022-02-04 11:33:15 +03:00
Ilya Lavrenov
70ca4b6e40
Fix template plugin tests ( #10124 )
...
* Fix template plugin tests
* Fix template plugin tests
2022-02-04 11:25:46 +03:00
Ilya Churaev
7b5a4e8c5e
Remove WA from ImportNetwork ( #10111 )
2022-02-04 07:16:57 +03:00
Taylor Yeonbok Lee
54678f47cf
[GPU] Adjust preferred format of resample operation ( #9919 )
...
* Adjust preferred format of resample operation
* Applied review comment
* Not to fix resample layout when there is permute user unless the permute order is rotating
2022-02-04 09:57:57 +09:00
Vladimir Dudnik
f9b88c385c
upd OMZ submodule. first part public models with layout as MO param ( #10108 )
2022-02-04 02:57:06 +03:00
Edward Shogulin
e8b88b9021
[LPT] foldFakeQuantize extending to support empty shapes ( #10116 )
2022-02-03 23:01:27 +03:00
Roman Kazantsev
64aabc74d1
Check the selected frontend to correspond use_new/legacy_frontend options ( #10084 )
...
* Check the selected frontend to correspond use_new/legacy_frontend options
Signed-off-by: Roman Kazantsev <roman.kazantsev@intel.com>
* Fix a default case when no frontend is found
Signed-off-by: Roman Kazantsev <roman.kazantsev@intel.com>
2022-02-03 20:34:07 +03:00
Ilya Lavrenov
f2f281e60b
Renamed ov_runtime => openvino, ov_ => openvino_ prefix ( #10069 )
...
* Renamed ov_runtime => openvino, ov_ => openvino_ prefix
* Coverage fix
* More fixes
* Fixed MO tests with custom FE
2022-02-03 20:03:41 +03:00
Anastasia Popova
86faa25724
Fix of output tensor names for mask-rcnn* models ( #10042 )
...
* Added op names to tensor names for MaskRCNN replacement transformation. Fixed output layout for MaskRCNN.
* Applied commentes left from PR with tensor names fix.
* Added tests for remove_tensor_names().
* Added checks in emitter.
* Removed debug output.
* Small fix.
* Small fix.
2022-02-03 19:44:47 +03:00
Evgeny Kotov
d30365f3d5
fix ( #9868 )
2022-02-03 19:14:57 +03:00
Anton Pankratov
8993c4c18a
Deprecated ov::Any implicit cast to any types ( #9409 )
...
* Depricated Any implicit cast
* Fixed test
* fixed gna build
* Fixed warnings in benchmark_app
* Fixed test build
* ncc exception for PrintTo
* Error mesage in test
* Error mesage in test
* fixed build
2022-02-03 19:10:52 +03:00
Krzysztof Bruniecki
6677079821
Set proper precision for added output ( #9496 )
2022-02-03 18:34:55 +03:00
Anton Pankratov
5c9b6915dc
Added undefined perfomnance hint value ( #10082 )
...
* Added undefined perfomnance hint value
* Added tests
* Fixed tests
* fixed dormat
2022-02-03 18:03:45 +03:00
Ilya Lavrenov
168bfe58c4
Fix NCC ( #10105 )
2022-02-03 16:51:26 +03:00
Ilya Lavrenov
3c35cf73c2
Build only static libraries on Linux Azure ( #10062 )
2022-02-03 16:26:21 +03:00
Anastasia Popova
ca45bf430a
Fixed tensor names set in InputCut and AutomlEfficientDet transformation. ( #9998 )
...
* Fixed tensor names setting in InputCut, fixed tensor names losing in AutomlEfficientDet.
* Changed op name adding to tensor names in InputCut for output port case only.
2022-02-03 15:55:16 +03:00
Artyom Anokhov
f57be8fdd8
configs: Updated path to licensing ( #10102 )
2022-02-03 15:24:40 +03:00
Anton Dudchenko
711d6de33b
[VPU] Fix precisions for execGraph ( #9767 )
...
ExecGraph didn't contain the parameter node and precisions
65013
2022-02-03 13:20:59 +03:00
Sergey Shlyapnikov
ccf4f4e420
[GPU] Update config api 2.0 ( #9649 )
2022-02-03 13:04:36 +03:00
Nikolay Shchegolev
b34cb55081
[CPU] Gather JIT implementation + Gather8 support. ( #10083 )
2022-02-03 12:32:23 +03:00
Ilya Churaev
0b75589e27
Fix cc build ( #10073 )
...
* Try to fix cc build
* Fixed build
2022-02-03 11:43:51 +03:00
Wilson Seok
3d9da2901e
Template slt bug fix/mish partial dynamic ( #9976 )
...
* Remove fp16 of Convert layer test from skip_tests.config.cpp as it works now
* update repo
* fix demension dynamic support bug in mish op reference test
2022-02-03 11:32:39 +03:00
Wilson Seok
8d27103f06
Add slt in template plugin/rnn sequence ( #9526 )
...
* Remove fp16 of Convert layer test from skip_tests.config.cpp as it works now
* update repo
* add initial op reference test of rnn_sequence
* add op reference test of GRUSequence
* replace input and refOut data to hard coded value
* update copyright year and namespace of Tensor
* rename S_t to sequence_lengths
2022-02-03 11:32:08 +03:00
Jan Iwaszkiewicz
db334efbbd
Fix vector casting for Constants with float16 type ( #10088 )
2022-02-03 09:15:28 +01:00
Vladislav Golubev
38ed0de9cf
Test enabled ( #9341 )
2022-02-03 10:58:03 +03:00
Liubov Talamanova
b4206fe0a1
Supported Simplified mode without provided config ( #10049 )
...
* Support Simplified mode without provided config
* Change data-source default location
2022-02-03 10:56:25 +03:00
Eugeny Volosenkov
e7d8284e4d
fix pot ( #9980 )
2022-02-03 10:47:31 +03:00
Maxim Gordeev
cf69c97765
Added new correct gna frequency result for Alder Lake ( #10047 )
...
* Added new correct gna frequency result for Alder Lake
* Update samples/cpp/speech_sample/utils.hpp
Co-authored-by: Krzysztof Bruniecki <krzysztof.bruniecki@intel.com>
Co-authored-by: Krzysztof Bruniecki <krzysztof.bruniecki@intel.com>
2022-02-03 10:38:25 +03:00
Ilya Churaev
03c38ca3fd
Changed code which check newAPI flag from Core ( #10080 )
...
* Changed code which check newAPI flag from Core
* Fixed typo
2022-02-03 10:36:23 +03:00
Fedor Zharinov
9219242dbd
Benchmark_app: JSON writer for statistics ( #9887 )
...
* Refactored statistics output with JSON support
* Detailed/average reports are added
* stylefix
* Update samples/cpp/benchmark_app/statistics_report.hpp
Co-authored-by: Ivan Vikhrev <ivan.vikhrev@intel.com>
* Linux Fixes
* stylefixes
* data_shape field format is changed
* stylefix
Co-authored-by: Ivan Vikhrev <ivan.vikhrev@intel.com>
2022-02-03 01:47:46 +03:00
Alina Kladieva
552454a3f0
Revert "[CPU] Gather jit implementation. ( #6601 )" ( #10077 )
...
This reverts commit fbe8aa94a4
.
2022-02-02 20:12:24 +03:00
Ilya Churaev
5406839e3f
Removed layouts config ( #10067 )
2022-02-02 15:56:26 +03:00
Nikolay Shchegolev
fbe8aa94a4
[CPU] Gather jit implementation. ( #6601 )
2022-02-02 15:02:49 +03:00
Nikolay Tyukaev
7a88daa8f7
enable doc html artifact ( #10065 )
2022-02-02 14:43:20 +03:00
Tomasz Dołbniak
8a05ef2514
Softmax tests fixed ( #10051 )
2022-02-02 12:28:39 +01:00
Tomasz Dołbniak
0700ba781b
ONNX ConvInteger - handling of scalar zero points ( #10057 )
2022-02-02 12:16:08 +01:00
dependabot[bot]
53af687a0c
Bump jinja2 ( #9966 )
...
Bumps [jinja2](https://github.com/pallets/jinja ) from 2.11.2 to 2.11.3.
- [Release notes](https://github.com/pallets/jinja/releases )
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/jinja/compare/2.11.2...2.11.3 )
---
updated-dependencies:
- dependency-name: jinja2
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-02 14:09:45 +03:00
Nikita Malinin
04f5b233f2
[POT] Introduce saturation_fix option ( #9940 )
...
* Introduce statiration_fix option
* Pylint fix
* Update namings and pipelilne
* Change node_input target
2022-02-02 13:46:20 +03:00
Andrey Somsikov
9dd4476c58
Reduce noise from security tests ( #9774 )
...
* Mute noicy undefined behavior checks
* Fix GCC build error with unsupported option
* Fix missprint
2022-02-02 12:48:21 +03:00
Andrey Somsikov
176bc2d83d
Set -DENABLE_FASTER_BUILD=OFF for coverity ( #10044 )
2022-02-02 12:47:32 +03:00
Victor Kuznetsov
0dd8d895a0
[Time tests] Add API 2.0 support ( #9878 )
...
* add performance hint to time infer
* init commit - add api 2 support
* change imInfo filling
* change copyright dates
* check hw positions to default
* add debug info
* fix mistake
* add check layout funcs for api2 time infer
* reformat code (2 -> 4)
* upd with reshape api2
* upd with master
* --
* fix fillTensors - set as template
* fix common_utils.cpp after merge master
2022-02-02 12:33:02 +03:00
Anastasia Kuporosova
70f65bdb74
[Python API] Rename configuration API + update tests/tools ( #9927 )
...
* [Python API] Rename configuration API + update tests/tools
* keep old api for compatibility
* add deprecation warnings
* apply comments to query sample
* remove convert to pyobject
* use Any instead of string
* update tests
* update set_property
* fix sample
* update test + try-except for pot
* add docstrings
* fix codestyle for pot
2022-02-02 11:28:41 +03:00
Anton Grishin
336fc37b94
Define static variable ( #10053 )
2022-02-02 11:26:26 +03:00