Skip to content

Commit d445b4c

Browse files
authored
Merge branch 'master' into issue#22949
2 parents daca33f + dbf87c1 commit d445b4c

File tree

334 files changed

+5712
-2751
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

334 files changed

+5712
-2751
lines changed

.github/CODEOWNERS

+6-1
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,14 @@
2929
/src/bindings/python/ @openvinotoolkit/openvino-ie-python-api-maintainers
3030
/src/bindings/c/ @openvinotoolkit/openvino-c-api-maintainers
3131
/src/bindings/js/ @openvinotoolkit/openvino-js-api-maintainers
32-
/src/common/*transformations/ @openvinotoolkit/openvino-ie-transformations-maintainers
3332
/src/core/ @openvinotoolkit/openvino-ngraph-maintainers
3433

34+
# OpenVINO Transformations
35+
/src/common/*transformations/ @openvinotoolkit/openvino-ie-transformations-maintainers
36+
/src/core/src/pass/ @openvinotoolkit/openvino-ie-transformations-maintainers
37+
/src/core/src/pattern/ @openvinotoolkit/openvino-ie-transformations-maintainers
38+
/src/core/include/openvino/pass/ @openvinotoolkit/openvino-ie-transformations-maintainers
39+
3540
# OpenVINO Samples:
3641
/samples/c/ @openvinotoolkit/openvino-samples-maintainers @openvinotoolkit/openvino-c-api-maintainers
3742
/samples/cpp/ @openvinotoolkit/openvino-samples-maintainers @openvinotoolkit/openvino-maintainers

.github/components.yml

-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ CPU:
2727
revalidate:
2828
- C_API
2929
- Python_API
30-
- JS_API
3130
- samples
3231
- ONNX_RT
3332
- PyTorch_FE
@@ -106,7 +105,6 @@ IR_FE:
106105
revalidate:
107106
- C_API
108107
- Python_API
109-
- JS_API
110108
- samples
111109
build:
112110
- CPU
@@ -176,8 +174,6 @@ Python_API:
176174
- PyTorch_FE
177175

178176
JS_API:
179-
revalidate:
180-
- samples
181177
build:
182178
- CPU
183179
- IR_FE

.github/labeler.yml

+3
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,9 @@
166166
'category: transformations':
167167
- 'src/common/transformations/**/*'
168168
- 'src/common/offline_transformations/**/*'
169+
- 'src/core/pattern/**/*'
170+
- 'src/core/pass/**/*'
171+
- 'src/core/include/openvino/pass/**/*'
169172

170173
'category: licensing':
171174
- 'licensing/**/*'

.github/workflows/coverity.yml

-2
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,7 @@ jobs:
8787
-DENABLE_CPPLINT=OFF \
8888
-DENABLE_STRICT_DEPENDENCIES=OFF \
8989
-DCMAKE_VERBOSE_MAKEFILE=ON \
90-
-DBUILD_nvidia_plugin=OFF \
9190
-DENABLE_FASTER_BUILD=OFF \
92-
-DOPENVINO_EXTRA_MODULES=${OPENVINO_CONTRIB_REPO}/modules \
9391
-S ${OPENVINO_REPO} \
9492
-B ${BUILD_DIR}
9593

.github/workflows/job_python_unit_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ jobs:
270270
run: |
271271
# requires 'unit_tests' from 'mo'
272272
export PYTHONPATH=${INSTALL_TEST_DIR}/mo
273-
python3 -m pytest ${LAYER_TESTS_INSTALL_DIR}/tensorflow_tests/ -m precommit_tf_fe -n logical --junitxml=${INSTALL_TEST_DIR}/TEST-tf_fe.xml
273+
python3 -m pytest ${LAYER_TESTS_INSTALL_DIR}/tensorflow_tests/ -m precommit -n logical --junitxml=${INSTALL_TEST_DIR}/TEST-tf_fe.xml
274274
env:
275275
TEST_DEVICE: CPU
276276
TEST_PRECISION: FP16

.github/workflows/linux.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,8 @@ jobs:
223223
- name: Cmake & Build - OpenVINO Contrib
224224
run: |
225225
cmake \
226-
-DBUILD_nvidia_plugin=OFF \
227226
-DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" \
228-
-DOPENVINO_EXTRA_MODULES=${OPENVINO_CONTRIB_REPO}/modules \
227+
-DOPENVINO_EXTRA_MODULES="${OPENVINO_CONTRIB_REPO}/modules/java_api;${OPENVINO_CONTRIB_REPO}/modules/custom_operations" \
229228
-S ${OPENVINO_REPO} \
230229
-B ${BUILD_DIR}
231230
cmake --build ${BUILD_DIR} --parallel --config ${{ env.CMAKE_BUILD_TYPE }}

.github/workflows/linux_arm64.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,8 @@ jobs:
228228
- name: Cmake & Build - OpenVINO Contrib
229229
run: |
230230
cmake \
231-
-DBUILD_nvidia_plugin=OFF \
232231
-DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" \
233-
-DOPENVINO_EXTRA_MODULES=${OPENVINO_CONTRIB_REPO}/modules \
232+
-DOPENVINO_EXTRA_MODULES="${OPENVINO_CONTRIB_REPO}/modules/java_api;${OPENVINO_CONTRIB_REPO}/modules/custom_operations" \
234233
-S ${OPENVINO_REPO} \
235234
-B ${BUILD_DIR}
236235
cmake --build ${BUILD_DIR} --parallel --config ${{ env.CMAKE_BUILD_TYPE }}

.github/workflows/linux_riscv.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
107107
# install compilers to build OpenVINO for RISC-V 64
108108
apt --assume-yes install gcc-riscv64-linux-gnu g++-riscv64-linux-gnu
109-
apt --assume-yes install gcc g++ python3-pip python3-venv python3-dev
109+
apt --assume-yes install -yf gcc g++ python3-pip python3-venv python3-dev
110110
# generic dependencies
111111
apt --assume-yes install cmake ccache ninja-build fdupes patchelf
112112

.github/workflows/mac.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,8 @@ jobs:
180180
- name: Cmake & Build - OpenVINO Contrib
181181
run: |
182182
cmake \
183-
-DBUILD_nvidia_plugin=OFF \
184-
-DBUILD_java_api=OFF \
185183
-DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" \
186-
-DOPENVINO_EXTRA_MODULES=${{ env.OPENVINO_CONTRIB_REPO }}/modules \
184+
-DOPENVINO_EXTRA_MODULES=${{ env.OPENVINO_CONTRIB_REPO }}/modules/custom_operations \
187185
-S ${{ env.OPENVINO_REPO }} \
188186
-B ${{ env.BUILD_DIR }}
189187
cmake --build ${{ env.BUILD_DIR }} --parallel --config ${{ env.CMAKE_BUILD_TYPE }}

.github/workflows/mac_arm64.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,8 @@ jobs:
179179
- name: Cmake & Build - OpenVINO Contrib
180180
run: |
181181
cmake \
182-
-DBUILD_nvidia_plugin=OFF \
183-
-DBUILD_java_api=OFF \
184182
-DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" \
185-
-DOPENVINO_EXTRA_MODULES=${{ env.OPENVINO_CONTRIB_REPO }}/modules \
183+
-DOPENVINO_EXTRA_MODULES=${{ OPENVINO_CONTRIB_REPO }}/modules/custom_operations \
186184
-S ${{ env.OPENVINO_REPO }} \
187185
-B ${{ env.BUILD_DIR }}
188186
cmake --build ${{ env.BUILD_DIR }} --parallel --config ${{ env.CMAKE_BUILD_TYPE }}

.github/workflows/windows.yml

+2-16
Original file line numberDiff line numberDiff line change
@@ -149,15 +149,14 @@ jobs:
149149
run: |
150150
cmake -G "${{ env.CMAKE_GENERATOR }}" `
151151
-DENABLE_CPPLINT=OFF `
152-
-DBUILD_nvidia_plugin=OFF `
153152
-DBUILD_SHARED_LIBS=ON `
154153
-DENABLE_TESTS=ON `
155154
-DCMAKE_COMPILE_WARNING_AS_ERROR=ON `
156155
-DENABLE_STRICT_DEPENDENCIES=OFF `
157156
-DENABLE_PYTHON=ON `
158157
-DCMAKE_DISABLE_FIND_PACKAGE_PkgConfig=ON `
159158
-DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" `
160-
-DOPENVINO_EXTRA_MODULES=${{ env.OPENVINO_CONTRIB_REPO }}/modules `
159+
-DOPENVINO_EXTRA_MODULES="${{ env.OPENVINO_CONTRIB_REPO }}/modules/custom_operations;${{ env.OPENVINO_CONTRIB_REPO }}/modules/java_api" `
161160
-S ${{ env.OPENVINO_REPO }} `
162161
-B ${{ env.BUILD_DIR }}
163162
@@ -207,24 +206,11 @@ jobs:
207206
}
208207
Compress-Archive @compress
209208
210-
- name: Cmake & Build - OpenVINO Contrib
211-
if: ${{ 'false' }} # Ticket: 122441
212-
run: |
213-
cmake `
214-
-DBUILD_nvidia_plugin=OFF `
215-
-DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" `
216-
-DOPENVINO_EXTRA_MODULES=${{ env.OPENVINO_CONTRIB_REPO }}/modules `
217-
-S ${{ env.OPENVINO_REPO }} `
218-
-B ${{ env.BUILD_DIR }}
219-
cmake --build ${{ env.BUILD_DIR }} --parallel --config ${{ env.CMAKE_BUILD_TYPE }} --verbose
220-
221209
- name: CMake configure, build and install - OpenVINO JS API
222210
if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API
223211
run:
224212
cmake -DCPACK_GENERATOR=NPM -DENABLE_SYSTEM_TBB=OFF -UTBB* -S ${{ env.OPENVINO_REPO }} -B ${{ env.BUILD_DIR }}
225-
226213
cmake --build ${{ env.BUILD_DIR }} --parallel
227-
228214
cmake -DCMAKE_INSTALL_PREFIX=${{ env.INSTALL_DIR_JS }} -P ${{ env.BUILD_DIR }}/cmake_install.cmake
229215

230216
#
@@ -618,7 +604,7 @@ jobs:
618604
run: |
619605
:: requires 'unit_tests' from 'tools/mo'
620606
set PYTHONPATH=${{ env.INSTALL_TEST_DIR }}\mo;%PYTHONPATH%
621-
python3 -m pytest ${{ env.LAYER_TESTS_INSTALL_DIR }}/tensorflow_tests/ -n logical -m precommit_tf_fe --junitxml=${{ env.INSTALL_TEST_DIR }}/TEST-tf_fe.xml
607+
python3 -m pytest ${{ env.LAYER_TESTS_INSTALL_DIR }}/tensorflow_tests/ -n logical -m precommit --junitxml=${{ env.INSTALL_TEST_DIR }}/TEST-tf_fe.xml
622608
env:
623609
TEST_DEVICE: CPU
624610
TEST_PRECISION: FP16

docs/articles_en/documentation/openvino-ir-format/operation-sets/available-opsets/opset14.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Table of Contents
103103
* :doc:`I420toRGB <../operation-specs/image/i420-to-rgb-8>`
104104
* :doc:`If <../operation-specs/condition/if-8>`
105105
* :doc:`Interpolate <../operation-specs/image/interpolate-11>`
106-
* :doc:`Inverse <../operation-specs/matrix/Inverse_14>`
106+
* :doc:`Inverse <../operation-specs/matrix/inverse-14>`
107107
* :doc:`IRDFT <../operation-specs/signals/irdft-9>`
108108
* :doc:`IsInf <../operation-specs/comparison/isinf-10>`
109109
* :doc:`IsNaN <../operation-specs/comparison/isnan-10>`

docs/articles_en/documentation/openvino-ir-format/operation-sets/operation-specs/matrix/Inverse_14.rst

-135
This file was deleted.

0 commit comments

Comments
 (0)