[TKW] Teach expansion to handle non direct acc and ReduceOp on reduction dim. #546
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: PERF | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '30 5 * * *' | |
concurrency: | |
# A PR number if a pull request and otherwise the commit hash. This cancels | |
# queued and in-progress runs for the same PR (presubmit) or commit | |
# (postsubmit). The workflow name is prepended to avoid conflicts between | |
# different workflows. | |
group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: "Unit Tests and Type Checking" | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [3.11] | |
os: [nodai-amdgpu-mi300-x86-64] | |
runs-on: ${{matrix.os}} | |
env: | |
PIP_CACHE_DIR: "${{ github.workspace }}/.pip-cache" | |
steps: | |
- name: "Setting up Python" | |
id: setup_python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{matrix.version}} | |
- name: "Checkout Code" | |
uses: actions/checkout@v3 | |
- name: Cache Pip Packages | |
uses: actions/cache@v4 | |
id: cache-pip | |
with: | |
path: ${{ env.PIP_CACHE_DIR }} | |
key: pip-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('*requirements.txt') }} | |
- name: Install pip deps | |
run: | | |
python -m pip install --no-compile --upgrade pip | |
# Note: We install in three steps in order to satisfy requirements | |
# from non default locations first. Installing the PyTorch CPU | |
# wheels saves multiple minutes and a lot of bandwidth on runner setup. | |
pip install --no-compile -r pytorch-cpu-requirements.txt | |
pip install --no-cache-dir -r iree-requirements-ci.txt | |
pip install -r requirements.txt -e . | |
- name: Run e2e tests on MI300 | |
if: "contains(matrix.os, 'mi300') && !cancelled()" | |
run: | | |
export WAVE_RUN_E2E_TESTS=1 | |
export TEST_PARAMS_PATH="tests/kernel/wave/test_param.json" | |
pytest -n 1 --capture=tee-sys -vv ./tests/kernel/wave/ |