forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into nashez/jit_less_emitter
- Loading branch information
Showing
1,055 changed files
with
29,486 additions
and
25,386 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: 'Find and install OpenVINO Python wheels' | ||
description: 'Finds the OpenVINO Python wheels suitable for the "python3" executable and installs them' | ||
inputs: | ||
wheels-dir-path: | ||
description: 'Path to the directory in which wheels are located' | ||
required: true | ||
wheels-to-install: | ||
description: 'List of wheel names to install in the form of "openvino openvino_tokenizers"' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Install OpenVINO Python wheels (Windows) | ||
shell: pwsh | ||
if: runner.os == 'Windows' | ||
run: | | ||
# Get the Python version | ||
$pyVersion = python3 -c "import sys; print(f'{sys.version_info.major}{sys.version_info.minor}')" | ||
foreach ($wheel in $("${{ inputs.wheels-to-install }}" -split ' ')) { | ||
# Search for the python-specific wheel version and install it if exists | ||
$wheelPath = Get-ChildItem -Path ${{ inputs.wheels-dir-path }} -Filter "$wheel-*cp$pyVersion*.whl" | Select-Object -First 1 | ||
if ($wheelPath) { | ||
python3 -m pip install $wheelPath.FullName | ||
} else { | ||
# If the python-specific version does not exist, install by name only | ||
$wheelPathByName = Get-ChildItem -Path ${{ inputs.wheels-dir-path }} -Filter "$wheel-*.whl" | Select-Object -First 1 | ||
python3 -m pip install $wheelPathByName.FullName | ||
} | ||
} | ||
- name: Install OpenVINO Python wheels (Linux and macOS) | ||
shell: bash | ||
if: runner.os != 'Windows' | ||
run: | | ||
py_version=$(python3 -c "import sys; print(f'{sys.version_info.major}{sys.version_info.minor}')") | ||
for wheel in ${{ inputs.wheels-to-install }}; do | ||
echo "Installing the ${wheel} wheel" | ||
# Search for the python-specific wheel version and install it if exists | ||
wheel_path=$(find ${{ inputs.wheels-dir-path }} -name "$wheel-*cp$py_version*.whl") | ||
echo "Wheel path: ${wheel_path}" | ||
if [ -n "${wheel_path}" ]; then | ||
python3 -m pip install $wheel_path | ||
else | ||
# If the python-specific version does not exist, install by name only | ||
python3 -m pip install ${{ inputs.wheels-dir-path }}/$wheel-*.whl | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
name: Python API tests | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
runner: | ||
description: 'Machine on which the tests would run' | ||
type: string | ||
required: true | ||
container: | ||
description: 'JSON to be converted to the value of the "container" configuration for the job' | ||
type: string | ||
required: false | ||
default: '{"image": null}' | ||
python-version: | ||
description: 'Python version to setup. E.g., "3.11"' | ||
type: string | ||
required: true | ||
|
||
permissions: read-all | ||
|
||
env: | ||
PIP_CACHE_PATH: /mount/caches/pip/linux | ||
|
||
jobs: | ||
Python_Unit_Tests: | ||
name: Python API tests | ||
timeout-minutes: 30 | ||
runs-on: ${{ inputs.runner }} | ||
container: ${{ fromJSON(inputs.container) }} | ||
defaults: | ||
run: | ||
shell: bash | ||
env: | ||
DEBIAN_FRONTEND: noninteractive # to prevent apt-get from waiting user input | ||
OPENVINO_REPO: ${{ github.workspace }}/openvino | ||
INSTALL_DIR: ${{ github.workspace }}/install | ||
INSTALL_TEST_DIR: ${{ github.workspace }}/install/openvino_tests | ||
INSTALL_WHEELS_DIR: ${{ github.workspace }}/install/openvino_wheels | ||
steps: | ||
- name: Download OpenVINO artifacts (tarballs and wheels) | ||
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | ||
with: | ||
pattern: openvino_@(wheels|tests) | ||
path: ${{ env.INSTALL_DIR }} | ||
|
||
# Needed as ${{ github.workspace }} is not working correctly when using Docker | ||
- name: Setup Variables | ||
run: | | ||
echo "OPENVINO_REPO=$GITHUB_WORKSPACE/openvino" >> "$GITHUB_ENV" | ||
echo "INSTALL_DIR=$GITHUB_WORKSPACE/install" >> "$GITHUB_ENV" | ||
echo "INSTALL_TEST_DIR=$GITHUB_WORKSPACE/install/openvino_tests" >> "$GITHUB_ENV" | ||
echo "INSTALL_WHEELS_DIR=$GITHUB_WORKSPACE/install/openvino_wheels" >> "$GITHUB_ENV" | ||
- name: Install OpenVINO dependencies (mac) | ||
if: runner.os == 'macOS' | ||
run: brew install pigz | ||
|
||
- name: Extract OpenVINO packages | ||
run: pigz -dc openvino_tests.tar.gz | tar -xf - -C ${INSTALL_TEST_DIR} | ||
working-directory: ${{ env.INSTALL_TEST_DIR }} | ||
|
||
- name: Fetch setup_python and install wheels actions | ||
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | ||
with: | ||
sparse-checkout: | | ||
.github/actions/setup_python/action.yml | ||
.github/actions/install_ov_wheels/action.yml | ||
sparse-checkout-cone-mode: false | ||
path: 'action_root' | ||
|
||
- name: Setup Python ${{ inputs.python-version }} | ||
uses: ./action_root/.github/actions/setup_python | ||
with: | ||
version: ${{ inputs.python-version }} | ||
pip-cache-path: ${{ runner.os == 'Linux' && env.PIP_CACHE_PATH || '' }} | ||
should-setup-pip-paths: ${{ runner.os == 'Linux' }} | ||
self-hosted-runner: ${{ runner.os == 'Linux' }} | ||
|
||
# | ||
# Tests | ||
# | ||
- name: Install OpenVINO Python wheels | ||
uses: ./action_root/.github/actions/install_ov_wheels | ||
with: | ||
wheels-dir-path: ${{ env.INSTALL_WHEELS_DIR }} | ||
wheels-to-install: 'openvino' | ||
|
||
- name: Install Python API tests dependencies | ||
run: python3 -m pip install -r ${INSTALL_TEST_DIR}/tests/bindings/python/requirements_test.txt | ||
|
||
# | ||
# Tests | ||
# | ||
|
||
- name: Python API Tests | ||
run: | | ||
# for 'template' extension | ||
export LD_LIBRARY_PATH=${INSTALL_TEST_DIR}/tests/:$LD_LIBRARY_PATH | ||
python3 -m pytest -sv ${INSTALL_TEST_DIR}/tests/pyopenvino \ | ||
--junitxml=${INSTALL_TEST_DIR}/TEST-Pyngraph.xml \ | ||
--ignore=${INSTALL_TEST_DIR}/tests/pyopenvino/tests/test_utils/test_utils.py | ||
- name: Python API Tests -- numpy>=2.0.0 | ||
run: | | ||
python3 -m pip uninstall -y numpy | ||
python3 -m pip install "numpy~=2.0.0" | ||
python3 -m pip install -r ${INSTALL_TEST_DIR}/tests/bindings/python/requirements_test.txt | ||
# for 'template' extension | ||
export LD_LIBRARY_PATH=${INSTALL_TEST_DIR}/tests/:$LD_LIBRARY_PATH | ||
python3 -m pytest -sv ${INSTALL_TEST_DIR}/tests/pyopenvino \ | ||
--junitxml=${INSTALL_TEST_DIR}/TEST-Pyngraph_new_numpy.xml \ | ||
--ignore=${INSTALL_TEST_DIR}/tests/pyopenvino/tests/test_utils/test_utils.py | ||
- name: Clone API snippets | ||
if: runner.os != 'macOS' | ||
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | ||
with: | ||
sparse-checkout: docs/articles_en/assets/snippets | ||
path: ${{ env.OPENVINO_REPO }} | ||
submodules: 'false' | ||
|
||
- name: Docs Python snippets | ||
if: runner.os != 'macOS' | ||
run: | | ||
# torch, onnx | ||
python3 -m pip install -r ${INSTALL_TEST_DIR}/tests/python/preprocess/torchvision/requirements.txt -r ${INSTALL_TEST_DIR}/tests/requirements_onnx | ||
# to find 'snippets' module in docs | ||
export PYTHONPATH=${OPENVINO_REPO}/docs/articles_en/assets | ||
# for 'template' extension | ||
export LD_LIBRARY_PATH=${INSTALL_TEST_DIR}/tests/:$LD_LIBRARY_PATH | ||
python3 ${OPENVINO_REPO}/docs/articles_en/assets/snippets/main.py | ||
- name: Upload Test Results | ||
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | ||
if: ${{ !cancelled() }} | ||
with: | ||
name: test-results-python-api-${{ inputs.python-version }} | ||
path: | | ||
${{ env.INSTALL_TEST_DIR }}/TEST*.html | ||
${{ env.INSTALL_TEST_DIR }}/TEST*.xml | ||
if-no-files-found: 'warn' |
Oops, something went wrong.