fix(gla): mask v_decay_exp to avoid NaN at padded chunk tail #3544
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: Lint | |
| on: [ pull_request ] | |
| jobs: | |
| lint: | |
| runs-on: arc-runner-cpu | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install pre-commit hook | |
| run: | | |
| python3.12 -m venv .venv | |
| source .venv/bin/activate | |
| pip install pre-commit | |
| pre-commit install | |
| - name: Linting | |
| run: | | |
| source .venv/bin/activate | |
| pre-commit run --all-files --show-diff-on-failure |