Skip to content

Commit

Permalink
Merge branch 'master' into river/ppp_output_csc
Browse files Browse the repository at this point in the history
  • Loading branch information
riverlijunjie committed Jan 10, 2024
2 parents 40ab628 + 25ce1ce commit 5b3e882
Show file tree
Hide file tree
Showing 564 changed files with 1,589 additions and 123,843 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/job_openvino_js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ jobs:

- name: Test OpenVINO JS API
working-directory: ${{ env.OPENVINO_JS_DIR }}/node
run: npm test
run: npm run test
2 changes: 0 additions & 2 deletions .github/workflows/linux_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,7 @@ jobs:
cmake \
-DCPACK_GENERATOR=NPM \
-DENABLE_SYSTEM_TBB=OFF -UTBB* \
-DOV_CPU_ARM_TARGET_ARCH="armv8.2-a" \
-DENABLE_INTEL_GPU=OFF \
-DENABLE_MLAS_FOR_CPU=ON \
-S ${OPENVINO_REPO} \
-B ${BUILD_DIR}
Expand Down
18 changes: 10 additions & 8 deletions .github/workflows/mac_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,14 @@ jobs:
cmake --build ${{ env.BUILD_DIR }} --parallel --config ${{ env.CMAKE_BUILD_TYPE }}
- name: CMake configure, build and install - OpenVINO JS API
if: ${{ 'false' }} # 128446
# if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API
run:
cmake -DCPACK_GENERATOR=NPM -DENABLE_SYSTEM_TBB=OFF -UTBB* -S ${{ env.OPENVINO_REPO }} -B ${{ env.BUILD_DIR }}
if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API
run: |
cmake \
-DCPACK_GENERATOR=NPM \
-DENABLE_SYSTEM_TBB=OFF -UTBB* \
-DENABLE_INTEL_GPU=OFF \
-S ${{ env.OPENVINO_REPO }} \
-B ${{ env.BUILD_DIR }}
cmake --build ${{ env.BUILD_DIR }} --parallel
Expand All @@ -220,8 +224,7 @@ jobs:
if-no-files-found: 'error'

- name: Upload openvino js package
if: ${{ 'false' }} # 128446
# if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API
if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API
uses: actions/upload-artifact@v3
with:
name: openvino_js_package
Expand All @@ -238,8 +241,7 @@ jobs:
JS_API:
name: OpenVINO JS API
needs: [ Build, Smart_CI ]
if: ${{ 'false' }} # 128446
# if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API
if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API
uses: ./.github/workflows/job_openvino_js.yml
with:
runner: 'macos-13-xlarge'
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ The list of OpenVINO tutorials:
- [OpenVINO™ Integration with TensorFlow](https://www.intel.com/content/www/us/en/developer/tools/devcloud/edge/build/ovtfoverview.html)
- [TNN](https://github.com/Tencent/TNN/tree/master)

You can also check out [Awesome OpenVINO](https://github.com/openvinotoolkit/awesome-openvino) to see all the community-made projects using OpenVINO!

## System requirements

The system requirements vary depending on platform and are available on dedicated pages:
Expand Down Expand Up @@ -184,6 +186,7 @@ Report questions, issues and suggestions, using:
* [GitHub* Issues](https://github.com/openvinotoolkit/openvino/issues)
* The [`openvino`](https://stackoverflow.com/questions/tagged/openvino) tag on StackOverflow\*
* [Forum](https://software.intel.com/en-us/forums/computer-vision)
* OpenVINO channels on the [Intel DevHub Discord server](https://discord.gg/wPuqAujS)

## Additional Resources

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,6 @@ Based on the steps, the following code demonstrates how to change the applicatio

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:create_core

.. tab-item:: C++
:sync: cpp

Expand Down Expand Up @@ -86,13 +79,6 @@ to write extensions. However, you can also load the old extensions to the new Op

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:load_old_extension

.. tab-item:: C++
:sync: cpp

Expand Down Expand Up @@ -133,13 +119,6 @@ to write extensions. However, you can also load the old extensions to the new Op

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:read_model

.. tab-item:: C++
:sync: cpp

Expand Down Expand Up @@ -192,13 +171,6 @@ preprocessing may be necessary. See :doc:`preprocessing in API 2.0 <openvino_2_0

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:compile_model

.. tab-item:: C++
:sync: cpp

Expand Down Expand Up @@ -242,13 +214,6 @@ If you need to configure devices with additional parameters for OpenVINO Runtime

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:create_infer_request

.. tab-item:: C++
:sync: cpp

Expand Down Expand Up @@ -296,13 +261,6 @@ The Inference Engine API fills inputs with data of the ``I32`` precision (**not*

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:get_input_tensor

.. tab-item:: C++
:sync: cpp

Expand All @@ -315,13 +273,6 @@ The Inference Engine API fills inputs with data of the ``I32`` precision (**not*

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:get_input_tensor

.. tab-item:: C++
:sync: cpp

Expand All @@ -334,13 +285,6 @@ The Inference Engine API fills inputs with data of the ``I32`` precision (**not*

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:get_input_tensor

.. tab-item:: C++
:sync: cpp

Expand All @@ -354,13 +298,6 @@ The Inference Engine API fills inputs with data of the ``I32`` precision (**not*

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:get_input_tensor

.. tab-item:: C++
:sync: cpp

Expand Down Expand Up @@ -493,13 +430,6 @@ API 2.0 fills inputs with data of the ``I64`` precision (aligned with the origin

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:inference

.. tab-item:: C++
:sync: cpp

Expand All @@ -512,13 +442,6 @@ API 2.0 fills inputs with data of the ``I64`` precision (aligned with the origin

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:start_async_and_wait

.. tab-item:: C++
:sync: cpp

Expand Down Expand Up @@ -598,13 +521,6 @@ The Inference Engine API processes outputs as they are of the ``I32`` precision

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:get_output_tensor

.. tab-item:: C++
:sync: cpp

Expand All @@ -617,13 +533,6 @@ The Inference Engine API processes outputs as they are of the ``I32`` precision

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:get_output_tensor

.. tab-item:: C++
:sync: cpp

Expand All @@ -636,13 +545,6 @@ The Inference Engine API processes outputs as they are of the ``I32`` precision

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:get_output_tensor

.. tab-item:: C++
:sync: cpp

Expand All @@ -656,13 +558,6 @@ The Inference Engine API processes outputs as they are of the ``I32`` precision

.. tab-set::

.. tab-item:: Python
:sync: py

.. doxygensnippet:: docs/snippets/ie_common.py
:language: python
:fragment: ie:get_output_tensor

.. tab-item:: C++
:sync: cpp

Expand Down
Loading

0 comments on commit 5b3e882

Please sign in to comment.