Commit Graph

5492 Commits

Author SHA1 Message Date
Zlobin Vladimir
251883001c
[CPU] Set lower bound for nstreams to 1 (#8747) 2021-11-23 06:42:12 +03:00
Min, Byungil
c2ddfdc940
[GPU] Bugfix for accruacy regression of onednn reorder fusing (#8441)
Signed-off-by: Min, Byungil <byungil.min@intel.com>
2021-11-23 11:26:46 +09:00
Piotr Szmelczynski
24ad1edc4e
Ov20/preprocess base python (#7625)
* Preprocessing API - base classes

Includes API definition for trivial mean/scale operations (which don't require layout)

Mean/scale with 'layout' support will be done under separate task together
 with Layout

Current test code coverage: 100%

* Python bindings for base preprocessing API

* remove pre_post_process directory from ngraph/core

* remove files from ngraph/python dir

* move pyngraph pre_post_process files from ngraph/python to runtime

* remove pre_post_process test from CMakeList

* move include to the header

* update include path for pre_post_process

* style fix

* bind InputTensorInfo::set_layout

* cleaned test_preprocess

* fix test expected output

* remove duplicate test

* update description of set_element_type

* fix style

* move preprocess from pyngraph to pyopenvino/graph

* update test_preprocess imports and remove unnecessary test

* remove duplicate import

* update custom method

* update test

* update test

* create decorator that changes Node into Output<Node>

* create function that cast Node to Output<Node>

* update test_preprocess to use decorator for custom function

* change _cast_to_output -> _from_node

* style fix

* add tests fro scale and mean with vector input

* style fix

* add docstring for custom_preprocess_function

* bind InputInfo network method

* style fix

* bind OutputInfo

* fix description of preprocess submodule

* fix style

* update copyright year

* bind OutputTensorInfo

* bind OutputNetworkInfo and InputNetworkInfo

* bind ColorFormat and ResizeAlgorithm

* clean imports

* fix typo

* add PostProcessSteps to init

* bind PreProcessSteps

* create additional tests

* change ngraph.Type to ov.Type

* fix typo

* move _from_node to node_output.hpp

* add read_model from buffer

* update imports

* add new line

* remove bad quotes

* update imports

* style fix

* add new line

* rename functin args

* remove Type import

* update tests

* style fix

* test clean

* remove blank line

* update PrePostProcessor init and build methods

* create test with model update tests with new PrePostProcessor init and build

* move preprocess module from openvino.impl to openvino

Co-authored-by: Michael Nosov <mikhail.nosov@intel.com>
Co-authored-by: bszmelcz <bartosz.szmelczynski@intel.com>
2021-11-23 02:10:53 +03:00
Alexandra Sidorova
75af8254cb
[CPU] Fixed performance for Eltwise with C=1 (#8406) 2021-11-23 01:09:52 +03:00
Mikhail Letavin
a862331732
[GPU] Fix multi configuration build of onednn_gpu (#8743) 2021-11-23 00:22:05 +03:00
Mikhail Nosov
d15dcd6833
Support 'set_memory_type(string)' for preprocessing info tensor info (#8721)
Testing: unit tests + serialization/deserialization tests
2021-11-22 19:42:23 +03:00
Gleb Kazantaev
9f54641858
Update Transpose Sinking (#8720)
* Update Transpose Sinking

* Fix namespace

* Fix typo
2021-11-22 16:47:00 +03:00
Ilya Lavrenov
7c10998cf8
Removed pointer from ov::get_openvino_version (#8687)
* Removed pointer from ov::get_openvino_version

* Fixed issues with version print

* Clang-format
2021-11-22 15:21:09 +03:00
Vladimir Paramuzov
b05d90032b
[GPU] Replace input_offset parameters with padding (#7571) 2021-11-22 14:45:58 +03:00
Szymon Irzabek
f6a4dcb5ac
[GNA] Add MVN decomposition (#8142) 2021-11-22 14:39:25 +03:00
Sergey Shlyapnikov
a4854fa61d
[GPU] Add memory benchmarking tests (#8689) 2021-11-22 14:25:05 +03:00
Ilya Churaev
5a48ca5f64
Changed owners of python dependencies (#8700) 2021-11-22 13:35:47 +03:00
FanJiangIntel
de639899a6
Fix THREADING=SEQ build failure on Windows (#8699) 2021-11-22 12:54:32 +03:00
Ilya Lavrenov
c37521d097
Move fast run scripts for samples to samples folder (#8725) 2021-11-22 12:52:05 +03:00
Alexey Lebedev
8e46eecac0
fix input files parsing (#8718) 2021-11-22 12:15:00 +03:00
Vladislav Golubev
a33b75871d
[CPU] Security fixes (#8456) 2021-11-22 10:08:37 +03:00
Yuan Hu
64e45447f4
fix compile issue caused by interface change (#8727)
Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>
2021-11-22 10:07:18 +03:00
Ilya Lavrenov
8aa718549a
Try to fix Windows Azure (#8723) 2021-11-21 18:11:45 +03:00
Mikhail Ryzhov
390782764c
[GNA] Enabled new OV inference tests (#8618)
* Enabled the new OV inference tests

* reverted .gitignore

* Revert "reverted .gitignore"

This reverts commit a6b63bfef8.

* Update inference-engine/tests/functional/plugin/gna/shared_tests_instances/skip_tests_config.cpp

Co-authored-by: Nadezhda Ageeva <nkogteva@gmail.com>

* Update inference-engine/tests/functional/plugin/gna/shared_tests_instances/skip_tests_config.cpp

Co-authored-by: Nadezhda Ageeva <nkogteva@gmail.com>

* Removed CVS from skip list

Co-authored-by: Nadezhda Ageeva <nkogteva@gmail.com>
2021-11-21 16:15:53 +03:00
Maxim Andronov
7c525592e7
[CPU] clone Constant node instead direct usage (#8719) 2021-11-21 14:50:17 +03:00
Egor Shulman
c4e49bb915
[CPU] OneHot dynamic done (#8488) 2021-11-21 14:44:11 +03:00
Ilya Lavrenov
a1e95f4d69
Deprecated SOPointer (#8711)
* Removed SOPointer

* Updates

* Fixed tests, compilation
2021-11-20 18:13:10 +03:00
Yuan Hu
063df47ec9
continue to load candidate device when load device failed (#8006)
* fix potential risk

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* try catch exception when load nextwork

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* wait for the first ready device instead of cpu

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* continue to select next device if load failed

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* Refactoring code to make code easy and readable

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* debug core dump

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* improve the code

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* add test code

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* test draft

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* improve test code

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* remove debug print

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* fix some reviews

add comments on test
init flags in hpp
remove draft code

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* fix code format

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* try to fix compile static library issue in ci

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* fix compile issue in centos76

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* fix build issue on windows

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* fix a review

merge loop

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* rebase master

fix conflict with PR 8389

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* fix some review issue

lock issue
change NULL to nullptr
misprint issue
add EXPECT_CALL for ON_CALL

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* run test in ci

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* add more EXPECT_CALL test

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* fix the comment of test config

Signed-off-by: Hu, Yuan2 <yuan2.hu@intel.com>

* Fix merge from master (was required to resolve conflicts)

Co-authored-by: Maxim Shevtsov <maxim.y.shevtsov@intel.com>
2021-11-20 17:49:19 +03:00
Ilya Lavrenov
543ca4f318
Enabled proper OpenVINOConfig.cmake generation for static build (#8634)
* Enabled PDPD, TF on Windows

* Try to build samples against static libs

* Fixes

* Fixes

* fix

* Used ENABLE_GAPI_PREPROCESSING in C API tests

* Revert "Used ENABLE_GAPI_PREPROCESSING in C API tests"

This reverts commit df9d53e3cc.

* Fixes

* Revert exclude

* Enabled proper OpenVINOConfig.cmake generation

* Try

* Try
2021-11-20 02:27:43 +03:00
Anastasia Kuporosova
d414b35d75
[Python API] Remove unused dependency on onnx_frontend (#8688) 2021-11-20 00:17:53 +03:00
Anton Pankratov
bcb7415fce
Fixed exec net config test (#8710) 2021-11-19 23:31:42 +03:00
Anastasia Kuporosova
543584d577
[Python API] add_outputs api (#8626)
* [Python API] add_outputs api

* add tests and missed api for tests

* fix codestyle

* add documentation

* fix code style

* fix building

* add tensorDescriptor tests

* add get_any_name and more checks

* descriptor tensor name
2021-11-19 20:19:19 +03:00
Katarzyna Mitrus
83991607c3
[Python API] Add missing opest8 ops to compatibility python API (#8659) 2021-11-19 19:32:03 +03:00
Jan Iwaszkiewicz
7e457bfd72
Fix B006 error and Core object lifetime for compile_method on CPU plugin (#8683) 2021-11-19 15:56:54 +01:00
Indira Salyahova
d9241dda72
fix: check int branch while find fqs_to_unify (#8661) 2021-11-19 15:21:27 +03:00
Mikhail Nosov
e34a66d828
Typo fix in I420toRGB specification example (#8705) 2021-11-19 10:47:19 +00:00
Gleb Kazantaev
0e749b8b15
Reduce number of Function Validations (#8668) 2021-11-19 13:04:49 +03:00
Ilya Lavrenov
1ca9592d75
Removed WA for CPU interpolate NHWC (#8686) 2021-11-19 11:38:06 +03:00
Evgeny Talanin
2777820882
Skip Exp test (#8692)
* Skip Exp test

* Fix regexp

* One more attempt...

* Update exp.cpp
2021-11-19 11:08:39 +03:00
song, bell
ea0095ad6d
stick to default memory if userrequest exceed the optimal number (#8640)
* stick to default memory if userrequest exceed the optimal number

Signed-off-by: fishbell <bell.song@intel.com>

* formatting

Signed-off-by: fishbell <bell.song@intel.com>
2021-11-19 10:29:16 +03:00
Mikhail Nosov
aaac5de2fa
[OV2.0] I420 preprocessing color format support (#8680)
* Add I420 preprocessing

Tests:
- Template reference
- OpenCV
- Legacy Preprocessing tests
- Functional shared tests for plugins (CPU)
- Disable i420 preprocessing tests on GPU

* clang-format fix
2021-11-18 23:30:44 +03:00
Anastasia Popova
5e15288c8a
Separated old_api_map into two attributes. (#8632)
* Separated old_api_map into old_api_map_order and old_api_element_type.

* Clang format, small fix.

* Corrected comment.

* Removed OldApiMapOrderAttr class.
2021-11-18 22:04:50 +03:00
Andrey Zaytsev
6f1a3acf3c
Feature/azaytsev/doc int8 image fix (#8684)
* Added info on DockerHub CI Framework

* Feature/azaytsev/change layout (#3295)

* Changes according to feedback comments

* Replaced @ref's with html links

* Fixed links, added a title page for installing from repos and images, fixed formatting issues

* Added links

* minor fix

* Added DL Streamer to the list of components installed by default

* Link fixes

* Link fixes

* ovms doc fix (#2988)

* added OpenVINO Model Server

* ovms doc fixes

Co-authored-by: Trawinski, Dariusz <dariusz.trawinski@intel.com>

* Updated openvino_docs.xml

* Updated the link to software license agreements

* Revert "Updated the link to software license agreements"

This reverts commit 706dac500e.

* Fixed diagram

Co-authored-by: Trawinski, Dariusz <dariusz.trawinski@intel.com>
2021-11-18 21:37:51 +03:00
Evgeny Kotov
0da094f7ff
clockwork fixes (#8646) 2021-11-18 19:57:56 +03:00
Maksim Kutakov
a3fae37fe1
[CPU] Native dynamic shapes support in the Convolution node (#8047)
* Dynamic conv first commit

* Fixes after rebase

* Refactoring:

1. Conv node code refactor
2. DW conv fusing is disabled for dynamic case
3. Weights static shape constraint was added

* Minor fix for 1st rank bias

* WA fix

* MKLDNN dynamic conv fixes

* Temporal WA on format serialization

* Convolution SL prepared for dynamism

* Fix for bias fusing

* Update for nspc heuristics

* Convolution SL tests are updated with dynamic shapes

* GroupConv SL tests are updated with dynamic shapes

* Wip

* Dynamic shapes post ops support

* Dynamic shapes convolution full SL tests support

* Convolution builder changed to support pShape

* Convolution CPU SL test moved to the new Test Infra

* Skip tests conf update

* Auto padding support in dynamic mode with test

* Convolution dyn tests for bf16

* Group Conv test commented

* Submodule up

* First review fixes

* Group convolution dynamic shapes SL test

* Serialize format method has been fixed

* Floating point numbers resolution changed to even number

* AutoPad flag was added

* Skip test config updated with changed signature

* An attempt to reduce SL test time

* Dilated convolution tests extracted from the precommit
2021-11-18 18:53:16 +03:00
Irina Efode
3efd842dd9
[IE TESTS] Skip sporadic failures for ref test (#8685) 2021-11-18 18:52:46 +03:00
Ilya Lavrenov
71c28b3f9f
Removed samples installation (#8675) 2021-11-18 18:42:45 +03:00
Sergey Shlyapnikov
be786ee7af
[GPU] Do not add paddings for OneDNN primitives (#8619)
* Fix review comments for Convolutions

* [GPU] Do not add paddings for OneDNN primitives

* Add unit test for correct padding between onednn and cldnn primitives
2021-11-18 16:48:30 +03:00
Ilya Lavrenov
90e10e369d
Configurable G-API preprocessing in static build (#8631)
* Added cmake option todisable G-API preprocessing

* Enabled PDPD, TF on Windows

* Revert "Enabled PDPD, TF on Windows"

This reverts commit 2851cba056.
2021-11-18 16:40:53 +03:00
Andrew Kwangwoong Park
9972410aa3
[GPU] Add IE Core GPU plugin metric to query overall memory statistics for GPU device (#8421) 2021-11-18 14:26:53 +03:00
Irina Efode
2468a015dc
[IE TESTS][Conformance] API conformance instances (#7948)
* [IE TESTS] Add API Conformance

* Inst

* temp

* Small refactoring

* Instantiatians

* ov_plugihn

* Fix some cases

* fix template

* Six oss build

* Update conformance.hpp

* fix

* try to fix

* Apply comments

* Remove extra
2021-11-18 13:44:44 +03:00
Bo Liu
a84d01cb0d
fix PaddlePaddle fuzz test when tensor_name=null (#8624) 2021-11-18 13:31:37 +03:00
Alexander Zhogov
ae0a1e930b
Azure CI: Try ccache on Linux (#8652)
* Azure CI: Try ccache on Linux

* Create initial dir

* Add --max-size=1T --show-config
2021-11-18 12:04:37 +03:00
Sergey Shlyapnikov
838a4eb269
[GPU] Add memory type information for GPU verbose print (#8662) 2021-11-18 11:28:35 +03:00
Anastasia Kuporosova
cdb827b550
[Python API] Add query_state api (#8633)
* [Python API] Add query_state api

* fix code style

* fix test

* fix test and it's codestyle
2021-11-18 10:49:01 +03:00