[MXNet] Автоматическая квантизация моделей из Gluon Model Zoo #475
Workflow file for this run
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
name: Smoke test | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
- master | |
pull_request: | |
jobs: | |
smoke_test: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v3 | |
- name: Setting up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Setting up Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
python -m pip install -r requirements_frameworks.txt | |
- name: Run smoke test for inference benchmark | |
run: cd test/smoke_test && ./run_bench_smoke_test.sh | |
- name: Run smoke test for accuracy checker | |
run: cd test/smoke_test && ./run_ac_smoke_test.sh | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: results | |
path: test/smoke_test/results*.csv | |
retention-days: 1 |