platform/upstream/dldt.git
4 years ago[IE TESTS] Move old IE Unit tests to the new infra (#605)
Irina Efode [Wed, 27 May 2020 08:53:00 +0000 (11:53 +0300)]
[IE TESTS] Move old IE Unit tests to the new infra (#605)

4 years ago[IE CLDNN] Implement CumSum operation (#533)
Egor Churaev [Wed, 27 May 2020 08:47:16 +0000 (11:47 +0300)]
[IE CLDNN] Implement CumSum operation (#533)

CumSum performs cumulative summation of the input elements along the given axis.

Details:
By default, it will do the sum inclusively meaning the first element is
copied as is. Through an "exclusive" attribute, this behavior can change
to exclude the first element. It can also perform summation in the
opposite direction of the axis. For that, set "reverse" attribute to
true.

JIRA: 29994

4 years ago[IE Myriad] "printf" methods were replaced with mvLog (#552)
Nikita Kudriavtsev [Wed, 27 May 2020 08:45:34 +0000 (11:45 +0300)]
[IE Myriad] "printf" methods were replaced with mvLog (#552)

4 years ago[VPU][GT] Refine edges methods (#550)
Andrew Bakalin [Wed, 27 May 2020 08:14:02 +0000 (11:14 +0300)]
[VPU][GT] Refine edges methods (#550)

* [VPU][GT] Extract order manipulation into separate methods

* [VPU][GT] Rename data -> dependency

* [VPU][GT] Extend unit tests

* [VPU][GT] Introduce replacement and removal methods for StageDependency

* [VPU][GT] Update DataToShape connection methods

4 years ago[ MO ONNX ] Resize-11 clear error message (#620)
Evgenya Stepyreva [Wed, 27 May 2020 05:09:15 +0000 (08:09 +0300)]
[ MO ONNX ] Resize-11 clear error message (#620)

* Small refactoring of extractors

* [ MO ] Throwing an exception while extracting Resize-11 which is not supported

4 years ago[IE CLDNN] Enable int8 activation for fsv16 format (#516)
Konrad Dobros [Wed, 27 May 2020 02:37:38 +0000 (04:37 +0200)]
[IE CLDNN] Enable int8 activation for fsv16 format (#516)

This change enables int8/uint8 standalone activation to use optimized
block format (b_fs_yx_fsv16). This should eliminate cases where such
activation had reorders before and after.

Support for this is already provided by activation_kernel_ref implementation.

Related JIRA: CVS-28494

4 years agoUpdated convert_nms_to_nms_ie transformation to support dynamic shapes (#614)
Gleb Kazantaev [Tue, 26 May 2020 21:38:25 +0000 (00:38 +0300)]
Updated convert_nms_to_nms_ie transformation to support dynamic shapes (#614)

4 years agoUpdated ConvertGatherToGatherIE transformation to support dynamic shapes (#611)
Gleb Kazantaev [Tue, 26 May 2020 21:38:04 +0000 (00:38 +0300)]
Updated ConvertGatherToGatherIE transformation to support dynamic shapes (#611)

4 years agoChange Elu a regular op since decomposition works extremely slowly (#582)
Evgeny Lazarev [Tue, 26 May 2020 18:59:08 +0000 (21:59 +0300)]
Change Elu a regular op since decomposition works extremely slowly (#582)

* Moved Elu operation from Fused to regular ones because the decomposition works extremely slowly.

* Added reference implementation for the Elu op

4 years ago[ MO ONNX ] TopK-1/10/11 proper extracting (#600)
Evgenya Stepyreva [Tue, 26 May 2020 18:53:24 +0000 (21:53 +0300)]
[ MO ONNX ] TopK-1/10/11 proper extracting (#600)

4 years ago[Stress] Updated test_configs with new path to OMZ mtcnn models (#602)
Vitaliy Urusovskij [Tue, 26 May 2020 17:11:46 +0000 (20:11 +0300)]
[Stress] Updated test_configs with new path to OMZ mtcnn models (#602)

4 years agoFixed compilation with clang-10 + xcode (#521)
Ilya Lavrenov [Tue, 26 May 2020 14:17:36 +0000 (17:17 +0300)]
Fixed compilation with clang-10 + xcode (#521)

4 years agoUpdated requiremnets.txt (#593)
Shashwat Dalakoti [Tue, 26 May 2020 13:19:43 +0000 (18:49 +0530)]
Updated requiremnets.txt (#593)

Alignment with the requirements_tf.txt file

4 years agofix issue log print wrong origin image shape (#581)
JunX [Tue, 26 May 2020 11:27:14 +0000 (19:27 +0800)]
fix issue log print wrong origin image shape (#581)

4 years ago[IE CMAKE] FIX PATHS (#553)
Irina Efode [Tue, 26 May 2020 08:57:02 +0000 (11:57 +0300)]
[IE CMAKE] FIX PATHS (#553)

* [IE CMAKE] FIX PATHS

* Fix problems

4 years agoDisable nGraph tests if ENABLE_TESTS=OFF (#579)
Ilya Churaev [Tue, 26 May 2020 08:51:47 +0000 (11:51 +0300)]
Disable nGraph tests if ENABLE_TESTS=OFF (#579)

4 years agoUpdated Mul->Add conversion to support dynamic shapes (#512)
Gleb Kazantaev [Tue, 26 May 2020 07:24:52 +0000 (10:24 +0300)]
Updated Mul->Add conversion to support dynamic shapes (#512)

* Updated Mul Add conversion to support dynamic shapes

* Keep changes

* Fix for cases when eltwise performs broadcasting via Constant

* Added comments;Fixed eltwise shape infer; Updated tests

4 years agoMO: Flush after dumping the arguments to stdout (#570)
Roman Donchenko [Tue, 26 May 2020 04:44:25 +0000 (07:44 +0300)]
MO: Flush after dumping the arguments to stdout (#570)

When stdout is not a terminal, Python will buffer it by default. This
means that a consumer of MO's output will not see the argument information
until the buffer is flushed, which will normally only happen once MO
finishes (which might take a while).

Flushing stdout explicitly allows the consumer to see this info as soon
as it's printed.

4 years agoUpdate TopKIE operation and transform to support dynamic shapes (#526)
Gleb Kazantaev [Mon, 25 May 2020 22:19:38 +0000 (01:19 +0300)]
Update TopKIE operation and transform to support dynamic shapes (#526)

* Update TopKIE operation and transform to support dynamic shapes

* Fix TopKIE shape infer

* Updated TopKIE infer function

* Removed index_element_type; changed swtich with as_string<> method

* Fixed ieFuncTests

* Fixed convert_topk transformation

* Updated convert_topk transformations

* ngraph::copy_runtime_info(topk, new_ops);

4 years ago[IE TESTS] Move old IE unit tests to the new infra (#544)
Irina Efode [Mon, 25 May 2020 20:28:59 +0000 (23:28 +0300)]
[IE TESTS] Move old IE unit tests to the new infra (#544)

* [IE TESTS] Move ie_blob_proxy tests

* [IE TESTS] Move network serializer tests

* [IE TESTS] Move CNNNetwork tests to the IE func

* [IE TEST] Fix deprecation warnings

* Fix comments

4 years agoCODEOWNERS: added cpu/gpu developers teams (#540)
Vladimir Paramuzov [Mon, 25 May 2020 18:54:54 +0000 (21:54 +0300)]
CODEOWNERS: added cpu/gpu developers teams (#540)

4 years agoUse compute optimized VMs for CI (#567)
Konstantin Satunin [Mon, 25 May 2020 18:31:57 +0000 (21:31 +0300)]
Use compute optimized VMs for CI (#567)

4 years agoSupport ONNX Clamp-11 (#538)
Maxim Vafin [Mon, 25 May 2020 16:59:07 +0000 (19:59 +0300)]
Support ONNX Clamp-11 (#538)

4 years agoAdded case less check for enum names (#534)
Ilya Churaev [Mon, 25 May 2020 13:23:55 +0000 (16:23 +0300)]
Added case less check for enum names (#534)

* Added case less check for enum names

* Added <algorithm> header

4 years ago[IE Myriad] Correct destruction order in functional tests with DISABLE_PLUGIN_CACHE...
Nikita Kudriavtsev [Mon, 25 May 2020 12:45:59 +0000 (15:45 +0300)]
[IE Myriad] Correct destruction order in functional tests with DISABLE_PLUGIN_CACHE  env. variable (#542)

4 years ago[ MO TF ] IdentityN support (#529)
Evgenya Stepyreva [Mon, 25 May 2020 07:52:58 +0000 (10:52 +0300)]
[ MO TF ] IdentityN support (#529)

4 years agoAzure CI: Enable cpuFuncTests on Windows
Alexander Zhogov [Fri, 22 May 2020 22:29:36 +0000 (01:29 +0300)]
Azure CI: Enable cpuFuncTests on Windows

4 years agoCODEOWNERS: Fix
Alexander Zhogov [Fri, 22 May 2020 22:27:53 +0000 (01:27 +0300)]
CODEOWNERS: Fix

4 years agoFix MO CI job name (#520)
Alexander Zhogov [Fri, 22 May 2020 21:24:05 +0000 (00:24 +0300)]
Fix MO CI job name (#520)

4 years agoUpdate public CI (#514)
Alexander Zhogov [Fri, 22 May 2020 20:34:26 +0000 (23:34 +0300)]
Update public CI (#514)

* Update public CI

* Add MO test check

* Disable cpuFuncTests on Windows

4 years agoadd plugin template (#515)
Alexey Suhov [Fri, 22 May 2020 19:34:00 +0000 (22:34 +0300)]
add plugin template (#515)

4 years agoUpdate CODEOWNERS using openvino-ie-tests-maintainers group (#519)
Irina Efode [Fri, 22 May 2020 19:17:06 +0000 (22:17 +0300)]
Update CODEOWNERS using openvino-ie-tests-maintainers group (#519)

4 years agoUpdate CODEOWNERS (#518)
Irina Efode [Fri, 22 May 2020 18:37:03 +0000 (21:37 +0300)]
Update CODEOWNERS (#518)

4 years ago[IE TESTS] Fix win func test issue (#508)
Irina Efode [Fri, 22 May 2020 18:19:28 +0000 (21:19 +0300)]
[IE TESTS] Fix win func test issue (#508)

4 years agoUpdate codeowners 1 (#517)
Evgeny Talanin [Fri, 22 May 2020 18:18:54 +0000 (21:18 +0300)]
Update codeowners 1 (#517)

* Fine-grained groups to CODEOWNERS at day 1

* Fix

* Fix ie-maintainers

Co-authored-by: Alexander Zhogov <alexander.zhogov@intel.com>
4 years agoRemove test artifact (#511)
Ilya Lavrenov [Fri, 22 May 2020 17:02:00 +0000 (20:02 +0300)]
Remove test artifact (#511)

4 years agoAzure: Update job names, add cpuFuncTests (#509)
Alexander Zhogov [Fri, 22 May 2020 14:47:05 +0000 (17:47 +0300)]
Azure: Update job names, add cpuFuncTests (#509)

4 years agoRemove Dimension::size_t and callers
Alexey Suhov [Fri, 22 May 2020 08:17:20 +0000 (11:17 +0300)]
Remove Dimension::size_t and callers
(cherry-pick master commit 72fa20942a3f135ea2e324f47dd401506a913876)

4 years agoUpdate job name
azhogov [Fri, 22 May 2020 07:23:59 +0000 (10:23 +0300)]
Update job name

4 years agoCODEOWNERS: Add Jenkinsfile
Alexander Zhogov [Fri, 22 May 2020 07:09:47 +0000 (10:09 +0300)]
CODEOWNERS: Add Jenkinsfile

4 years agoCODEOWNERS: add tools
Alexander Zhogov [Fri, 22 May 2020 07:06:33 +0000 (10:06 +0300)]
CODEOWNERS: add tools

4 years agopublish master branch snapshot, revision ea98a886d925eb152931aab13856e68037665562
Alexey Suhov [Fri, 22 May 2020 00:42:00 +0000 (03:42 +0300)]
publish master branch snapshot, revision ea98a886d925eb152931aab13856e68037665562

4 years agopublish master branch snapshot, revision 8d31237e2c3f673cbb0f0ba110fc10f5cce1d2bb
Alexey Suhov [Thu, 21 May 2020 23:23:12 +0000 (02:23 +0300)]
publish master branch snapshot, revision 8d31237e2c3f673cbb0f0ba110fc10f5cce1d2bb

4 years agoadd submodules for mkl-dnn, gflags and gtest
Alexey Suhov [Thu, 21 May 2020 20:00:55 +0000 (23:00 +0300)]
add submodules for mkl-dnn, gflags and gtest

4 years agofixed latest release
Konstantin Satunin [Thu, 21 May 2020 14:27:44 +0000 (17:27 +0300)]
fixed latest release

4 years agoadd speech demo
Alexey Suhov [Thu, 21 May 2020 14:14:03 +0000 (17:14 +0300)]
add speech demo

4 years agomove dependencies to https://download.01.org/opencv/master
Alexey Suhov [Thu, 21 May 2020 12:00:31 +0000 (15:00 +0300)]
move dependencies to https://download.01.org/opencv/master

4 years agoupdate TBB and VPU binary dependencies
Alexey Suhov [Wed, 20 May 2020 19:02:34 +0000 (22:02 +0300)]
update TBB and VPU binary dependencies

4 years agoAzure: disable IE_Lin
azhogov [Wed, 20 May 2020 10:15:07 +0000 (13:15 +0300)]
Azure: disable IE_Lin

4 years agoAzure Pipelines: Set -j12 for Lin_self
Alexander Zhogov [Wed, 20 May 2020 09:05:04 +0000 (12:05 +0300)]
Azure Pipelines: Set -j12 for Lin_self

4 years agoTest Ubuntu 1804 VMSS
Konstantin Satunin [Wed, 20 May 2020 08:46:09 +0000 (11:46 +0300)]
Test Ubuntu 1804 VMSS

4 years agopublish master branch snapshot, revision 9df5eb1f84e13a35720a918f88324561222ab114
Alexey Suhov [Tue, 19 May 2020 22:13:06 +0000 (01:13 +0300)]
publish master branch snapshot, revision 9df5eb1f84e13a35720a918f88324561222ab114

4 years agoremove ngraph submodule
Alexey Suhov [Tue, 19 May 2020 21:20:33 +0000 (00:20 +0300)]
remove ngraph submodule

4 years agoUpdate How to Contribute
Alexander Zhogov [Tue, 19 May 2020 16:08:14 +0000 (19:08 +0300)]
Update How to Contribute

4 years agoCreate CONTRIBUTING.md
Alexander Zhogov [Tue, 19 May 2020 16:04:27 +0000 (19:04 +0300)]
Create CONTRIBUTING.md

4 years agoUpdate CODEOWNERS
Alexander Zhogov [Tue, 19 May 2020 11:42:35 +0000 (14:42 +0300)]
Update CODEOWNERS

4 years ago[ie/scripts/dependencies.bat] Fix unpack for opencv
Andrey Babushkin [Mon, 18 May 2020 17:56:05 +0000 (20:56 +0300)]
[ie/scripts/dependencies.bat] Fix unpack for opencv

4 years agoAzure Pipelines: Try -j12 for Win vmss
Alexander Zhogov [Mon, 18 May 2020 17:38:27 +0000 (20:38 +0300)]
Azure Pipelines: Try -j12 for Win vmss

4 years agoAzure: Try -j8 for Win vmss
azhogov [Mon, 18 May 2020 17:33:56 +0000 (20:33 +0300)]
Azure: Try -j8 for Win vmss

4 years agoCheck VMSS
Konstantin Satunin [Mon, 18 May 2020 17:10:29 +0000 (20:10 +0300)]
Check VMSS

4 years agofix BOM file for model optimizer
Alexey Suhov [Mon, 18 May 2020 16:20:16 +0000 (19:20 +0300)]
fix BOM file for model optimizer

4 years agoMerge branch 'master' of https://github.com/openvinotoolkit/openvino
Alexey Suhov [Mon, 18 May 2020 15:29:42 +0000 (18:29 +0300)]
Merge branch 'master' of https://github.com/openvinotoolkit/openvino

4 years agoAzure Pipelines: Check WIN_VMSS_VENV
Alexander Zhogov [Mon, 18 May 2020 15:28:54 +0000 (18:28 +0300)]
Azure Pipelines: Check WIN_VMSS_VENV

4 years agoadd execute permissions to run_code_checks.sh
Alexey Suhov [Mon, 18 May 2020 15:28:53 +0000 (18:28 +0300)]
add execute permissions to run_code_checks.sh

4 years agopublish master branch snapshot, revision 59af1853ca21ea08acf17b177da0b239753deb46
Alexey Suhov [Mon, 18 May 2020 14:21:58 +0000 (17:21 +0300)]
publish master branch snapshot, revision 59af1853ca21ea08acf17b177da0b239753deb46

4 years agoAzure Pipelines: change pool for Win_self to WIN_VMSS
Alexander Zhogov [Mon, 18 May 2020 13:02:40 +0000 (16:02 +0300)]
Azure Pipelines: change pool for Win_self to WIN_VMSS

4 years agoFix VS2017 compilation issue: Intermediate channels count type changed to size_t
azhogov [Mon, 18 May 2020 10:17:10 +0000 (13:17 +0300)]
Fix VS2017 compilation issue: Intermediate channels count type changed to size_t
(cherry-pick master 0f6155ac3616fb2a7b51cfaddfdad1cc189f968d)

4 years agoUpdate README.md links
Alexander Zhogov [Sat, 16 May 2020 07:49:12 +0000 (10:49 +0300)]
Update README.md links

4 years agoAzure Pipelines: disable nGraph GPU UT, LTO, Mac crashed UT
Alexander Zhogov [Fri, 15 May 2020 16:16:28 +0000 (19:16 +0300)]
Azure Pipelines: disable nGraph GPU UT, LTO, Mac crashed UT

4 years agoAzure Pipelines: disable nGraph GPU UT
Alexander Zhogov [Fri, 15 May 2020 14:16:04 +0000 (17:16 +0300)]
Azure Pipelines: disable nGraph GPU UT

4 years agoCreate CODEOWNERS
Alexander Zhogov [Fri, 15 May 2020 08:41:46 +0000 (11:41 +0300)]
Create CODEOWNERS

4 years agoadd execute permissions to get_testdata.py
Alexey Suhov [Thu, 14 May 2020 20:17:54 +0000 (23:17 +0300)]
add execute permissions to get_testdata.py

4 years agoRevert LTO on Windows
Alexey Suhov [Thu, 14 May 2020 13:30:29 +0000 (16:30 +0300)]
Revert LTO on Windows

4 years agopublish master branch snapshot, revision 49482ae3bea0cbaa07474f86f36db11943142687
Alexey Suhov [Wed, 13 May 2020 18:12:22 +0000 (21:12 +0300)]
publish master branch snapshot, revision 49482ae3bea0cbaa07474f86f36db11943142687

4 years agoAzure Pipelines: exclude failed Mac test fix
Alexander Zhogov [Mon, 11 May 2020 11:59:09 +0000 (14:59 +0300)]
Azure Pipelines: exclude failed Mac test fix

4 years agoAzure Pipelines: exclude failed Mac test fix
Alexander Zhogov [Mon, 11 May 2020 09:27:57 +0000 (12:27 +0300)]
Azure Pipelines: exclude failed Mac test fix

4 years agoAzure Pipelines: exclude failed Mac test
Alexander Zhogov [Sun, 10 May 2020 17:30:18 +0000 (20:30 +0300)]
Azure Pipelines: exclude failed Mac test

4 years agoAzure Pipelines: exclude failed Mac test
Alexander Zhogov [Sun, 10 May 2020 07:58:47 +0000 (10:58 +0300)]
Azure Pipelines: exclude failed Mac test

4 years agoAzure Pipelines: set -j3
Alexander Zhogov [Fri, 8 May 2020 15:40:14 +0000 (18:40 +0300)]
Azure Pipelines: set -j3

4 years agoCreate .coveragerc
Andrey Babushkin [Wed, 6 May 2020 20:38:42 +0000 (23:38 +0300)]
Create .coveragerc

4 years agoadd scripts which download tests dependencies
Alexey Suhov [Wed, 6 May 2020 18:52:42 +0000 (21:52 +0300)]
add scripts which download tests dependencies

4 years agoAzure Pipelines: Update Mac options
Alexander Zhogov [Thu, 30 Apr 2020 09:03:14 +0000 (12:03 +0300)]
Azure Pipelines: Update Mac options

4 years agoAzure Pipelines: Fix test env on Windows
Alexander Zhogov [Wed, 29 Apr 2020 22:30:33 +0000 (01:30 +0300)]
Azure Pipelines: Fix test env on Windows

4 years agoRun pylint workflow on pull request events (#476)
Andrey Babushkin [Wed, 29 Apr 2020 14:05:24 +0000 (17:05 +0300)]
Run pylint workflow on pull request events (#476)

Also remove pylint cmdline arguments to ignore import errors

4 years agoAzure Pipelines: Fix test env
Alexander Zhogov [Wed, 29 Apr 2020 12:34:04 +0000 (15:34 +0300)]
Azure Pipelines: Fix test env

4 years agoAzure Pipelines: exclude backend_api.config_unsupported from nGraph UT
Alexander Zhogov [Wed, 29 Apr 2020 08:44:15 +0000 (11:44 +0300)]
Azure Pipelines: exclude backend_api.config_unsupported from nGraph UT

4 years agoAdd testdata to Azure Pipelines
Alexander Zhogov [Wed, 29 Apr 2020 07:23:05 +0000 (10:23 +0300)]
Add testdata to Azure Pipelines

4 years agofix NGRAPH_ONNX_IMPORT_ENABLE in cmake
Alexey Suhov [Tue, 28 Apr 2020 19:20:54 +0000 (22:20 +0300)]
fix NGRAPH_ONNX_IMPORT_ENABLE in cmake

4 years agoAdd GitHub Actions workflow to run pylint against model optimizer (#474)
Andrey Babushkin [Tue, 28 Apr 2020 15:41:12 +0000 (18:41 +0300)]
Add GitHub Actions workflow to run pylint against model optimizer (#474)

4 years agoUpdate Azure Pipelines
Alexander Zhogov [Tue, 28 Apr 2020 08:49:03 +0000 (11:49 +0300)]
Update Azure Pipelines

4 years agopublish master branch snapshot, revision 0110d9c98fd7209589d06344f0d836f61d81f4b3
Alexey Suhov [Mon, 27 Apr 2020 18:21:29 +0000 (21:21 +0300)]
publish master branch snapshot, revision 0110d9c98fd7209589d06344f0d836f61d81f4b3

4 years agoUpdate Azure Pipelines
Alexander Zhogov [Fri, 17 Apr 2020 09:37:19 +0000 (12:37 +0300)]
Update Azure Pipelines

4 years agoUpdate Azure Pipelines
Alexander Zhogov [Thu, 16 Apr 2020 17:52:03 +0000 (20:52 +0300)]
Update Azure Pipelines

4 years agoMerge branch 'master' of https://github.com/opencv/dldt
Alexey Suhov [Thu, 16 Apr 2020 11:40:24 +0000 (14:40 +0300)]
Merge branch 'master' of https://github.com/opencv/dldt

4 years agofixed BOM file for model optimizer
Alexey Suhov [Thu, 16 Apr 2020 11:38:57 +0000 (14:38 +0300)]
fixed BOM file for model optimizer

4 years agoUpdate Azure Pipelines
Alexander Zhogov [Thu, 16 Apr 2020 10:54:47 +0000 (13:54 +0300)]
Update Azure Pipelines

4 years agoFix typo
Alexander Zhogov [Thu, 16 Apr 2020 08:07:04 +0000 (11:07 +0300)]
Fix typo

4 years agoSet up CI with Azure Pipelines
Alexander Zhogov [Thu, 16 Apr 2020 08:02:27 +0000 (11:02 +0300)]
Set up CI with Azure Pipelines

4 years agomoved pylint configuration files
Alexey Suhov [Wed, 15 Apr 2020 18:46:27 +0000 (21:46 +0300)]
moved pylint configuration files

4 years agopublish master branch snapshot, revision cdcab9d7ab48ffb0ee5629fabbfa06cb45debd9b
Alexey Suhov [Wed, 15 Apr 2020 16:01:57 +0000 (19:01 +0300)]
publish master branch snapshot, revision cdcab9d7ab48ffb0ee5629fabbfa06cb45debd9b