Commit Graph

10202 Commits

Author SHA1 Message Date
Irina Efode
54d3641baa
Fix reportgeneration in CI (#16113) 2023-03-06 12:05:47 +01:00
Xiping Yan
e6a65f406d
[CPU] Fix warning: sequence point strict aliasing (#15989)
* Remove sequence-point and strict-aliasing

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>

* Replace reinterpret_cast with memcpy to fix warning of -Wstrict-aliasing

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>

* Fix warning: -Wsequence-point

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>

* Fix functional test warning: -Wstrict-aliasing

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>

* Lost ft1 declare.

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>

* Fix warnging: strict-aliasing.

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>

* Fix warnging: strict-aliasing. ie_test_utils

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>

* fix float name error.

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>

* Update src/plugins/intel_cpu/src/nodes/unique.cpp

Co-authored-by: Maksim Kutakov <maxim.kutakov@gmail.com>

* Update src/plugins/intel_cpu/src/nodes/unique.cpp

Co-authored-by: Maksim Kutakov <maxim.kutakov@gmail.com>

* 1: Maybe uint16_t is more reasonable;
2: Replace int16_t with bfloat16_t;

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>

* fix build error.

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>

---------

Signed-off-by: Yan, Xiping <xiping.yan@intel.com>
Co-authored-by: Maksim Kutakov <maxim.kutakov@gmail.com>
2023-03-06 10:57:12 +01:00
Sebastian Golebiewski
20c0927ff9
[DOCS] Better statement about MO extensions as internal API [Recreating #14062] (#15679)
Recreating #14062
2023-03-06 10:27:42 +01:00
Maksim Kutakov
b9a48f12c8
[CPU] Prevent out of bounds read inside Graph::InferDynamic (#16067) 2023-03-06 12:52:37 +04:00
Xiping Yan
8b66b35bf7
[CPU]Remove C4250 warning suppress, and fix the corresponding warning. (#15966) 2023-03-06 12:43:53 +04:00
Tomasz Dołbniak
4486470e02
TopK v11 core operator (#15910) 2023-03-06 08:31:18 +01:00
Xuejun Zhai
9b97235902
Xuejun/remove api in ov any (#15667)
* [Remove APIs] remove ov::any api  &

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

* [Remove APIs] remove ov::any api

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

* [Remove APIs] remove interfaces in ov::any  Base* operator->() & const Base* operator->()

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

* [Remove APIs] remove ov::any interfaces Base* get() & const Base* get()

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

* [Remove APIs] remove ov::any interfaces call(const Any& any) & dynamic_pointer_cast(const ::ov::Any& any) & static_pointer_cast(const ::ov::Any& any)

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

* [Remove APIs] fix code format issues in ov::any

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

* [Remove APIs] fix review issue

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

* [Remove APIs] clear code

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

* [Remove APIs] fix review issue

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

* [Remove APIs] fix compiler issue

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

* [Remove APIs] fix compiler issue

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

* [Remove APIs] fix compiler issue

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

* Fix variant error

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

---------

Signed-off-by: xuejun <Xuejun.Zhai@intel.com>
Signed-off-by: xuejun <xuejun.zhai@intel.com>
2023-03-06 10:24:08 +04:00
Ilya Lavrenov
79d3ff352e
Migration to latest versions of submodules (#16103) 2023-03-06 10:22:34 +04:00
Shen, Wanglei
e605a4c344
Create streams info table based on processor type table (#15571)
* enable streams info table based on CPU mapping

* add detail processor info for mix stream

* fix code style issue

* fix typo

* fix code style issue for Android build

* update description of streams info table

* move streams info related function to new file

* remove duplicated definition

* add description for parameters of get_streams_info_table()

* update test case file

* fix windows build issue

* fix windows build issue

* fix windows build issue

* fix typo

* update latency mode for hybrid platform

* update limit threads for latency

* update latency mode for 2 sockets platform
2023-03-06 14:06:41 +08:00
Piotr Krzemiński
0860db0dc3
[PT FE] Add aten::ArgSort & aten::Sort (#15769)
* [PT FE] Add aten::argsort implementation & tests

* [PT FE] Fix formatting

* [PT FE] Fix incorrect node type for Gather

* [PT FE] Fix Reshape missing argument

* [PT FE] Simplify syntax, fix int/int64 conversion error

* [PT FE] Fix argsort incorrectly sorting negative dimension, fix tests

* [PT FE] Revert modify test class

* [PT FE] Fix formatting of argsort

* [PT FE] Fix define macro style

* [PT FE] Add missing EOF

* [PT FE] Add stable==false check, add support for different constructor calls

* [PT FE] Add aten::sort implementation & tests

* [PT FE] Apply style changes, add XFail test for stable sorting

* Update sort.cpp

* Update sort.cpp

* [PT FE] Apply style changes from aten::sort t PR

* Update test_argsort.py

* [PT FE] Apply suggested modifications

* Update test_argsort.py

* [PT FE] Apply review suggestions, add tests and extract sort method to utils

* [PT FE] Use utils sort function to implement argsort

* [PT FE] Fix input size check 4->5

* [PT FE] Implement improved tests

* [PT FE] Implement improved tests

* [PT FE] Add xfail to not yet supported tests

* [PT FE] Merge 2 implementations of sort and argsort into a single file

* [PT FE] Remove redundant sort_elements from utils

* [PT FE] Add num_inputs_check

---------

Co-authored-by: Maxim Vafin <maxim.vafin@intel.com>
2023-03-05 20:12:32 +01:00
Ilya Lavrenov
e1fbb7d768
Fixes for multi-config generators (#16097) 2023-03-05 10:46:53 +04:00
Ilya Lavrenov
9c4c559909
Fixed compilation on Debian 11 with gcc 12.2 (#16096) 2023-03-04 20:45:04 +04:00
mei, yang
32b177e9eb
remove python dependency gast in paddle test (#16017) 2023-03-04 20:41:39 +04:00
Ekaterina Aidova
a1cde2e790
[PT FE]: fix padding vaqlue dtype (#16087) 2023-03-04 11:08:56 +00:00
Ekaterina Aidova
0edbc5ca60
[PT FE]: fix arange dtype if it is not provided (#16084) 2023-03-04 10:17:09 +01:00
Andrei Kochin
6a39d466a4
[MO] Update reminder message for 2023.0 (#16094) 2023-03-04 13:13:11 +04:00
Sebastian Golebiewski
de50251ceb
notebooks update (#16090)
20230302220806
2023-03-03 18:23:22 +01:00
Anastasia Kuporosova
b130b73f80
[Docs][PyOV] Add docstrings for transformations + python examples for stateful model (#15978)
* [Docs][PyOV] Add docstrings for transformation + python examples for stateful

* add snippets + small improvements
2023-03-03 17:07:34 +01:00
Irina Efode
190b64a0af
[CONFORMANCE] Add check the crash or non zero status in python runner (#16081)
* [CONFORMANCE] Add check the crash or non zero status in python runner

* Update run_parallel.py
2023-03-03 15:23:23 +04:00
Irina Efode
3b6bb06f1d
Update merge script to work with outdated reports (#16078)
* Update merge script to work with outdated xml

* change report name
2023-03-03 11:02:04 +00:00
Chen Xu
35dacb370a
[CPU] Fix issue about overwriting register names (#15815) 2023-03-03 10:50:33 +00:00
Irina Efode
4e8590bf9b
Add correct handling of conformance processes (#16031)
* Update run_parallel.py

* Add correct handling of conformance processes

* remove extra

* Update run_parallel.py
2023-03-03 12:18:53 +04:00
Fang Xu
7deb9090bf
[CPU] Enable conditional compilation for graph optimizer (#15478) 2023-03-03 11:55:39 +04:00
Mateusz Tabaka
84a42cde61
[CPU] Add support for dynamic shapes in RDFT (#14458) 2023-03-03 10:43:29 +04:00
Anastasiia Pnevskaia
9efdb38b96
convert_model() legacy extensions fix (#15742)
* Fixed legacy extensions passing to MO tool.

* Added tests.

* Corrected test.

* Add debug print.

* Moved tests to layer tests.

* Added comment.

* Moved legacy ext tests to separate file. Fixed tmp .pb file cleaning.

* Small correction.

* Run MO Python API tests directory in CI.

* Small fix.

* Fix for case of splitted output.

* Corrected imports.

* Corrected imports.

* Added run of legacy extensions tests from subprocess.
2023-03-03 09:59:30 +04:00
Maksim Kutakov
fc98454174
[CPU] Internal dynamism support for extensions (#15795) 2023-03-03 09:00:56 +04:00
yanlan song
33e0b8caeb
rework the config and better follow new api (#15920)
* rework the config to follow new api

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

* fix tests

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

* clean up code

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

* fix missing property

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

* fix case failure caused by name compliance

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

* clean up code

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

* workaround negative values with unsigned type

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

* fix wrong exception type

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

* refactor config/metric

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

* apply review comments

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

---------

Signed-off-by: fishbell <bell.song@intel.com>
2023-03-03 10:04:28 +08:00
Steve Yoo
a16f1923d7
Added recalculating processing order if it is not correct (#15987) 2023-03-02 14:40:15 -08:00
Kelvin Choi
6979c06ca1
[GPU] Support non constant input for Pad (#15697)
* [GPU] Support non constant input for Pad

* Refactor by comments
2023-03-02 10:38:43 -08:00
Ilya Lavrenov
392e0fda34
Added missed licenses to openvino-dev (#16057) 2023-03-02 21:18:39 +04:00
Karol Blaszczak
c98591f8a8
Update prerelease_information.md (#16056) 2023-03-02 18:13:30 +01:00
Ilya Lavrenov
4d925e0a3d
Test GPU plugin arm64 build via Android precommit (#16055) 2023-03-02 21:06:36 +04:00
Ilya Lavrenov
0a31bdc112
Fixed OpenMP + debian package code-path (#16058) 2023-03-02 21:06:15 +04:00
Ilya Lavrenov
df03f8bfce
Removed fetch depth from Azure Pipelines (#16059) 2023-03-02 21:05:54 +04:00
Przemyslaw Wysocki
8cbd8b8e03
Remove setuptools upperbound (#16054) 2023-03-02 20:58:39 +04:00
Zhang Yi
0e9b133de5
[CPU] StridedSlice fix execution for empty output tensor (#16045)
* stridedslice skip execution with 0 dims

* use isExecutable & add subgraph tests

* remove useless code
2023-03-02 15:56:25 +00:00
hyunback kim
cb7eeadd62
[GPU] Integration oneDNN3.1 (#15804)
* [GPU] Integration oneDNN3.1
* [GPU] Add os_iyx_osv8 format

Signed-off-by: hyunback <hyunback.kim@intel.com>
2023-03-03 00:18:42 +09:00
bstankix
226bc301dc
Graph builder modal (#16061)
* Bugfix and restyle Graph Builder

* Add disclaimer box to modal footer

* Change color gradient for pracision graphs

* Add default preselections to graph settings
2023-03-02 15:34:05 +01:00
Vladislav Golubev
57cf23857a
[CPU] Split: dynamic split_lengths values support (#15914) 2023-03-02 14:19:45 +00:00
Ilya Lavrenov
7be7f25566
Added TF / TF Lite in API reference docs (#16023) 2023-03-02 16:45:18 +04:00
Anastasiia Pnevskaia
6185114bc4
Clearing of CustomReplacementRegistry.registry in convert_model() (#15893)
* Clearing of CustomReplacementRegistry.registry.

* Added test.
2023-03-02 14:49:45 +04:00
Vitaliy Urusovskij
18763f66ac
Detect loops in topological_sort (#15688) 2023-03-02 13:21:52 +04:00
Ilya Churaev
65a45a6232
Fix coverity uninialized variable (#16039) 2023-03-02 13:20:14 +04:00
Ilya Lavrenov
0d798b7431
Building GPU plugin for Linux ARM64 (#16008)
* Building GPU plugin for ARM64

* changed order of headers

* Fixed clang-format
2023-03-02 12:43:33 +04:00
Roman Lyamin
24b0baa0d1
[GPU] Added support mixed input formats for Select (#16009) 2023-03-02 09:19:02 +04:00
Vladimir Paramuzov
27ac7d9092
[GPU] backend independent code for fuse params in program_node (#16028) 2023-03-02 09:18:29 +04:00
Wang, Yang
99a1800901
Fix the AUTO loadnetwork failure triggered by AUTO:-xxx (#15747)
* Check if the device is supported when AUTO retrieves the device list based on the ov::device::priorities.

* Update the logic to handle the situation like -d AUTO:-CPU to benchmark APP.

* Remove MYRIAD and add NVIDIA for AUTO supported devices.

---------

Co-authored-by: Chen Peter <peter.chen@intel.com>
Co-authored-by: Shen, Wanglei <wanglei.shen@intel.com>
2023-03-02 13:16:12 +08:00
Liubov Talamanova
c09b2ff8b1
[POT] Fix POT version in setup.py (#16021) 2023-03-01 22:30:26 +00:00
Ilya Lavrenov
5422242e86
Fixed compilation with gcc-7 (#15876)
* Fixed compilation with gcc-7

* Update src/core/reference/include/ngraph/runtime/reference/eye.hpp

Co-authored-by: Katarzyna Mitrus <katarzyna.mitrus@intel.com>

* returned f16 and bf16

---------

Co-authored-by: Katarzyna Mitrus <katarzyna.mitrus@intel.com>
2023-03-01 23:08:10 +04:00
Ilya Lavrenov
3c67509fc8
Removed custom cmake message (#16030) 2023-03-01 19:25:37 +04:00