[QwixMxfpNumerics] Update Qwix MXFP APIs to support TPU and CPU via JAX emulation. #271
Workflow file for this run
This file contains hidden or 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: Type check | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: typecheck-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| pyrefly: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| cache: pip | |
| cache-dependency-path: pyproject.toml | |
| - name: Install package and pyrefly | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e . pyrefly | |
| - name: Run pyrefly | |
| run: pyrefly check qwix/ |