Commit Graph

1909 Commits

Author SHA1 Message Date
Edward Shogulin
0f2c5aae03
[LPT] tests are marked as smoke (#3221) 2020-11-19 15:49:37 +03:00
Vladislav Golubev
3bdd09e107
[LPT] Transpose, MatMul: Klocwork fixes (#3191) 2020-11-19 15:15:59 +03:00
Bartek Szmelczynski
e32d2ec8ff
add 4 tests for operators based on model zoo (#3181)
* add 4 tests for operators based on model zoo

* fix wrong names of the models
2020-11-19 15:09:43 +03:00
Ilya Churaev
a264ff9eee
Removed delayed_validate_and_infer_types (#3220)
* Removed delayed_validate_and_infer_types

* Fixed code style
2020-11-19 15:08:58 +03:00
Dmitrii Ryzhkov
70c02d0fea
ngraph constant mem reuse (#2548)
* Memory re-use for nGraph Consstant

* Code style fixes

* Did remove setWeights from public API

* Fixes for tests

* Moving setWeightsPtr to CNNNetwork

* Removing setWeights function, set blob ptr directly to preallocated ngraph buffer

* Fix for code style

* Preallocated buffer refactored, rename to Shared, remove declaration from AlignedBuffer

* Fix for code style

* Remove setWeightsBlobPtr from mock classes.

* fixing bugs after merge

* Test fix

* Fix for cpu Functional tests

* Fix for Windows build

* Try to fix GNMT test failure.

* Releasing pointers what holds CNNNetwork

* Fix after merge

* mkl-dnn submodule update

* reverting back cloned network cleanup

* Fix for double allocation

* Code style...

* update mkl-dnn

* update mkl-dnn

* mkl-dnn bump

* update mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* update mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* mkl-dnn bump

* bump mkl-dnn

* update mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* mkl-dnn bump

* update mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* mkl-dnn bump

* update mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* update mkl-dnn

* bump mkl-dnn

* mkl-dnn bump

Co-authored-by: Tony Reina <g.anthony.reina@intel.com>
2020-11-19 14:03:12 +03:00
Dmitry Kurtaev
b77bedcb64
Remove Java bindings (#3216) 2020-11-19 13:59:20 +03:00
Irina Efode
b85cc60eb1
[IE TESTS] Move ExecGraph serialization tests from InferenceEngine functional tests to the shared library (#3170)
* [IE TESTS] Move ExecGraphSerialization tests to the shared lib

* Apply coments

* Apply comments. Part 2

* Update CMakeLists.txt
2020-11-19 13:38:04 +03:00
Egor Churaev
3c1e73e892
[IE CLDNN] Improve fsv16 i8 pooling kernel (#3005)
JIRA: 40392
2020-11-19 11:47:38 +03:00
Yuta Fukasawa
a40f54ddc0
Minor markdown fix: adding back-quotes (#3204) 2020-11-19 11:31:06 +03:00
Szymon Durawa
af80bd8bf8
Add auto_broadcast attribute to spec. (#2955) 2020-11-19 10:31:30 +03:00
iliya mironov
b4d93c027f
Update docs (#3189)
Co-authored-by: Your Name <you@example.com>
2020-11-19 10:29:42 +03:00
Jedrzej Hajduczenia
281c01725c
[IE CLDNN] Add padding directly to input tensor in conv unit tests (#3014) 2020-11-19 10:17:32 +03:00
Maxim Shevtsov
fd0e03286a
Refactor multi into separate files (#3209)
* splitting the MULTI into separate hpp/cpp files per class, to simplify further dev

* scrubbing redundant include files
2020-11-19 10:07:45 +03:00
Vladimir Gavrilov
3aed19a46a
XLNET models bugs (#1199)
* Started to write equality comparator for StridedSlice layers.

* Now considered only unique StridedSlice consumers of non-constant data nodes.

* Fixed test for the transformation ConvertGroupedStridedSlice.

* Deleted commented code.

* Small fixes.

* Moved functions unique_by and group_by_with_binary_predicate to mo/utils/utils.py.

* Deleted function collect_sequences.

* Added asserts into the constructor of StridedSlice.

* Written test for the case when 1) there are 4 StridedSlice operations; 2) 2 of StridedSlice have the same data; 3) 2 others StridedSlice have the same data; 4) all StridedSlice operations outputs are consumed by different operations.

* Added some comments.
2020-11-19 10:07:30 +03:00
Mateusz Tabaka
2ec0904d40
Remove obsoleted v0::Dot and v0::QuantizedDot (#3128)
* Remove obsoleted v0::Dot and v0::QuantizedDot

* fix ngraph unit tests
2020-11-19 09:06:19 +03:00
Dmitrii Denisov
3ca0b94a7f
Update install_openvino_dependencies.sh (#3197) 2020-11-19 01:30:08 +03:00
Tomasz Dołbniak
a1d858c502
Remove the assert that could terminate the process, throw an exception instead (#3205) 2020-11-18 22:27:51 +03:00
Mikhail Ryzhov
39ec38383a
Reduced usage of batch in python samples (#3178)
* Reduced usage of batch in python samples

And corrected input arguments
2020-11-18 20:43:59 +03:00
Jedrzej Hajduczenia
123b9ab66e
[IE CLDNN] Fix fsv4 input pad in mmad bfyx to fsv32 conv kernel (#3194) 2020-11-18 19:20:59 +03:00
Ilya Lavrenov
5cc7314f75
Ngraph static lib (#3193)
* Fix: ITT_INCLUDE_DIR was not correctly detected

* Added NGRAPH_STATIC_LIBRARY CMake flag to optionnaly compile ngraph and link it as a static library instead of a dynamic one
- Definition of NGRAPH_STATIC_LIBRARY macro in callee and caller code to avoid dllexport/dllimport decoration
- Adding missing definitions of the explicit instantiation of FactoryRegistry<>::get
- Removed message about a non existent variable: NGRAPH_IE_STATIC_LIB_ENABLE
- Removed install export directive for ngraph in case of static library

* * Code style fix

* Added NGRAPH_STATIC_LIBRARY CMake flag to optionnaly compile ngraph and link it as a static library instead of a dynamic one
- Definition of NGRAPH_STATIC_LIBRARY macro in callee and caller code to avoid dllexport/dllimport decoration
- Adding missing definitions of the explicit instantiation of FactoryRegistry<>::get
- Removed message about a non existent variable: NGRAPH_IE_STATIC_LIB_ENABLE
- Removed install export directive for ngraph in case of static library

* - Removed redundant symbol definition
- Indented properly some comments

* - Making sure onnx is always compiled as a static library no matter what is the value of BUILD_SHARED_LIBS

* - Making sure onnx is always compiled as a static library no matter what is the value of BUILD_SHARED_LIBS

* Fixed incorrect suppression of directive

* Using BUILD_SHARED_LIBS (defaulted to ON) instead of a custom CMake option NGRAPH_STATIC_LIBRARY

* Removed useless comma

* Forcing pugixml to be static event when BUILD_SHARED_LIBS=ON globally.

* Forcing gtest for ie tests to be compiled as a static library.

* Made protobuf and gtest from ngraph always static.
Factorized all the force static logic for ngraph's externals in ngraph's CMakeLists.txt instead of external_*.cmake

* gflags is always static

* Solving cross compilation from Debian 9

* using the same pattern for other ngraph externals

Co-authored-by: emmanuelattia-philips <66060489+emmanuelattia-philips@users.noreply.github.com>
Co-authored-by: Emmanuel Attia <emmanuel.attia@philips.com>
2020-11-18 18:09:41 +03:00
Daria Mityagina
257b420ed6
[IE][VPU]: Interpolate ONNX workaround (#3182) 2020-11-18 17:23:46 +03:00
Tomasz Jankowski
c36aaf8621
nGraph: Fix TopK output sorting by index (#3092) 2020-11-18 14:14:33 +01:00
Piotr Szmelczynski
f90e7b7443
Hard sigmoid ref impl (#3100)
* update HardSigmoid spec

* create HardSigmoid ref impl

* add HardSigmoid to int_executable

* create unit-tests for HardSigmoid

* create onnx_model_hard_sigmoid test

* create onnx prototxt model for hard sigmoid

* add backend/hard_sigmoid to CMakeLists

* Change hard sigmoid prototxt to use attributes

* Change hard_sigmoid onnx model test to have 1 input

* style apply

* Change alpha and beta parameters to be pass by value
2020-11-18 15:52:33 +03:00
Mateusz Bencer
aa622003a8
update tests status (#3186) 2020-11-18 13:32:59 +01:00
Alexander Zhogov
97228dc7f7
Update dependabot.yml 2020-11-18 13:07:34 +03:00
Ilya Lavrenov
5dfb291a56
Added EXCLUDE_FROM_ALL for static versions of plugins (#3174) 2020-11-18 12:24:30 +03:00
Ivan Tikhonov
9ec18eeb9b
Temporaly skip GRU Cell test (#3183) 2020-11-17 21:27:25 +03:00
Mateusz Bencer
393779b227
Fix accuracy problem for YoloV3 (incorrect StridedSlice nop elimination) (#3179) 2020-11-17 18:12:01 +01:00
Andrey Sokolov
2f608d8f7e
[IE][VPU]: Align buffer conditions with the device part (#3168) 2020-11-17 19:40:23 +03:00
Elizaveta Lobanova
ed6113854a
[GNA] Security fixes for 2021.2 (#3167) 2020-11-17 19:26:17 +03:00
Katarzyna Mitrus
6a1eb5a139
ONNX LSTM/GRU/RNN seqence_lens input tests with reverse and bidirectional mode (#3149) 2020-11-17 16:44:03 +01:00
Gleb Kazantaev
fc8df42e7e
Fix NMS5 dynamism issues (#3137)
* Fixed ConvertNMS5ToLegacy conversion pass to resolve dynamism as soon as possible; fixed output precision to avoid troubles during convert_precision pass

* Added NMS5ToLegacy conversion for cldnn plugin

* Fixed NMS3 copy method

* Updated NMS5ToLegacy pass to avoid convert precision issues

* Updated nGraph reader and Functional tests

* Removing odd CF call

* removed xfail for test that is expected to pass

* Fixed Convert operations friendly_name

* Removed NMS5ToLegacy from opset1_to_legacy conversion

* Update NMS5 layer tests

* Update NMS5 DSR tests
2020-11-17 18:34:05 +03:00
Edward Shogulin
c18a456d67
[LPT] implementation were moved from common dir (#3173) 2020-11-17 18:06:50 +03:00
Nikolay Shchegolev
9c6e2cbb65
[CPU] Normalize node. Broadcast weights from 1 to channels. (#3141) 2020-11-17 17:01:44 +03:00
Ilya Lavrenov
8890e94d29
Added SECURITY.md back (#3177) 2020-11-17 16:44:44 +03:00
Kate Generalova
4a09888ef4
[DOC] Update Docker install guide (#3055)
* [DOC] Update Docker install guide

* [DOC] Add proxy for Windows Docker install guide

* [DOC] move up prebuilt images section

* Update installing-openvino-linux.md

* Update installing-openvino-docker-linux.md

* Update installing-openvino-docker-linux.md

Formatting fixes

* Update installing-openvino-docker-linux.md

Fixed formatting issues

* Update installing-openvino-docker-windows.md

Minor fixes

* Update installing-openvino-docker-linux.md

Fixed formatting issues

* [DOC] update text with CPU image, remove proxy for win

* Update installing-openvino-docker-windows.md

Minor fixes

* Update installing-openvino-docker-windows.md

Minor fix

* Update installing-openvino-docker-windows.md

Minor fix

* Update installing-openvino-docker-windows.md

Co-authored-by: Andrey Zaytsev <andrey.zaytsev@intel.com>
2020-11-17 16:43:56 +03:00
Roman Vyunov (Intel)
5bc74aac75
[IE][VPU]: Refactoring of SpecialStageProcessor (#2885)
* SpecialStageProcessor refactoring
* Fix for Yolo-v3-pytorch and related test
2020-11-17 16:30:30 +03:00
iliya mironov
9cb3c2a6be
Fix graph clenup (#3159)
* Fix graph clenup

* Refactoring graph clean up function

* Change wa comment

Co-authored-by: Your Name <you@example.com>
2020-11-17 16:28:27 +03:00
Mikhail Ryzhov
74ff38fedb
Revert "Reduced usage of batch in python samples (#3104)" (#3171)
This reverts commit 23e653858b.
2020-11-17 14:57:40 +03:00
chxd
5de182a4ca
[IE CLDNN] program_impl::replace_all_usages causes invalid memory access. (#138) 2020-11-17 13:45:42 +03:00
Piotr Rozen
15f7ab5e6e
added ubuntu 20.04 support to speech recognition demo (#3145)
updated speech recognition demo resources URLs to AWS
2020-11-17 13:32:14 +03:00
Krzysztof Bruniecki
93e270169c
Print GNA Lib function name when error code obtained (#3129) 2020-11-17 13:16:15 +03:00
Ivan Tikhonov
ea52dd2642
TI and Sequences related transformations: transition from cnn to ngraph versions (#2927)
* sequences to ti transformations, support for seq_lengths input, update reference implemetations, add new tests

* fix python api, update sequences to ti transformation

* transition from cnn to ngraph transformations for cpu, gpu, vpu plugins

* fix convert_ti_to_sequence transformation

* fix naming issue in unroll transformation

* test pure TensorIterator in vpu plugin

* fix sequences to ti transformation

* Update sequences to TI transformation: fix reverse sequence support

* update single layer tests, fix TI reference impl, fix Sequences to TI transformations

* ngraph code style

* fix build

* fix ngraph python api

* resolver review comments, refactoring

* revert vpu changes

* disable/fix tests

* refactoring

* Resolve review remarks

* optimization of LSTMSeq -> LSTMSeq IE: remove unnecessary Transpose ops

* Refactoring of transformation pipeline in cpu and gpu plugins, align GRU/RNN -> GRU/RNN IE with LSTM -> LSTM IE

* update TensorIterator tests, refactoring

* fix typo

* Fix unit tests, delete unnecessary callbacks

* Refactoring: delete commented code

* Add FullyConnected to skipConstInfer list for legacy ConstFolding

* disable legacy cnn unit tests

* delete xfail

* fix for backward compatibility with opset1::LSTMCell

* delete xfail

* fix build, remove Reshape layer from skipConstInfer list
2020-11-17 12:38:22 +03:00
Jan Iwaszkiewicz
cfe143fd33
[nGraph][ONNX] Rename xfails (#3061) 2020-11-17 10:34:33 +01:00
Vitaliy Urusovskij
070fc17087
Extend information to submit to a DB in time_tests (#3018)
* Optimize imports in time_tests conftest.py

* Extend information to submit to a DB in time_tests:
1. Add `--manifest` and `--db_metadata` CLI keys
2. Add `prepare_db_info` fixture

* Move `validate_test_case` fixture to a const schema, remove extra checks

* Add `manifest_metadata` fixture to parse and validate manifest only once

* Add OS utils to submit os info to DB
2020-11-17 12:07:40 +03:00
Maxim Vafin
a991ad926f
Fix ApplyPermutations for the case when more then 1 input with permutes (#3095) 2020-11-17 11:58:01 +03:00
Ilya Lavrenov
5bb0dba335
Removed documents which are ported to OpenVINO WiKi (#3106)
* Removed documents which are ported to OpenVINO WiKi

* More updates

* Removed getting started

* Ported more guides to OpenVINO Wiki
2020-11-17 11:46:05 +03:00
Ilya Lavrenov
9d52520a8c
Connect some ngraph and IE cmake options (#3147) 2020-11-17 11:42:34 +03:00
Roman Vyunov (Intel)
9da175c10c
[IE][TOOLS] Fix for CCT two IR mode (#3084) 2020-11-17 11:41:48 +03:00
Aleksandr Korolev
957a1f6590
[IE][VPU]: Fix condition in HW tiling (#3111)
Co-authored-by: kora6 <kora6@github.com>
2020-11-17 11:36:23 +03:00