Commit Graph

11766 Commits

Author SHA1 Message Date
Karol Blaszczak
258d476cbd
[DOCS] top bar fixes
fixes in top bar styling
FAQ for pot gets drop-downs
Homepage css improvement
2023-06-28 14:14:35 +02:00
hyunback kim
2582f04c9c
[GPU] Optimize stable diffusion perf igpu (#18200)
* [GPU] Optimize stable_diffusion performance in iGPU.

Change the existing heuristic shape condition to permute and no transpose gemm in case of transpose gemm.

Signed-off-by: hyunback <hyunback.kim@intel.com>
2023-06-28 13:57:10 +02:00
Tomasz Dołbniak
8f8bdc51b0
ScatterElementsUpdate-12 reference implementation (#18231) 2023-06-28 13:53:07 +02:00
bstankix
5941ad6e37
Add sitemap configuration (#18267) 2023-06-28 13:19:34 +02:00
Wilson Seok
1efb9eafae
[GPU] Add condition check for dynamic shape and onednn_impl in concat_in_place_optimization::match() (#18034)
* add dynamic shape support for dgpu in prepare_buffer_fusing

* add unit test

* add space between test cases

* update condition of impl create() for concat dynamic shape

* update unit test

* add comment and update unit test

* add impl_param.is_type() function
2023-06-27 23:39:00 -07:00
Jan Iwaszkiewicz
4fc0b22012
[PyOV] Force copy of not writable numpy arrays (#18194) 2023-06-28 07:56:29 +02:00
Paul Youngsoo Ahn
50897e86e6
[GPU] Impl cldnn::condition to support dynamic shape (#18051)
* [GPU] Impl cldnn::condition to support dynamic shape (#18051)
* Impl CreateIfOp
* Update calc_output_layouts and execute_impl
* Enable gpu unit test
* Create gpu functional test

* [GPU] Follow-up code review (#18051)
* remove redundant codes
* create custom execute method for condition_inst
* change name from update_loop_primitive_map to update_inner_program_io_map

* [GPU] Fix gpu func test failures for fp16

* Add more test-cases to support fp16 and nested if case

* [GPU] remove redundant codes
* refactoring var names
* fix windows build error

* [GPU] Fix windows build issue

* [GPU] update calc_output_layouts

* [GPU] remove custom condition_inst::execute

* Remove virtual keyword from primitive_inst::execute()

* [GPU] Share single task executor between main program and inner program

* [GPU] Fix input rank issue for const inner network in condition op

* [GPU] apply calc_output_layouts for roi_align

Co-authored-by: Vladimir Paramuzov <vladimir.paramuzov@intel.com>

* [GPU] avoid checking allow_new_shape_infer for inner program

---------

Co-authored-by: Vladimir Paramuzov <vladimir.paramuzov@intel.com>
2023-06-27 17:05:26 +02:00
Alina Kladieva
c2afa2aefc
Restrict scipy module version for POT (#18237)
* Restrict scipy module version for POT

Latest release https://pypi.org/project/scipy/1.11.0 causes dependency conflicts

* Bump OMZ to include scipy restriction

---------

Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com>
2023-06-27 12:59:45 +02:00
Andrew Kwangwoong Park
1566567ca4
[GPU] Fix output layout calculation for crop and fc (#18207)
* Fix get_partial_shape tensor API to access the correct index of dimensions

Signed-off-by: Andrew Park <andrew.park@intel.com>

* Update the rule specifying output_type to the legacy one by referring to calc_output_layout

Signed-off-by: Andrew Park <andrew.park@intel.com>

* Add reproducible TCs related to issues for ov_gpu_unit_tests

Signed-off-by: Andrew Park <andrew.park@intel.com>

* Fix failed fc dynamic i8 TCs for ov_gpu_unit_tests

Signed-off-by: Andrew Park <andrew.park@intel.com>

* Fix are_data_types_sutable_for_onednn not to invalidate output layout

Signed-off-by: Andrew Park <andrew.park@intel.com>

* Apply comment

Signed-off-by: Andrew Park <andrew.park@intel.com>

---------

Signed-off-by: Andrew Park <andrew.park@intel.com>
2023-06-27 11:30:30 +02:00
Mingyu Kim
61b15ce31a
Revert "[GPU] Reorder weights refactoring (#17787)" (#18248)
This reverts commit d00c7d30f9.
2023-06-27 17:26:18 +09:00
yanlan song
09446e1ce2
Include BATCH plugin proprieties in get_supported_property return list (#17504)
* keep batch as supported key when call get_supported from virtual plugin

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

update desc

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

* clang

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

* rename param and add case

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

* clang

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

* change order of include files

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

* rework case interface to 2.0 plugin api

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

* clang format

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

---------

Signed-off-by: fishbell <bell.song@intel.com>
2023-06-27 12:07:59 +04:00
Maciej Smyk
6505a297b1
[DOCS] Debugging Auto-Device Plugin rst shift + Notebooks installation id align for master (#18240)
* Update AutoPlugin_Debugging.md

* Update AutoPlugin_Debugging.md

* Update AutoPlugin_Debugging.md

* Update AutoPlugin_Debugging.md

* notebooks id fix

* fixes
2023-06-27 09:09:44 +02:00
Karol Blaszczak
4b70825d53
[DOCS] benchmark update for OVMS 23.0 (#18010) 2023-06-27 08:15:23 +02:00
Taylor Yeonbok Lee
bcf58344cc
Fix crash for shape of subgraph due to missing mem_dep (#18246) 2023-06-26 16:48:10 -07:00
Tatiana Savina
c3b7e81722
[DOCS] Add FrontEnd API note (#18154)
* add note

* fix typo

* add advance cases note

* tf doc note

* wording change
2023-06-26 16:53:03 +02:00
Wilson Seok
f306a11b82
[GPU] fix issues of MobileFaceNet for dynamic shape (#18171)
* fix issues of MobileFaceNet for dynamic shape

* update unit test
2023-06-26 17:22:15 +09:00
Sebastian Golebiewski
9e91076a63
updating-tutorials (#18210) 2023-06-26 09:41:49 +02:00
Taylor Yeonbok Lee
bf299c807e
[GPU] Not to add sync if the node belongs to shape of subgraph (#18158)
* Not to add sync if the node is within shape of subgraph
Because the dependency is cpu impl so the execution is already finished.

* Fixed as review comment : Skip clFinish only when the runtime dep is shape of subgraph, not the current node
2023-06-25 21:51:45 -07:00
Pawel Raasz
22aa219ab0
Fix conversion warning in gna plugin (#18216) 2023-06-25 00:03:22 +04:00
Ilya Lavrenov
975616980b
Removed benchmark_tool from openvino since opencv dependency is still not solved (#18206) 2023-06-24 12:00:31 +04:00
Taylor Yeonbok Lee
22ef2f4e6a
Fix bug in weight reorder. (#18224)
The original memory was overwritten unexpectedly because it was chekcing shared_ptr instead of actual buffer address
2023-06-24 00:35:07 -07:00
Ilya Lavrenov
e0ad99081e
Fixed compilation (#18220) 2023-06-24 02:52:14 +04:00
Evgeny Kotov
70e52cafd9
[GNA] Custom ops: GNAConvolution and GNAMaxPool (#18102) 2023-06-23 22:27:34 +00:00
Irina Efode
31b07c40d9
Add global config for test infra (#17547)
* [IE TESTS] Add Global test config for Subgraph base test

* Replace using option by function redefinition

* fix build

* remove extra changes for gna/template

* code style

* add nvidia to devices

* Fix debian

* remove nvidia
2023-06-24 01:07:36 +04:00
Ivan Tikhonov
eb43f40ca1
Revert "Enable ResolveNamesCollisions transformation in MOC (#18052)" (#18218)
This reverts commit 9630766e03.
2023-06-24 01:06:12 +04:00
Irina Efode
aefaf74a08
[CONFORMANCE][TOOLS] New SubgraphsDumper (#17836)
* New Subgraph Dumper -> Cache + Meta

* iCache tests

* tests_meta

* OpCache tests

* Move & refactor matchers

* fix all tests and refactor meta

* Prepare for review

* Add caching types

* Model testing + improvement

* Add ignored ports. Add tests for node utils

* fix build

* Fix compilation error

* fix arm build

* fix win?

* revert chanes in file util

* Update file_util.hpp

* Update constant.hpp
2023-06-24 00:12:47 +04:00
Mateusz Bencer
92fbf96300
Cache const-folded value for the same input connected to MultiSubGraphOp during PushConstantToSubgraph (#18067) 2023-06-23 17:45:55 +02:00
Ryszard Jezierski
8a2af2418f
fixed additional warnings (#18209) 2023-06-23 15:42:26 +00:00
Maciej Smyk
a3e4a1f730
[DOCS] Table directive update + Get Started fix for master (#18203) 2023-06-23 16:47:28 +02:00
Jan Iwaszkiewicz
a8ce60b651
Fix flake8 warnings and ignore VNE001 for Python samples (#18204)
* Ignore VNE001 for Python samples

* Add explanation

* Fix flake8 on wheel setup.py

* Fix onnx test reporting VNE001
2023-06-23 17:06:02 +04:00
Roman Lyamin
d00c7d30f9
[GPU] Reorder weights refactoring (#17787) 2023-06-23 16:01:55 +04:00
Roman Lyamin
cca8cf15ef
[GPU] softmax_kernel_items_class_optimized fix (#18178) 2023-06-23 16:00:11 +04:00
Tatiana Savina
e1195e39ed
[DOCS] Added local distribution libraries path (#18191)
* add relative path to the table

* add another column

* new table format

* fix build issue

* fix tab name

* remove old table

* format fixes

* change font

* change path windows

* change tabset name

* add arm and 86_64 tables

* remove list dots
2023-06-23 13:22:21 +02:00
Sofya Balandina
a9ef0b0678
Fix highlight_tables.py (#18090) 2023-06-23 15:12:42 +04:00
Irina Efode
098a4089c7
[CONFORMANCE] Fix type to find not run tests (#18196) 2023-06-23 15:09:01 +04:00
Ryszard Jezierski
284ab25f8f
[GNA] Remove warning suppression, fix all warnings (#17841)
* Removed /wd4661 suppression which had no effect

* Fixed /wd4018, /wd4099 and /wd4200 (signed/unsigned mismatch)

* Fixed /wd4018, /wd4099 and /wd4200

* Fixed -Wparentheses

* Fixed -Wcomment

* Fixed -Wint-in-bool-context

* Fixed -Wsign-compare
2023-06-23 13:07:02 +02:00
hyunback kim
3c378eb7ac
[GPU] Fix onednn implicit concat issue with reorder as input. (#18180)
* [GPU] Fix onednn implicit concat issue with reorder as input.

Fix for missed memory offset handling in onednn reorder.

Signed-off-by: hyunback <hyunback.kim@intel.com>
2023-06-23 10:46:50 +00:00
Mikhail Ryzhov
54e969012d
[GNA] Fixed gna_unit tests for debug build (#17792)
* fixed gna_unit tests for debug build
2023-06-23 11:30:18 +02:00
Evgeny Kotov
c7f2676961
[GNA] Sinking Transpose through Split and Concat without changing axis (#18121) 2023-06-23 11:28:11 +02:00
Alexandra Sidorova
db4e3bf83d
[Snippets] Added tailing processing support for splitted Loops (#17878) 2023-06-23 12:58:53 +04:00
Ivan Tikhonov
9630766e03
Enable ResolveNamesCollisions transformation in MOC (#18052)
* ResolveNamesCollisions transformation refactoring; enable it in MOC

* fix the description

* call ResolveNamesCollisions transformation in the frontends; resolve review comments

* Resolve review comments
2023-06-23 11:56:26 +04:00
Oleg Pipikin
48b47e754f
Rename ngraph with ov in common_test_utils (#17905)
* Rename ngraph with ov in common_test_utils

* Fix comments

* Delete opset includes from commonTestUtils

* Fix CI and code style

* Apply comments

* Fix CI and apply comments
2023-06-23 09:51:47 +02:00
Ilya Lavrenov
b7e14deddd
Revert "[PyOV] Model wrappers on Python side (#18027)" (#18201)
This reverts commit b022137d80.
2023-06-23 11:44:39 +04:00
Mateusz Mikolajczyk
f9e4e32118
[PT FE] Extend aten::pad transformation to accept aten::reflection_pad2d (#18117)
* Refactor pad transformation

* Fix conflict

* fix changes

* Add parentheses

* Remove rt_info
2023-06-23 10:23:15 +04:00
Ilya Lavrenov
15e69c280a
Used pip wheel to build OpenVINO wheel (#18029)
* Used pip wheel to build OpenVINO wheel

* Improvements

* Added python api properly into deb / rpm packages

* Use cmake -E variant from cmake 3.13

* Improvements to fix CI

* Some refactoring

* Don't use developer package for scripts projects

* Final fixes
2023-06-23 09:17:02 +04:00
Xuejun Zhai
1b495e3221
[Remote Context] Add operate () overload method in class RemoteContext (#18186)
* [Remote Context] Add operate () overload method in class RemoteContext to check is initialized or not

Signed-off-by: Zhai, Xuejun <xuejun.zhai@intel.com>

* [Remote Context] fix format issue

Signed-off-by: Zhai, Xuejun <xuejun.zhai@intel.com>

---------

Signed-off-by: Zhai, Xuejun <xuejun.zhai@intel.com>
2023-06-23 09:10:55 +04:00
Łukasz Mielicki
2983b6abb0
Fix duplicate -Wno-all (#18197)
Trivial fix to a duplicate flag.
2023-06-23 09:04:15 +04:00
Ekaterina Aidova
df0bd18ed2
[PT FE]: fix constant folding for dequantization (#18190)
* [PT FE]: fix constant folding for dequantization

* add test
2023-06-23 06:41:32 +02:00
Steve Yoo
d13adf7ae8
Allow new shape infer of ShapeOf (#17912)
* Fixed to use input shape rank when calculating output layout, added unit test case

* Fixed to use input shape rank when creating shape_of primitive, added functional tests
2023-06-22 21:04:41 -07:00
Maciej Smyk
ad0ac4bfb6
[DOCS] Docker and GPU update for master (#18192)
port: https://github.com/openvinotoolkit/openvino/pull/17851
2023-06-22 18:07:05 +02:00