Skip to content

Enable torch compile openvino backend in accuracy checker #393

Enable torch compile openvino backend in accuracy checker

Enable torch compile openvino backend in accuracy checker #393

name: github-actions
on: pull_request
jobs:
accuracy_checker:
strategy:
matrix:
runs-on: [ubuntu-20.04, ubuntu-22.04]
python-version: [3.8, 3.9, '3.10']
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Pip install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tools/accuracy_checker openvino -r tools/accuracy_checker/requirements-test.in
- name: python -m pytest tools/accuracy_checker
run: |
python -m pytest tools/accuracy_checker
- name: Pip install and run pylint
working-directory: ./tools/accuracy_checker
run: |
python -m pip install pylint==2.10.2
PYTHONPATH=. python -m pylint --rcfile=.pylintrc `find -wholename '?*/**/*.py' -not -path "./tests/*" -not -path "./build/*"`