[tuner] Invoke iree-benchmark-module without calling bash scripts #37
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: Pytest Checks | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/pytest.yml" | |
- "tuning/**" | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10.12' | |
- name: Install dev dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements-dev.txt | |
- name: Install tuner dependencies | |
run: | | |
pip install -r tuning/tuner_requirements/requirements.txt | |
python -m pip install \ | |
--find-links https://iree.dev/pip-release-links.html \ | |
--upgrade \ | |
iree-compiler iree-runtime | |
- name: Run pytest | |
working-directory: tuning | |
run: | | |
python -m pytest | |