Andrey Zaytsev
78c4874432
Feature/azaytsev/formula fixes ( #4622 )
...
* Formula fix
2021-03-04 16:24:44 +03:00
Bartosz Sochacki
3daacb5e09
[GNA] POT enabling ( #4358 )
...
* POT enabling for GNA
* POT enabling for GNA
* POT enabling for GNA - accuracy improvements
2021-03-04 16:10:01 +03:00
Edward Shogulin
ed8d3b72d3
[LPT] GPU support3DTensorOnActivations - tests ( #4576 )
2021-03-04 16:05:02 +03:00
Bartek Szmelczynski
932558b403
Revise sin ( #4337 )
...
* rearrenge the spec to match the criteria
* Add Sin to the list of unary operators for unit tests
* add detailed description for sin
* remove latex tags for theta symbol
* add supported input rank for input tensor
* add link to wikipedia
* add description for input a
2021-03-04 15:29:11 +03:00
Victor Kuznetsov
1fef41d083
Fix reference config for MemCheckTests ( #4587 )
2021-03-04 15:15:07 +03:00
Alina Kladieva
7aa8159331
[.ci/azure] Enable CC build ( #4619 )
2021-03-04 14:42:20 +03:00
Ilya Churaev
fff0a85910
Fix clone affinity ( #4577 )
...
* Added test
* Fixed code style
* Removed propagate_rt_info function
* Revert "Removed propagate_rt_info function"
This reverts commit 514a21b93c
.
* Don't skip conflicted RT info
* Fixed code style
2021-03-04 13:01:44 +03:00
Nadezhda Ageeva
2983962449
[IE Tools]: benchmark_app(s) supports BOOL input ( #4578 )
...
* [IE Tools]: benchmark_app(s) supports BOOL input
* Fix Windows build
2021-03-04 12:26:15 +03:00
Vladislav Volkov
52706e67fc
Fix for broken CC in CPU plugin ( #4594 )
2021-03-04 12:22:21 +03:00
Tomasz Dołbniak
a085b68d37
Subgraph extraction in ONNX model editor ( #4107 )
2021-03-04 10:12:37 +01:00
Mikhail Ryzhov
819bdbe4eb
Corrected PyYAML dependency ( #4598 )
...
5.4.2 is absent on PyPI
2021-03-04 09:21:56 +03:00
Anton Pankratv
7239a1aff3
Fixed unsafe macro ( #4486 )
2021-03-03 21:38:39 +03:00
Andrey Zaytsev
409cebc8e4
Feature/azaytsev/cldnn doc fixes ( #4593 )
...
* Legal fixes, removed the Generating docs section
* Removed info regarding generating docs
2021-03-03 20:52:10 +03:00
Andrey Zaytsev
8481e36e8a
Feature/azaytsev/gna model link fixes ( #4590 )
...
* 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
* Link Fixes
Co-authored-by: Trawinski, Dariusz <dariusz.trawinski@intel.com>
2021-03-03 19:03:40 +03:00
Vladislav Volkov
e0573e7e7b
Constant nodes outputs sharing between streams ( #4561 )
2021-03-03 16:57:15 +03:00
Andrew Bakalin
430adbc191
[IE][VPU]: Fixes for Yolo-V3 ( #4517 )
...
* Fix negative axis processing for StaticShapeTopK
* Preserve output names in MergeSubsequentDSROperations
* Do validate_and_infer_types every time it's called in StaticShape* operations. It's needed to infer the correct output type in case it was changed from the last call moment (e.g. the ConvertPrecision pass have been called)
2021-03-03 16:47:42 +03:00
Edward Shogulin
7aed4ab3e7
[LPT] GPU support3DTensorOnActivations ( #4562 )
2021-03-03 16:18:25 +03:00
Alexander Zhogov
d76b4da77a
[Azure CI] Disable real CC build
2021-03-03 15:56:37 +03:00
Alina Kladieva
e8aa8e3efc
Add cc azure pipeline ( #4586 )
...
* [.ci/azure] Add linux_conditional_compilation.yml
* Update linux_conditional_compilation.yml
* [.ci/azure] Update config for lin cc build
2021-03-03 15:27:38 +03:00
Piotr Rozen
bf467e097f
[GNA] Fixed issue with multiple connections between pair of nodes (Split=>Concat) ( #3953 )
...
* fixed: gna split-concat-concat sequence issue
fixed: gna permute-conv-maxpool-permute issue
* fix issue with multiple connections between split|crop|memory & concat
fix issue with serializing IR V7 model
* fixed: gna split-concat-concat sequence issue
fixed: gna permute-conv-maxpool-permute issue
* fix issue with multiple connections between split|crop|memory & concat
fix issue with serializing IR V7 model
* fixed issues after rebase
* Fix for the test TEST_F(FP32NonQuantizedTest, LSTMCellPropagateForward)
Input x[96] = 0.1
Scaled input = 0.01
Affine output = 64 * 0.01 * 0.1 + 0.1 = 0.164
Sigmoid(Affine output) = 0.541
Tanh(Affine output) = 0.163
Sigmoid(Affine output)*Tanh(Affine output) = 0.088
Sigmoid(Affine output)*Scaled input = 0.005
H = Sigmoid(Affine output)*Tanh(Affine output) + Sigmoid(Affine output)*Scaled input = 0.093
tanh(H) = 0.093
Result = H + Sigmoid(Affine output)*Scaled input = 0.093 + 0.541*0.093 = 0.093 + 0.050 = 0.143
* Updated copyright date
* [GNA] Added tests for cases connection split->concat
* [GNA] Added fix memory -> concat case
* fixed inf loop during quantization
* fixed code formatting
* fixed failing test smoke_concat_quant_memory_requant/ConcatQuantDuringMemoryRequantTest.CompareWithRefs/netPRC=FP16_IS=128_HS=128_targetDevice=GNA
* fixed removed & mark from pass manager main for loop
* added split=>concat case to InsertCopyLayerPass
Co-authored-by: Andrey Dmitriev <andrey.dmitriev@intel.com>
2021-03-03 12:54:09 +03:00
Mikhail Ryzhov
aadf4f4da6
Updated PyPi documentation ( #4423 )
...
* Updated documentation
* Added documentation for dev package
* Added separate documents for PyPI
Co-authored-by: Andrey Zaytsev <andrey.zaytsev@intel.com>
2021-03-03 12:09:09 +03:00
Vladislav Golubev
a719534889
[LPT] matmul with qdq on weights tests ( #4283 )
2021-03-03 12:07:49 +03:00
Vladislav Golubev
c206830e7b
[LPT] Integration branch with fixes for release 2021.3 ( #4544 )
...
* [LPT] ClampTransformation segfault fix
[LPT] Clamp with non dequantization multiply functional tests
* [LPT] StridedSliceTransformation: handling Dq without batch
* [LPT] MVN-6 support
Co-authored-by: Zinoviev, Vladimir <vladimir.zinoviev@intel.com>
2021-03-03 11:36:26 +03:00
Gleb Kazantaev
ffade0d1d8
Fix FakeQuantizeMulFusion for cases with NUMPY broadcasting ( #4570 )
...
* Fix FQMul fusion
* Added transformation test
* Removed wrong test
2021-03-03 11:34:29 +03:00
Gleb Kazantaev
c1925cc220
Fix klocwork hits ( #4573 )
2021-03-03 11:27:47 +03:00
Pavel Esir
29612f15e3
Fix StridedSlice replacer order and input permutation when strides are not specified ( #4545 )
2021-03-03 11:16:56 +03:00
Vladimir Paramuzov
92d750747c
[IE CLDNN] Restored optional conversion of quantized model to fp32 ( #4485 )
2021-03-03 09:28:53 +03:00
Alexandra Sidorova
ebe63f557c
[CPU] Fixed strides for Pad after optimized Split ( #4556 )
2021-03-03 09:28:01 +03:00
Tomasz Dołbniak
a35dfc4c5a
Disable the randomly failing test ( #4555 )
2021-03-03 07:33:09 +03:00
Ilya Lavrenov
1d88cdc45e
Fixed gtest build / usage in case of RelWithDebInfo ( #4554 )
...
* Fixed gtest build / usage in case of RelWithDebInfo
* Added more modules to fluid_preproc_tests tests
2021-03-03 07:27:23 +03:00
Ilya Lavrenov
f5da64db8a
Fixed getting InputInfo name for empty object ( #4564 )
2021-03-03 07:24:09 +03:00
Ivan Tikhonov
6fb742bec4
Fix LowLatency transformation for Loop ( #4557 )
...
* unrolling for Loop operation, fix LowLatency transformation for Loop
* delete unnecessary includes
* update copyright
* fix centOS build, resolve review remarks
2021-03-03 07:21:06 +03:00
Aleksandr Korolev
74d763ebf6
[IE][VPU]: update the condition for tiling for HWops ( #4482 )
...
* The condition for tiling for HWops was changed. It fixes some performance degradation issues
2021-03-02 21:34:44 +03:00
Alexey Lebedev
1d5562c266
[IE Python] update python api readme ( #4408 )
...
* update python API readme.md
* Update Python API readme.md
* Update api_overview.md
* update IE Python README
* update IE Python README
* Update api_overview.md
2021-03-02 21:33:25 +03:00
Anastasia Kuporosova
6b4abc49a4
[PYTHON API] Add bin, bool, bf16 precisions ( #4560 )
2021-03-02 21:32:17 +03:00
Alexey Varyzgin
b04a11697e
[VS2017] QueryState build error C4996 was fixed ( #4547 )
...
* disable and cleanup interp and resample that is covered by interpolate
* QueryState build error C4996 was fixed
Co-authored-by: chenhuwa <chenhu.wang@intel.com>
2021-03-02 21:08:09 +03:00
Ilya Churaev
77e80ddbb3
Fixed fuzzer issues ( #4553 )
...
* Fixed code style
* Revert redundant code
* Fixed fuzzer issues
2021-03-02 21:07:53 +03:00
Ivan Tikhonov
d4c5cb2375
Removing unnecessary order checking in Loop/TI operations ( #4531 )
...
* deleting a check of order of the input/output descs in ti/loop operations
* added ngraph_reader unit test
* unrolling for Loop operation, fix LowLatency transformation for Loop
* Revert "unrolling for Loop operation, fix LowLatency transformation for Loop"
This reverts commit 7188921ad7
.
2021-03-02 18:10:41 +03:00
Anastasia Popova
9f5fad16e7
Added check that new name is unique. ( #4516 )
...
* Added check that new name is unique..
* Added unique names test.
* Fixed unique name check.
* Fixed bug.
* Reformat code.
* Fixed bug, extended tests.
* Uncomment tests.
2021-03-02 17:26:55 +03:00
Evgeny Lazarev
f88638006c
Reverted changes in the Pad transformations caused a regression in the POT ( #4552 )
2021-03-02 16:00:11 +03:00
Elizaveta Lobanova
96b7b9441e
[GNA] Fix issues with compilation and quantization of input-split-concat pattern ( #4489 )
2021-03-02 14:59:55 +03:00
Elizaveta Lobanova
1eb830d083
[GNA] Security fixes for 2021.3 ( #4538 )
2021-03-02 14:57:12 +03:00
Svetlana Dolinina
42c1c65454
fix calculation of memoryoffset shape ( #4533 )
...
* fix calculation of memoryoffset shape in 2 cases: after normalization layer (shape can be read from InputDim in loader) and after affincecomponent layer (shape saved in out-size based on weights shape)
* improve comments
2021-03-02 14:35:22 +03:00
Vladimir Gavrilov
473c944e6e
Failed MO shape infer after SplitConcatPairToInterpolate transformation, when Concat has more than one producer ( #4502 )
...
* Fixes in the MO transformation SplitConcatPairToInterpolate.
* Small fix.
* Small fix.
* Added test for the case when inputs of Concat are two Splits.
* Added docstring to the function get_concat_after_split.
* Some fixes.
* Small fix.
2021-03-02 14:09:42 +03:00
Dmitry Polunin
4946d2e62c
Added gstreamer1.0-x pkg for dlstreamer ( #4512 )
...
* Added gstreamer1.0-x pkg for dlstreamer
* Added va-driver pkg for dlstreamer
* Update install_openvino_dependencies.sh
2021-03-02 12:41:56 +03:00
Kate Generalova
2674dfeda4
doc: configure docker container for GPU ( #4519 )
...
* doc: configure docker container for GPU
* Update docs/install_guides/installing-openvino-docker-linux.md
Co-authored-by: Alina Alborova <alina.alborova@intel.com>
* Update docs/install_guides/installing-openvino-docker-linux.md
Co-authored-by: Alina Alborova <alina.alborova@intel.com>
Co-authored-by: Alina Alborova <alina.alborova@intel.com>
2021-03-02 12:18:35 +03:00
Mikhail Ryzhov
b9fe911ec2
[Wheel] Added configuration for openvono-dev ( #4288 )
...
* [Wheel] Added configuration for openvono-dev
* Added dependency on runtime package
* Added patterns for license files
* Added mo package data
* added AC dependencies
2021-03-02 11:07:20 +03:00
Kate Generalova
03e68dd549
doc: add link to RHEL Docker repo ( #4539 )
2021-03-02 10:51:33 +03:00
Alexander Perepelkin
6c522fe76b
Allow the framework to generate input data without infer request object ( #4117 )
2021-03-02 10:40:02 +03:00
Szymon Durawa
7e57ec54b3
Revise ADD operation reference implementation ( #4453 )
...
* Additional unit tests for Add op, add single layer serialization tests for elementwise ops.
* Format unit test file.
2021-03-02 07:37:13 +03:00