Skip to content

Commit a091846

Browse files
More MO clean-up (#28237)
### Details: - *item1* - *...* ### Tickets: - *ticket-id*
1 parent 362f073 commit a091846

Some content is hidden

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

50 files changed

+42
-3826
lines changed

.github/components.yml

-15
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ IR_FE:
110110

111111
ONNX_FE:
112112
revalidate:
113-
- MO
114113
- OVC
115114
- ONNX_RT
116115
build:
@@ -119,15 +118,13 @@ ONNX_FE:
119118

120119
PDPD_FE:
121120
revalidate:
122-
- MO
123121
- OVC
124122
build:
125123
- CPU
126124
- Python_API
127125

128126
TF_FE:
129127
revalidate:
130-
- MO
131128
- OVC
132129
build:
133130
- CPU
@@ -136,15 +133,13 @@ TF_FE:
136133

137134
TFL_FE:
138135
revalidate:
139-
- MO
140136
- OVC
141137
build:
142138
- CPU
143139
- Python_API
144140

145141
PyTorch_FE:
146142
revalidate:
147-
- MO
148143
- OVC
149144
build:
150145
- CPU
@@ -153,7 +148,6 @@ PyTorch_FE:
153148

154149
JAX_FE:
155150
revalidate:
156-
- MO
157151
- OVC
158152
build:
159153
- CPU
@@ -171,7 +165,6 @@ C_API:
171165
Python_API:
172166
revalidate:
173167
- samples
174-
- MO
175168
- OVC
176169
- tools
177170
- TF_FE
@@ -228,14 +221,6 @@ OVC:
228221
- Python_API
229222
- TOKENIZERS # TF_FE tests depends on tokenizers build
230223

231-
MO:
232-
revalidate:
233-
- PyTorch_FE
234-
- TF_FE
235-
build:
236-
- Python_API
237-
- TOKENIZERS # TF_FE tests depends on tokenizers build
238-
239224
tools:
240225
build:
241226
- CPU

.github/github_org_control/config.json

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
"openvino-tf-frontend-maintainers": "category: TF FE",
3737
"openvino-onnx-frontend-maintainers": "category: ONNX FE",
3838
"openvino-ie-tests-maintainers": "category: IE Tests",
39-
"openvino-mo-maintainers": "category: MO",
4039
"openvino-ovc-maintainers": "category: OVC",
4140
"openvino-ngraph-maintainers": "category: Core",
4241
"openvino-scripts-maintainers": "category: build",

.github/workflows/job_python_unit_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,11 @@ jobs:
133133
--ignore=${INSTALL_TEST_DIR}/onnx/test_python/test_zoo_models.py
134134
135135
- name: OVC unit tests
136-
if: fromJSON(inputs.affected-components).MO.test
136+
if: fromJSON(inputs.affected-components).OVC.test
137137
run: python3 -m pytest -s ${INSTALL_TEST_DIR}/ovc/unit_tests --junitxml=${INSTALL_TEST_DIR}/TEST-OpenVinoConversion.xml
138138

139139
- name: OVC Python API Tests
140-
if: fromJSON(inputs.affected-components).MO.test
140+
if: fromJSON(inputs.affected-components).OVC.test
141141
run: |
142142
# Import 'test_utils' installed in '<package_test>/tests/python/openvino'
143143
export PYTHONPATH=${INSTALL_TEST_DIR}/python

.github/workflows/windows_vs2019_release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ jobs:
358358
--ignore=${{ env.INSTALL_TEST_DIR }}/onnx/test_python/test_zoo_models.py
359359
360360
- name: OVC Python API Tests
361-
if: fromJSON(needs.smart_ci.outputs.affected_components).MO.test
361+
if: fromJSON(needs.smart_ci.outputs.affected_components).OVC.test
362362
shell: cmd
363363
run: |
364364
:: Used for 'test_utils' installed in '<test_package>\python\openvino\test_utils'
@@ -377,7 +377,7 @@ jobs:
377377
python3 -m pytest ${{ env.LAYER_TESTS_INSTALL_DIR }}/py_frontend_tests --junitxml=${{ env.INSTALL_TEST_DIR }}/TEST-test_py_fontend.xml
378378
379379
- name: OVC unit tests
380-
if: fromJSON(needs.smart_ci.outputs.affected_components).MO.test
380+
if: fromJSON(needs.smart_ci.outputs.affected_components).OVC.test
381381
shell: cmd
382382
run: python3 -m pytest -s ${{ env.INSTALL_TEST_DIR }}/ovc/unit_tests --junitxml=${{ env.INSTALL_TEST_DIR }}/TEST-OpenVinoConversion.xml
383383

.gitignore

-11
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,6 @@ coverage
6060
.npm
6161

6262
# Artifacts
63-
/tools/mo/*.bin
64-
/tools/mo/*.xml
65-
/tools/mo/*.json
66-
/tools/mo/*.so
67-
/tools/mo/*.txt
68-
/tools/mo/*.pb
69-
/tools/mo/*.pbtxt
70-
/tools/mo/!CMakeLists.txt
71-
/tools/mo/*.mapping
72-
/tools/mo/*.dat
73-
/tools/mo/*.svg
7463
/src/plugins/intel_cpu/tools/commit_slider/*.json
7564
/src/plugins/intel_cpu/tools/commit_slider/slider_cache/*
7665
/src/plugins/intel_cpu/thirdparty/ComputeLibrary/build/*

cmake/dependencies.cmake

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
cmake_policy(SET CMP0054 NEW)
66

7-
# TODO: fix it, outside of source dir MO cannot find TBB dependency
87
ov_set_temp_directory(TEMP "${CMAKE_SOURCE_DIR}")
98

109
## Intel OMP package

docs/dev/ci/github_actions/adding_tests.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ An example step from [`job_python_unit_tests.yml`](./../../../../.github/workflo
4141
steps:
4242
...
4343
- name: OVC unit tests
44-
if: fromJSON(inputs.affected-components).MO.test
44+
if: fromJSON(inputs.affected-components).OVC.test
4545
run: python3 -m pytest -s ${INSTALL_TEST_DIR}/ovc/unit_tests --junitxml=${INSTALL_TEST_DIR}/TEST-OpenVinoConversion.xml
4646
...
4747
```
4848
The step includes:
4949
* a `name`: `OVC unit tests`.
50-
* an `if` condition: `fromJSON(inputs.affected-components).MO.test`
50+
* an `if` condition: `fromJSON(inputs.affected-components).OVC.test`
5151
* This step is executed only if the condition is `true`.
5252
* This is a part of the Smart CI system implemented for the OpenVINO workflow. Read the [Smart CI Overview](./smart_ci.md) to learn about the system and its usage.
5353
* a `run` section with commands to be executed.

docs/dev/ci/github_actions/smart_ci.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ files inside src/frontends/tensorflow:
5959
changed_component_names: {'TF_FE'} # TF_FE is an alias we chose for TensorFlow Frontend component
6060
affected_components={
6161
"TF_FE": {"test": true, "build": true},
62-
"MO": {"test": true, "build": true},
62+
"OVC": {"test": true, "build": true},
6363
"CPU": {"build": true},
6464
"Python_API": {"build": true},
6565
...
@@ -115,7 +115,7 @@ This file describes the relationships between components, for example:
115115
```yaml
116116
PyTorch_FE: # Component name
117117
revalidate: # Defines the list of components to revalidate (build + test) if the component above was changed
118-
- MO # This component depends on PyTorch_FE and requires full revalidation
118+
- OVC # This component depends on PyTorch_FE and requires full revalidation
119119
build: # Defines the list of components to build if the PyTorch_FE was changed (test runs for them are skipped)
120120
- CPU # This component and the component below must be built if PyTorch_FE was changed
121121
- Python_API
@@ -124,8 +124,8 @@ For the example above, the following pipeline will be executed on changes applie
124124
125125
* Build for PyTorch_FE
126126
* Tests for PyTorch_FE
127-
* Build for MO
128-
* Tests for MO
127+
* Build for OVC
128+
* Tests for OVC
129129
* Build for CPU
130130
* Build for Python_API
131131

docs/dev/pypi_publish/pypi-openvino-dev.md

-190
This file was deleted.

scripts/utils/create_package.py

-18
This file was deleted.

0 commit comments

Comments
 (0)